@revenuecat/purchases-typescript-internal 9.0.1 → 9.2.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/callbackTypes.d.ts +2 -1
- package/package.json +1 -1
package/dist/callbackTypes.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CustomerInfo } from './customerInfo';
|
|
1
|
+
import { CustomerInfo, PurchasesStoreTransaction } from './customerInfo';
|
|
2
2
|
import { LOG_LEVEL } from './enums';
|
|
3
3
|
/**
|
|
4
4
|
* Listener used on updated customer info
|
|
@@ -10,6 +10,7 @@ export type ShouldPurchasePromoProductListener = (deferredPurchase: () => Promis
|
|
|
10
10
|
export type MakePurchaseResult = {
|
|
11
11
|
productIdentifier: string;
|
|
12
12
|
customerInfo: CustomerInfo;
|
|
13
|
+
transaction: PurchasesStoreTransaction;
|
|
13
14
|
};
|
|
14
15
|
export type LogHandler = (logLevel: LOG_LEVEL, message: string) => void;
|
|
15
16
|
/**
|
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": "9.0
|
|
4
|
+
"version": "9.2.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",
|