@fenv-org/app-store-connect@0.1.4Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
A typescript library for App Store Connect API
This package works with DenoIt is unknown whether this package works with Node.js, Bun


JSR Score
94%
Published
2 years ago (0.1.4)
app-store-connect
This is a pure typescript package that helps manipulate App Store Connect with their RESTful APIs.
This library is designed for being used on Deno typescript platform. It's behavior is not tested on any other typescript platforms such as Node.js, bun, and etc.
Usage
import { apiConfigOf, AppStoreConnectClient, } from '@fenv-org/app-store-connect'; const client = new AppStoreConnectClient( apiConfigOf({ issuerId: 'issuer-id', keyId: 'key-id', privateKey: 'private-key', }), ); const apps = await client.apps.getCollection({ 'filter[bundleId]': ['com.example.app'], }); const versions = await client.apps.appStoreVersionsGetToManyRelated( apps.data[0].id, );
Where and how to get the API key can be found here.
Special thanks to
- swagger-typescript-api: Used to code generation from Open API specifications.
- jose: Used to authentication
Built and signed on
GitHub Actions
Add Package
deno add jsr:@fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";
Import directly with a jsr specifier
import * as app_store_connect from "jsr:@fenv-org/app-store-connect";
Add Package
pnpm i jsr:@fenv-org/app-store-connect
pnpm dlx jsr add @fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";
Add Package
yarn add jsr:@fenv-org/app-store-connect
yarn dlx jsr add @fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";
Add Package
vlt install jsr:@fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";
Add Package
npx jsr add @fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";
Add Package
bunx jsr add @fenv-org/app-store-connect
Import symbol
import * as app_store_connect from "@fenv-org/app-store-connect";