@emilgroup/payment-sdk 1.14.1-beta.57 → 1.14.1-beta.59

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.
Files changed (31) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/README.md +2 -2
  3. package/api/payout-methods-api.ts +672 -0
  4. package/api.ts +2 -0
  5. package/dist/api/payout-methods-api.d.ts +382 -0
  6. package/dist/api/payout-methods-api.js +635 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/create-billing-address-request-dto.d.ts +1 -7
  10. package/dist/models/create-payout-method-request-dto.d.ts +60 -0
  11. package/dist/models/create-payout-method-request-dto.js +15 -0
  12. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  13. package/dist/models/create-payout-method-response-class.js +15 -0
  14. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  15. package/dist/models/get-payout-method-response-class.js +15 -0
  16. package/dist/models/index.d.ts +5 -0
  17. package/dist/models/index.js +5 -0
  18. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  19. package/dist/models/list-payout-methods-response-class.js +15 -0
  20. package/dist/models/payout-method-class.d.ts +115 -0
  21. package/dist/models/payout-method-class.js +15 -0
  22. package/dist/models/update-billing-address-request-dto.d.ts +1 -7
  23. package/models/create-billing-address-request-dto.ts +1 -7
  24. package/models/create-payout-method-request-dto.ts +66 -0
  25. package/models/create-payout-method-response-class.ts +31 -0
  26. package/models/get-payout-method-response-class.ts +31 -0
  27. package/models/index.ts +5 -0
  28. package/models/list-payout-methods-response-class.ts +49 -0
  29. package/models/payout-method-class.ts +121 -0
  30. package/models/update-billing-address-request-dto.ts +1 -7
  31. package/package.json +1 -1
@@ -14,6 +14,7 @@ api/payment-methods-api.ts
14
14
  api/payment-reminders-api.ts
15
15
  api/payment-setup-api.ts
16
16
  api/payments-api.ts
17
+ api/payout-methods-api.ts
17
18
  api/policy-payment-methods-api.ts
18
19
  api/refunds-api.ts
19
20
  api/tenant-bank-account-api.ts
@@ -58,6 +59,8 @@ models/create-payment-reminder-request-dto.ts
58
59
  models/create-payment-reminder-response-class.ts
59
60
  models/create-payment-request-dto.ts
60
61
  models/create-payment-response-class.ts
62
+ models/create-payout-method-request-dto.ts
63
+ models/create-payout-method-response-class.ts
61
64
  models/create-policy-payment-method-request-dto.ts
62
65
  models/create-policy-payment-method-response-class.ts
63
66
  models/create-psp-payment-method-request-dto.ts
@@ -82,6 +85,7 @@ models/get-exceeding-credit-response-class.ts
82
85
  models/get-payment-method-response-class.ts
83
86
  models/get-payment-reminder-response-class.ts
84
87
  models/get-payment-response-class.ts
88
+ models/get-payout-method-response-class.ts
85
89
  models/get-refund-response-class.ts
86
90
  models/get-tenant-bank-account-response-class.ts
87
91
  models/import-bank-transactions-response-class.ts
@@ -110,6 +114,7 @@ models/list-exceeding-credits-response-class.ts
110
114
  models/list-payment-methods-response-class.ts
111
115
  models/list-payment-reminders-response-class.ts
112
116
  models/list-payments-response-class.ts
117
+ models/list-payout-methods-response-class.ts
113
118
  models/list-policy-payment-methods-response-class.ts
114
119
  models/list-refunds-response-class.ts
115
120
  models/list-tenant-bank-account-response-class.ts
@@ -120,6 +125,7 @@ models/payment-class-without-expand-properties.ts
120
125
  models/payment-class.ts
121
126
  models/payment-method-class.ts
122
127
  models/payment-reminder-class.ts
128
+ models/payout-method-class.ts
123
129
  models/policy-payment-method-class.ts
124
130
  models/primary-bank-account-response-class.ts
125
131
  models/refund-class.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/payment-sdk@1.14.1-beta.57 --save
20
+ npm install @emilgroup/payment-sdk@1.14.1-beta.59 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.14.1-beta.57
24
+ yarn add @emilgroup/payment-sdk@1.14.1-beta.59
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.