@reevit/vue 0.6.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/README.md CHANGED
@@ -262,6 +262,13 @@ const result = await initiateMPesaSTKPush(
262
262
  | Monnify | NG | Card, Bank Transfer, USSD |
263
263
  | M-Pesa | KE, TZ | Mobile Money (STK Push) |
264
264
 
265
+ ## Release Notes
266
+
267
+ ### v0.7.0
268
+
269
+ - Updated `@reevit/core` dependency to v0.7.0
270
+ - Version alignment across all Reevit SDKs
271
+
265
272
  ## License
266
273
 
267
274
  MIT © Reevit
@@ -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;