iap-apple 2.0.3 → 2.0.5
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/CHANGELOG.md +4 -0
- package/README.md +5 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [2.0.4](https://github.com/ssbarbee/iap-apple/compare/v2.0.3...v2.0.4) (2023-01-26)
|
|
2
|
+
|
|
3
|
+
## [2.0.3](https://github.com/ssbarbee/iap-apple/compare/v2.0.2...v2.0.3) (2023-01-14)
|
|
4
|
+
|
|
1
5
|
## [2.0.2](https://github.com/ssbarbee/iap-apple/compare/v2.0.1...v2.0.2) (2022-12-23)
|
|
2
6
|
|
|
3
7
|
## [2.0.1](https://github.com/ssbarbee/iap-apple/compare/v2.0.0...v2.0.1) (2022-12-23)
|
package/README.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
|  |  |  |  |
|
|
4
4
|
|
|
5
5
|
# iap-apple
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+
|
|
6
11
|
📦🚀 Integration of Apples **validation service** for App Store Receipts, written in Typescript, available for NodeJS environments.
|
|
7
12
|
|
|
8
13
|
A NodeJS module for in-app purchase (in-app billing) and subscription for Apple.
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iap-apple",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Integration with Apples InAppPurchases in Typescript, available for NodeJS environments.",
|
|
5
|
-
"main": "
|
|
6
|
-
"types": "
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "rm -rf dist && tsc --project tsconfig.build.json && cp package.json dist/package.json && cp README.md dist/README.md && cp CHANGELOG.md dist/CHANGELOG.md && cp LICENSE dist/LICENSE",
|
|
9
9
|
"format": "prettier --write \"src/**/*.ts\"",
|