Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Added support for individual keys
  • Loading branch information
StephenHodgson authored Feb 4, 2025
1 parent d5a11d0 commit 61d3df8
Show file tree
Hide file tree
Showing 6 changed files with 802 additions and 637 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# app-store-connect-api

[![Discord](https://img.shields.io/discord/855294214065487932.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/xQgMW9ufN4) [![NPM Version](https://img.shields.io/npm/v/%40rage-against-the-pixel%2Fapp-store-connect-api)](https://www.npmjs.com/package/@rage-against-the-pixel/app-store-connect-api) [![NPM Downloads](https://img.shields.io/npm/dw/%40rage-against-the-pixel%2Fapp-store-connect-api)](https://www.npmjs.com/package/@rage-against-the-pixel/app-store-connect-api)

A TypeScript package for communicating with Apple [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi)

- Automatically generated API client using the latest [OpenAPI specification](https://developer.apple.com/sample-code/app-store-connect/app-store-connect-openapi-specification.zip) from Apple.
Expand All @@ -20,6 +22,9 @@ Download and save the private key `.p8` file to a save, secure location.
The contents of this file is your `privateKey`.
The `privateKeyId` and `issuerId` are both listed on the same page where you create your private key.

> [!NOTE]
> Individual keys do not require `issuerId`.
## Example

```ts
Expand Down
6 changes: 2 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ export default {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/tests/**/*.test.ts'],
globals: {
'ts-jest': {
diagnostics: false,
},
transform: {
'^.+\\.ts$': ['ts-jest', { diagnostics: false }],
},
};
Loading

0 comments on commit 61d3df8

Please sign in to comment.