@tamtamchik/app-store-receipt-parser 1.0.0-pre.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,19 +17,19 @@ A lightweight TypeScript library for extracting transaction IDs from Apple's ASN
|
|
|
17
17
|
Using npm:
|
|
18
18
|
|
|
19
19
|
```shell
|
|
20
|
-
npm install @tamtamchik/
|
|
20
|
+
npm install @tamtamchik/app-store-receipt-parser
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Using yarn:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
yarn add @tamtamchik/
|
|
26
|
+
yarn add @tamtamchik/app-store-receipt-parser
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
30
|
|
|
31
31
|
```typescript
|
|
32
|
-
import { ReceiptParser } from '@tamtamchik/
|
|
32
|
+
import { ReceiptParser } from '@tamtamchik/app-store-receipt-parser';
|
|
33
33
|
|
|
34
34
|
// Unified Receipt string
|
|
35
35
|
const receiptString = "MII...";
|
|
@@ -61,12 +61,12 @@ Pull requests are always welcome. If you have bigger changes in mind, please ope
|
|
|
61
61
|
Apple Receipt Parser is [MIT licensed](./LICENSE).
|
|
62
62
|
|
|
63
63
|
[ico-coffee]: https://img.shields.io/badge/Buy%20Me%20A-Coffee-%236F4E37.svg?style=flat-square
|
|
64
|
-
[ico-version]: https://img.shields.io/npm/v/@tamtamchik/
|
|
65
|
-
[ico-license]: https://img.shields.io/npm/l/@tamtamchik/
|
|
66
|
-
[ico-downloads]: https://img.shields.io/npm/dt/@tamtamchik/
|
|
67
|
-
[ico-circleci]: https://img.shields.io/circleci/build/github/tamtamchik/
|
|
64
|
+
[ico-version]: https://img.shields.io/npm/v/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
|
|
65
|
+
[ico-license]: https://img.shields.io/npm/l/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
|
|
66
|
+
[ico-downloads]: https://img.shields.io/npm/dt/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
|
|
67
|
+
[ico-circleci]: https://img.shields.io/circleci/build/github/tamtamchik/app-store-receipt-parser.svg?style=flat-square
|
|
68
68
|
|
|
69
69
|
[link-coffee]: https://www.buymeacoffee.com/tamtamchik
|
|
70
|
-
[link-npm]: https://www.npmjs.com/package/@tamtamchik/
|
|
71
|
-
[link-downloads]: https://www.npmjs.com/package/@tamtamchik/
|
|
72
|
-
[link-circleci]: https://app.circleci.com/pipelines/github/tamtamchik/
|
|
70
|
+
[link-npm]: https://www.npmjs.com/package/@tamtamchik/app-store-receipt-parser
|
|
71
|
+
[link-downloads]: https://www.npmjs.com/package/@tamtamchik/app-store-receipt-parser
|
|
72
|
+
[link-circleci]: https://app.circleci.com/pipelines/github/tamtamchik/app-store-receipt-parser?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamtamchik/app-store-receipt-parser",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A lightweight TypeScript library for extracting transaction IDs from Apple's ASN.1 encoded receipts.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|