@revenuecat/purchases-typescript-internal 18.17.0 → 18.18.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 +18 -0
- package/package.json +2 -1
package/dist/customerInfo.d.ts
CHANGED
|
@@ -322,4 +322,22 @@ export interface PurchasesSubscriptionInfo {
|
|
|
322
322
|
* Whether the subscription will renew at the next billing period.
|
|
323
323
|
*/
|
|
324
324
|
readonly willRenew: boolean;
|
|
325
|
+
/**
|
|
326
|
+
* Date when a paused subscription is expected to automatically resume.
|
|
327
|
+
* Only set for Google Play subscriptions that have been paused; null otherwise.
|
|
328
|
+
*/
|
|
329
|
+
readonly autoResumeDate: string | null;
|
|
330
|
+
/**
|
|
331
|
+
* The display name of the subscription as configured in the RevenueCat dashboard.
|
|
332
|
+
*/
|
|
333
|
+
readonly displayName: string | null;
|
|
334
|
+
/**
|
|
335
|
+
* The management URL for this subscription.
|
|
336
|
+
*/
|
|
337
|
+
readonly managementURL: string | null;
|
|
338
|
+
/**
|
|
339
|
+
* The base plan identifier that unlocked this subscription (Google Play base plans
|
|
340
|
+
* and Apple purchases with non-upfront billing plans).
|
|
341
|
+
*/
|
|
342
|
+
readonly productPlanIdentifier: string | null;
|
|
325
343
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revenuecat/purchases-typescript-internal",
|
|
3
3
|
"title": "Purchases typescript internal shared code",
|
|
4
|
-
"version": "18.
|
|
4
|
+
"version": "18.18.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",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"url": "https://github.com/RevenueCat/purchases-hybrid-common/issues"
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://github.com/RevenueCat/purchases-hybrid-common#readme",
|
|
32
|
+
"packageManager": "yarn@1.22.22",
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@microsoft/api-extractor": "^7.43.1",
|
|
34
35
|
"@typescript-eslint/eslint-plugin": "^5.61.0",
|