api
v7 β coming soon! π€π½
#791
Replies: 6 comments 11 replies
-
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.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
-
I was generating SDK with the latest version and got following error while building. I also noticed that all generated files were
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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. β©9 votes ·
Beta Was this translation helpful? Give feedback.
All reactions