@revenuecat/purchases-typescript-internal-esm 13.22.0 → 13.23.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/dist/customerInfo.d.ts +6 -0
- package/package.json +1 -1
package/dist/customerInfo.d.ts
CHANGED
|
@@ -209,6 +209,12 @@ export interface CustomerInfo {
|
|
|
209
209
|
* non-subscription purchases
|
|
210
210
|
*/
|
|
211
211
|
readonly nonSubscriptionTransactions: PurchasesStoreTransaction[];
|
|
212
|
+
/**
|
|
213
|
+
* Information about the customer's subscriptions for each product identifier.
|
|
214
|
+
*/
|
|
215
|
+
readonly subscriptionsByProductIdentifier: {
|
|
216
|
+
[key: string]: PurchasesSubscriptionInfo;
|
|
217
|
+
};
|
|
212
218
|
}
|
|
213
219
|
/**
|
|
214
220
|
* Represents a non-subscription transaction in the Store.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revenuecat/purchases-typescript-internal-esm",
|
|
3
3
|
"title": "Purchases typescript internal shared code",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.23.0",
|
|
5
5
|
"description": "Typescript code to be used by RevenueCat's hybrid SDKs. Not meant for external usage.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|