@revenuecat/purchases-js 1.46.0 → 1.47.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/Purchases.es.d.ts +13 -0
- package/dist/Purchases.es.js +7370 -6986
- package/dist/Purchases.umd.js +88 -88
- package/package.json +2 -2
package/dist/Purchases.es.d.ts
CHANGED
|
@@ -335,6 +335,13 @@ export declare interface FlagsConfig {
|
|
|
335
335
|
* @defaultValue false
|
|
336
336
|
*/
|
|
337
337
|
hideBackButton?: boolean;
|
|
338
|
+
/**
|
|
339
|
+
* If set to true, the SDK injects the branding app icon as an
|
|
340
|
+
* `apple-touch-icon` link tag so it appears in the Apple Pay sheet.
|
|
341
|
+
* Best effort is made to not overwrite an existing `apple-touch-icon` on the page.
|
|
342
|
+
* @defaultValue false
|
|
343
|
+
*/
|
|
344
|
+
applePayBrandingLogoEnabled?: boolean;
|
|
338
345
|
/* Excluded from this release type: rcSource */
|
|
339
346
|
/* Excluded from this release type: forceEnableWalletMethods */
|
|
340
347
|
/* Excluded from this release type: workflowsEndpointEnabled */
|
|
@@ -1495,6 +1502,7 @@ export declare class Purchases {
|
|
|
1495
1502
|
*/
|
|
1496
1503
|
preload(): Promise<void>;
|
|
1497
1504
|
/* Excluded from this release type: fetchAndCacheBrandingInfo */
|
|
1505
|
+
/* Excluded from this release type: syncApplePayWebsiteIcon */
|
|
1498
1506
|
/* Excluded from this release type: hasLoadedResources */
|
|
1499
1507
|
/* Excluded from this release type: __constructor */
|
|
1500
1508
|
/**
|
|
@@ -2104,6 +2112,11 @@ export declare class Purchases {
|
|
|
2104
2112
|
* The display name of the subscription as configured in the RevenueCat dashboard.
|
|
2105
2113
|
*/
|
|
2106
2114
|
readonly displayName: string | null;
|
|
2115
|
+
/**
|
|
2116
|
+
* Date when a paused subscription is expected to automatically resume.
|
|
2117
|
+
* Only set for Google Play subscriptions that have been paused; null otherwise.
|
|
2118
|
+
*/
|
|
2119
|
+
readonly autoResumeDate: Date | null;
|
|
2107
2120
|
/**
|
|
2108
2121
|
* Paid price for the subscription.
|
|
2109
2122
|
*/
|