@sesamy/sesamy-js 1.19.1 → 1.19.3
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 +3 -3
- package/dist/sesamy-js.d.ts +6 -0
- package/dist/sesamy-js.iife.js +3 -3
- package/dist/sesamy-js.mjs +26 -26
- package/package.json +2 -1
package/dist/sesamy-js.d.ts
CHANGED
|
@@ -97,8 +97,14 @@ export type Bill = {
|
|
|
97
97
|
purchaseOption: string;
|
|
98
98
|
}
|
|
99
99
|
];
|
|
100
|
+
currency: string;
|
|
101
|
+
price: number;
|
|
102
|
+
receiptUrl: string;
|
|
103
|
+
paymentMethod: string;
|
|
104
|
+
paymentProvider: string;
|
|
100
105
|
status: string;
|
|
101
106
|
createdAt: string;
|
|
107
|
+
updatedAt: string;
|
|
102
108
|
};
|
|
103
109
|
export type TallyValue = string | number;
|
|
104
110
|
export type Tally = {
|