@revenuecat/purchases-typescript-internal 17.34.0 → 17.36.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/offerings.d.ts +8 -0
- package/package.json +1 -1
package/dist/offerings.d.ts
CHANGED
|
@@ -324,6 +324,10 @@ export interface PurchasesPackage {
|
|
|
324
324
|
* Null if not using offerings or if fetched directly from store via getProducts.
|
|
325
325
|
*/
|
|
326
326
|
readonly presentedOfferingContext: PresentedOfferingContext;
|
|
327
|
+
/**
|
|
328
|
+
* URL to use for web checkout for this package. iOS and Android only. Null if not available.
|
|
329
|
+
*/
|
|
330
|
+
readonly webCheckoutUrl: string | null;
|
|
327
331
|
}
|
|
328
332
|
/**
|
|
329
333
|
* Contains data about the context in which an offering was presented.
|
|
@@ -412,6 +416,10 @@ export interface PurchasesOffering {
|
|
|
412
416
|
* Weekly package type configured in the RevenueCat dashboard, if available.
|
|
413
417
|
*/
|
|
414
418
|
readonly weekly: PurchasesPackage | null;
|
|
419
|
+
/**
|
|
420
|
+
* URL to use for web checkout for this offering. iOS and Android only. Null if not available.
|
|
421
|
+
*/
|
|
422
|
+
readonly webCheckoutUrl: string | null;
|
|
415
423
|
}
|
|
416
424
|
/**
|
|
417
425
|
* Contains all the offerings configured in RevenueCat dashboard.
|
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": "17.
|
|
4
|
+
"version": "17.36.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",
|