Skip to content

Releases: isaced/appstore-connect-sdk

v1.3.0

29 Nov 08:57
Compare
Choose a tag to compare

What's Changed

  • feat: Add request method for making API requests #27 by @isaced in #31

Full Changelog: v1.2.1...v1.3.0

v1.2.1

27 Nov 16:05
Compare
Choose a tag to compare
  • Fixed issue where tokens could expire immediately and not be refreshed correctly. 88ec51a #21 #25

Full Changelog: v1.2.0...v1.2.1

v1.2.0

27 Nov 06:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.2.0

v1.1.0

13 Mar 14:05
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0

10 Jul 15:23
Compare
Choose a tag to compare

Finally released v1.0.0! 🎉

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

10 Jul 15:09
Compare
Choose a tag to compare
v1.0.0-beta.1 Pre-release
Pre-release

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

10 Jul 02:31
Compare
Choose a tag to compare
v1.0.0-beta.0 Pre-release
Pre-release

v0.0.9

11 Apr 06:25
bd25552
Compare
Choose a tag to compare
  • Fix reviewSubmissions response parse error (1f828f5)

v0.0.8

06 Apr 08:56
fbd4c8b
Compare
Choose a tag to compare

v0.0.7

28 Feb 16:47
Compare
Choose a tag to compare
  • Fix the problem that the jwt token is not regenerated after it expires