@revenuecat/purchases-js 1.14.3 → 1.15.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 +3 -2
- package/dist/Purchases.es.js +255 -246
- package/dist/Purchases.umd.js +17 -17
- package/package.json +1 -1
package/dist/Purchases.es.d.ts
CHANGED
|
@@ -205,7 +205,8 @@ export declare enum ErrorCode {
|
|
|
205
205
|
EmptySubscriberAttributesError = 25,
|
|
206
206
|
CustomerInfoError = 28,
|
|
207
207
|
SignatureVerificationError = 36,
|
|
208
|
-
InvalidEmailError = 38
|
|
208
|
+
InvalidEmailError = 38,
|
|
209
|
+
TestStoreSimulatedPurchaseError = 42
|
|
209
210
|
}
|
|
210
211
|
|
|
211
212
|
/**
|
|
@@ -1339,7 +1340,7 @@ export declare class Purchases {
|
|
|
1339
1340
|
* The store where the user originally subscribed.
|
|
1340
1341
|
* @public
|
|
1341
1342
|
*/
|
|
1342
|
-
export declare type Store = "app_store" | "mac_app_store" | "play_store" | "amazon" | "stripe" | "rc_billing" | "promotional" | "paddle" | "unknown";
|
|
1343
|
+
export declare type Store = "app_store" | "mac_app_store" | "play_store" | "amazon" | "stripe" | "rc_billing" | "promotional" | "paddle" | "test_store" | "unknown";
|
|
1343
1344
|
|
|
1344
1345
|
/**
|
|
1345
1346
|
* Represents a transaction made in the store.
|