@revenuecat/purchases-typescript-internal 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
@@ -99,6 +99,11 @@ var IN_APP_MESSAGE_TYPE;
99
99
  * iOS-only. StoreKit generic messages.
100
100
  */
101
101
  IN_APP_MESSAGE_TYPE[IN_APP_MESSAGE_TYPE["GENERIC"] = 2] = "GENERIC";
102
+ /**
103
+ * iOS-only. This message will show if the subscriber is eligible for an iOS win-back
104
+ * offer and will allow the subscriber to redeem the offer.
105
+ */
106
+ IN_APP_MESSAGE_TYPE[IN_APP_MESSAGE_TYPE["WIN_BACK_OFFER"] = 3] = "WIN_BACK_OFFER";
102
107
  })(IN_APP_MESSAGE_TYPE || (exports.IN_APP_MESSAGE_TYPE = IN_APP_MESSAGE_TYPE = {}));
103
108
  /**
104
109
  * Enum of entitlement verification modes.
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": "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",