@spritz-finance/service-client 0.2.83 → 0.2.84

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.
@@ -6,6 +6,9 @@ type BankAccountPayableType = {
6
6
  type BillPayableType = {
7
7
  country: string;
8
8
  };
9
+ type DebitCardPayableType = {
10
+ country: string;
11
+ };
9
12
  type VCCPayableType = {
10
13
  type: string;
11
14
  };
@@ -41,6 +44,10 @@ export type Verification = {
41
44
  status: VerificationModuleStatus;
42
45
  payableTypes: BillPayableType[];
43
46
  };
47
+ debitCard?: {
48
+ status: VerificationModuleStatus;
49
+ payableTypes: DebitCardPayableType[];
50
+ };
44
51
  virtualCard: {
45
52
  status: VerificationModuleStatus;
46
53
  availableCardTypes: VCCPayableType[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spritz-finance/service-client",
3
- "version": "0.2.83",
3
+ "version": "0.2.84",
4
4
  "description": "Service client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",