@use-stall/types 0.3.9 → 0.3.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@use-stall/types",
3
- "version": "0.3.9",
3
+ "version": "0.3.11",
4
4
  "description": "Type declarations for Stall SDKs",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
package/src/payments.d.ts CHANGED
@@ -1,10 +1,9 @@
1
1
  export type UnifiedMethodsType =
2
2
  | "terminal"
3
3
  | "soft_pos" // mobile tap to pay on android and ios
4
- | "online_checkout"
5
- | "payment_link"
4
+ | "payment_link" // hosted checkout, payment links, qr codes
6
5
  | "connector_payments"
7
- | "mobile_wallet"
6
+ | "mobile_money"
8
7
  | "cash"
9
8
  | "manual";
10
9
 
@@ -17,6 +16,7 @@ export interface UnifiedPaymentProviderType {
17
16
  supported_countries: string[];
18
17
  integration_url: string;
19
18
  integration_docs: string;
19
+ path: string; /// backend route
20
20
  active: boolean;
21
21
  metadata: {
22
22
  stall_offline_id: string;