@sesamy/sesamy-js 1.19.2 → 1.19.4
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/sesamy-js.cjs +5 -5
- package/dist/sesamy-js.d.ts +7 -0
- package/dist/sesamy-js.iife.js +5 -5
- package/dist/sesamy-js.mjs +740 -737
- package/package.json +2 -1
package/dist/sesamy-js.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export interface Config {
|
|
|
11
11
|
auth?: Partial<AuthConfig>;
|
|
12
12
|
content?: Partial<ContentConfig>;
|
|
13
13
|
transform?: TransformConfig;
|
|
14
|
+
awaitAllServices?: boolean;
|
|
14
15
|
}
|
|
15
16
|
export interface ApiConfig {
|
|
16
17
|
clientId: string;
|
|
@@ -97,8 +98,14 @@ export type Bill = {
|
|
|
97
98
|
purchaseOption: string;
|
|
98
99
|
}
|
|
99
100
|
];
|
|
101
|
+
currency: string;
|
|
102
|
+
price: number;
|
|
103
|
+
receiptUrl: string;
|
|
104
|
+
paymentMethod: string;
|
|
105
|
+
paymentProvider: string;
|
|
100
106
|
status: string;
|
|
101
107
|
createdAt: string;
|
|
108
|
+
updatedAt: string;
|
|
102
109
|
};
|
|
103
110
|
export type TallyValue = string | number;
|
|
104
111
|
export type Tally = {
|