@insure-os/client 0.0.17 → 0.0.19
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/bundle-sizes.json +11 -11
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -671,6 +671,14 @@ type QuoteIntentState = {
|
|
|
671
671
|
paymentStatus: string | null;
|
|
672
672
|
transactionStatus?: any;
|
|
673
673
|
};
|
|
674
|
+
payment_transactions?: Array<{
|
|
675
|
+
id: string;
|
|
676
|
+
status: string;
|
|
677
|
+
amount: number;
|
|
678
|
+
currency: string;
|
|
679
|
+
gateway_code: string;
|
|
680
|
+
gateway_metadata?: any;
|
|
681
|
+
}>;
|
|
674
682
|
cached_result?: CalculationResponse;
|
|
675
683
|
};
|
|
676
684
|
|