api
v7 β coming soon! π€π½
#791
Replies: 5 comments 1 reply
-
I came across this library from Wistia's docs and was excited to try it. I ran into issues using it from my ESM package in Node v18 and was ready to use raw node-fetch/axios until I saw your comment on #604 to use api@next. I was able to use |
Beta Was this translation helpful? Give feedback.
-
Using this for the first time with 7shifts, TypeScript 5.2 and commonjs module, had a few issues at first with the Just a few changes I'd like to see so far:
import 7Shifts from '@api/7shifts';
7Shifts.auth('token');
7Shifts.auth('token');
7Shifts.whoAmI()
.then(({ data }) => console.log(data))
.catch(err => console.error(err));
import * as fauxAPI from "@api/7shifts";
const api = (fauxAPI as any).default as typeof fauxAPI;
api.auth(...); |
Beta Was this translation helpful? Give feedback.
-
Hi all, any timeline for release? I'm getting this error: #698 With |
Beta Was this translation helpful? Give feedback.
-
Hello, I need #820 to use |
Beta Was this translation helpful? Give feedback.
-
@kanadgupta Been using v7 in a server context and it's amazing! I'd love to use this in Next.js from the browser, but it looks like I'll need #820 too. Let me know if I can help. π |
Beta Was this translation helpful? Give feedback.
-
Hey everyone! We wanted to provide y'all with an update on what we've been cooking up lately β²οΈ
We've spent the last few weeks making lots of quality-of-life improvements to the code generation process and the generated SDKs themselves. We're still not quite finished yet, but we're excited to announce that the next major version of
api
is right around the corner!Here's what you can expect:
api
CLI commands to help you better manage your SDK installation(s) β commands to list, rebuild, uninstall your SDKs.Anything else you'd like to see? We'd love to hear your thoughts β feel free to leave a comment below! Also, if you could take a second to answer the poll below, we'd love to understand how you're using
api
-generated SDKs in practice.Thanks for your feedback thus far β excited to see what y'all build with
api
v7!-Kanad and the ReadMe team π¦
Footnotes
Note that
api
v7 will require Node.js v18 or greater if you're a Node.js user, and TypeScript 5.2 if you're a TypeScript user. β©8 votes ·
Beta Was this translation helpful? Give feedback.
All reactions