@revenuecat/purchases-typescript-internal-esm 13.6.0 → 13.7.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/enums.d.ts CHANGED
@@ -89,7 +89,12 @@ export declare enum IN_APP_MESSAGE_TYPE {
89
89
  /**
90
90
  * iOS-only. StoreKit generic messages.
91
91
  */
92
- GENERIC = 2
92
+ GENERIC = 2,
93
+ /**
94
+ * iOS-only. This message will show if the subscriber is eligible for an iOS win-back
95
+ * offer and will allow the subscriber to redeem the offer.
96
+ */
97
+ WIN_BACK_OFFER = 3
93
98
  }
94
99
  /**
95
100
  * Enum of entitlement verification modes.
package/dist/enums.js CHANGED
@@ -96,6 +96,11 @@ export var IN_APP_MESSAGE_TYPE;
96
96
  * iOS-only. StoreKit generic messages.
97
97
  */
98
98
  IN_APP_MESSAGE_TYPE[IN_APP_MESSAGE_TYPE["GENERIC"] = 2] = "GENERIC";
99
+ /**
100
+ * iOS-only. This message will show if the subscriber is eligible for an iOS win-back
101
+ * offer and will allow the subscriber to redeem the offer.
102
+ */
103
+ IN_APP_MESSAGE_TYPE[IN_APP_MESSAGE_TYPE["WIN_BACK_OFFER"] = 3] = "WIN_BACK_OFFER";
99
104
  })(IN_APP_MESSAGE_TYPE || (IN_APP_MESSAGE_TYPE = {}));
100
105
  /**
101
106
  * Enum of entitlement verification modes.
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.6.0",
4
+ "version": "13.7.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",