Releases: isaced/appstore-connect-sdk
Releases · isaced/appstore-connect-sdk
v1.3.0
v1.2.1
v1.2.0
v1.1.0
What's Changed
- feat: allow specifying base path by @jozsefsallai in #18
- chore: update deps 05752ec
New Contributors
- @jozsefsallai made their first contribution in #18
Full Changelog: v1.0.0...v1.1.0
v1.0.0
Finally released v1.0.0! 🎉
- feat: Use jose instead of jsonwebtoken #3 @isaced
- bug: Fix typo 'Sotre' to 'Store' #4 @chessbyte
Due to the need for asynchronous calls in generating jwt token based on Jose, the AppStoreConnectAPI.call() method should be changed to asynchronous and renamed as create() for enhanced semantic clarity.
import AppStoreConnectAPI from "appstore-connect-sdk";
import {
AppsApi,
AppEventLocalizationsApi,
} from "appstore-connect-sdk/dist/openapi/apis";
const client = new AppStoreConnectAPI({
issuerId: "<YOUR ISSUER ID>",
privateKeyId: "<YOUR PRIVATE KEY ID>",
privateKey: "<YOUR PRIVATE KEY>",
});
const api = await client.create(AppsApi);
const res = await api.appsGetCollection();
console.log(res);
v1.0.0-beta.1
Due to the need for asynchronous calls in generating jwt token
based on Jose
, the AppStoreConnectAPI.call()
method should be changed to asynchronous and renamed as create()
for enhanced semantic clarity.
import AppStoreConnectAPI from "appstore-connect-sdk";
import {
AppsApi,
AppEventLocalizationsApi,
} from "appstore-connect-sdk/dist/openapi/apis";
const client = new AppStoreConnectAPI({
issuerId: "<YOUR ISSUER ID>",
privateKeyId: "<YOUR PRIVATE KEY ID>",
privateKey: "<YOUR PRIVATE KEY>",
});
const api = await client.create(AppsApi);
const res = await api.appsGetCollection();
console.log(res);
v1.0.0-beta.0
- feat: Use jose instead of jsonwebtoken #3 @isaced
- bug: Fix typo 'Sotre' to 'Store' #4 @chessbyte