@reevit/vue 0.7.0 → 0.8.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/bridges/loaders.d.ts +2 -0
- package/dist/composables/useReevit.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +476 -430
- package/package.json +3 -3
|
@@ -99,7 +99,9 @@ export interface HubtelConfig {
|
|
|
99
99
|
clientId: string;
|
|
100
100
|
purchaseDescription: string;
|
|
101
101
|
amount: number;
|
|
102
|
+
apiBaseUrl?: string;
|
|
102
103
|
callbackUrl?: string;
|
|
104
|
+
clientReference?: string;
|
|
103
105
|
customerPhone?: string;
|
|
104
106
|
customerEmail?: string;
|
|
105
107
|
hubtelSessionToken?: string;
|
|
@@ -23,6 +23,7 @@ export declare function useReevit(options: UseReevitOptions): {
|
|
|
23
23
|
readonly status: "pending" | "requires_action" | "processing" | "succeeded" | "failed" | "canceled" | "cancelled";
|
|
24
24
|
readonly recommendedPsp: PSPType;
|
|
25
25
|
readonly availableMethods: readonly PaymentMethod[];
|
|
26
|
+
readonly providerRefId?: string | undefined;
|
|
26
27
|
readonly reference?: string | undefined;
|
|
27
28
|
readonly orgId?: string | undefined;
|
|
28
29
|
readonly connectionId?: string | undefined;
|
|
@@ -77,6 +78,7 @@ export declare function useReevit(options: UseReevitOptions): {
|
|
|
77
78
|
readonly status: "pending" | "requires_action" | "processing" | "succeeded" | "failed" | "canceled" | "cancelled";
|
|
78
79
|
readonly recommendedPsp: PSPType;
|
|
79
80
|
readonly availableMethods: readonly PaymentMethod[];
|
|
81
|
+
readonly providerRefId?: string | undefined;
|
|
80
82
|
readonly reference?: string | undefined;
|
|
81
83
|
readonly orgId?: string | undefined;
|
|
82
84
|
readonly connectionId?: string | undefined;
|