@vulog/aima-payment 1.1.68 → 1.1.69

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/index.d.mts CHANGED
@@ -34,6 +34,7 @@ type PaymentDetail = {
34
34
  mopStatus: 'MOP_VALID' | 'MOP_MISSING' | 'MOP_EXPIRED' | 'MOP_INVALID' | 'MOP_UPDATING' | 'MOP_UPDATE_FAILED' | 'MOP_UNKNOWN';
35
35
  paymentCurrency: string;
36
36
  paymentType: 'CARD' | 'BANK' | 'PAYPAL' | 'SEPA' | 'EXTERNAL';
37
+ cardFunding: 'credit' | 'debit' | 'prepaid' | 'unknown';
37
38
  };
38
39
  type SynchronizeResponse = {
39
40
  status: 'SUCCEEDED' | 'REQUIRES_CAPTURE' | 'FAILED';
package/dist/index.d.ts CHANGED
@@ -34,6 +34,7 @@ type PaymentDetail = {
34
34
  mopStatus: 'MOP_VALID' | 'MOP_MISSING' | 'MOP_EXPIRED' | 'MOP_INVALID' | 'MOP_UPDATING' | 'MOP_UPDATE_FAILED' | 'MOP_UNKNOWN';
35
35
  paymentCurrency: string;
36
36
  paymentType: 'CARD' | 'BANK' | 'PAYPAL' | 'SEPA' | 'EXTERNAL';
37
+ cardFunding: 'credit' | 'debit' | 'prepaid' | 'unknown';
37
38
  };
38
39
  type SynchronizeResponse = {
39
40
  status: 'SUCCEEDED' | 'REQUIRES_CAPTURE' | 'FAILED';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulog/aima-payment",
3
- "version": "1.1.68",
3
+ "version": "1.1.69",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -19,8 +19,8 @@
19
19
  "author": "Vulog",
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
- "@vulog/aima-client": "1.1.68",
23
- "@vulog/aima-core": "1.1.68"
22
+ "@vulog/aima-client": "1.1.69",
23
+ "@vulog/aima-core": "1.1.69"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "zod": "^3.23.8"
package/src/types.ts CHANGED
@@ -39,6 +39,7 @@ export type PaymentDetail = {
39
39
  | 'MOP_UNKNOWN';
40
40
  paymentCurrency: string;
41
41
  paymentType: 'CARD' | 'BANK' | 'PAYPAL' | 'SEPA' | 'EXTERNAL';
42
+ cardFunding: 'credit' | 'debit' | 'prepaid' | 'unknown';
42
43
  };
43
44
 
44
45
  export type SynchronizeResponse = {