expo-iap 4.0.0 → 4.0.2
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 +6 -0
- package/openiap-versions.json +2 -3
- package/package.json +1 -1
- package/scripts/update-types.mjs +2 -2
package/README.md
CHANGED
|
@@ -93,6 +93,12 @@ Other libraries built on OpenIAP: [react-native-iap](https://github.com/hyodotde
|
|
|
93
93
|
|
|
94
94
|
**[Learn more about the OpenIAP standard →](https://openiap.dev/docs/foundation/about)**
|
|
95
95
|
|
|
96
|
+
## Community
|
|
97
|
+
|
|
98
|
+
Have a question or need help? Ask in [expo-iap Q&A Discussions](https://github.com/hyodotdev/openiap/discussions/categories/expo-iap).
|
|
99
|
+
|
|
100
|
+
For bug reports, please [open an issue](https://github.com/hyodotdev/openiap/issues).
|
|
101
|
+
|
|
96
102
|
## Our Sponsors
|
|
97
103
|
|
|
98
104
|
💼 **[View Our Sponsors](https://openiap.dev/sponsors)**
|
package/openiap-versions.json
CHANGED
package/package.json
CHANGED
package/scripts/update-types.mjs
CHANGED
|
@@ -17,10 +17,10 @@ try {
|
|
|
17
17
|
);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
const DEFAULT_TAG = versions?.
|
|
20
|
+
const DEFAULT_TAG = versions?.spec;
|
|
21
21
|
if (typeof DEFAULT_TAG !== 'string' || DEFAULT_TAG.length === 0) {
|
|
22
22
|
throw new Error(
|
|
23
|
-
'expo-iap: "
|
|
23
|
+
'expo-iap: "spec" version missing in openiap-versions.json. Specify --tag manually or update the file.',
|
|
24
24
|
);
|
|
25
25
|
}
|
|
26
26
|
|