@emilgroup/payment-sdk 1.13.1-beta.15 → 1.13.1-beta.17
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/.openapi-generator/FILES +1 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +55 -13
- package/api/bank-orders-api.ts +71 -29
- package/api/bank-transaction-api.ts +45 -17
- package/api/payment-methods-api.ts +55 -13
- package/api/payment-reminders-api.ts +55 -13
- package/api/payments-api.ts +55 -13
- package/api/refunds-api.ts +45 -17
- package/api/tenant-bank-account-api.ts +45 -17
- package/dist/api/bank-accounts-api.d.ts +35 -8
- package/dist/api/bank-accounts-api.js +29 -11
- package/dist/api/bank-orders-api.d.ts +51 -24
- package/dist/api/bank-orders-api.js +41 -23
- package/dist/api/bank-transaction-api.d.ts +28 -10
- package/dist/api/bank-transaction-api.js +24 -12
- package/dist/api/payment-methods-api.d.ts +35 -8
- package/dist/api/payment-methods-api.js +29 -11
- package/dist/api/payment-reminders-api.d.ts +35 -8
- package/dist/api/payment-reminders-api.js +29 -11
- package/dist/api/payments-api.d.ts +35 -8
- package/dist/api/payments-api.js +29 -11
- package/dist/api/refunds-api.d.ts +28 -10
- package/dist/api/refunds-api.js +24 -12
- package/dist/api/tenant-bank-account-api.d.ts +28 -10
- package/dist/api/tenant-bank-account-api.js +24 -12
- package/dist/models/bank-order-class.d.ts +7 -7
- package/dist/models/create-bank-order-request-dto.d.ts +3 -3
- package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
- package/dist/models/create-payment-request-dto.d.ts +7 -1
- package/dist/models/create-psp-payment-method-request-dto.d.ts +7 -1
- package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
- package/dist/models/financial-account-class.d.ts +111 -0
- package/dist/models/financial-account-class.js +24 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
- package/dist/models/payment-class.d.ts +7 -1
- package/dist/models/payment-reminder-class.d.ts +7 -1
- package/dist/models/refund-class.d.ts +7 -1
- package/models/bank-order-class.ts +7 -7
- package/models/create-bank-order-request-dto.ts +3 -3
- package/models/create-payment-reminder-request-dto.ts +7 -1
- package/models/create-payment-request-dto.ts +7 -1
- package/models/create-psp-payment-method-request-dto.ts +7 -1
- package/models/deactivated-payment-reminder-class.ts +7 -1
- package/models/financial-account-class.ts +120 -0
- package/models/index.ts +1 -0
- package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
- package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
- package/models/payment-class-without-expand-properties.ts +7 -1
- package/models/payment-class.ts +7 -1
- package/models/payment-reminder-class.ts +7 -1
- package/models/refund-class.ts +7 -1
- package/package.json +1 -1
|
@@ -43,7 +43,13 @@ export interface PaymentClassWithoutExpandProperties {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PaymentClassWithoutExpandProperties
|
|
45
45
|
*/
|
|
46
|
-
'accountCode'
|
|
46
|
+
'accountCode'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Partner code associated to that payment.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PaymentClassWithoutExpandProperties
|
|
51
|
+
*/
|
|
52
|
+
'partnerCode'?: string;
|
|
47
53
|
/**
|
|
48
54
|
* Amount to be paid in cents. 100 to charge 1€.
|
|
49
55
|
* @type {number}
|
package/models/payment-class.ts
CHANGED
|
@@ -44,7 +44,13 @@ export interface PaymentClass {
|
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof PaymentClass
|
|
46
46
|
*/
|
|
47
|
-
'accountCode'
|
|
47
|
+
'accountCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Partner code associated to that payment.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PaymentClass
|
|
52
|
+
*/
|
|
53
|
+
'partnerCode'?: string;
|
|
48
54
|
/**
|
|
49
55
|
* Amount to be paid in cents. 100 to charge 1€.
|
|
50
56
|
* @type {number}
|
|
@@ -43,7 +43,13 @@ export interface PaymentReminderClass {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PaymentReminderClass
|
|
45
45
|
*/
|
|
46
|
-
'accountCode'
|
|
46
|
+
'accountCode'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of related partner.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PaymentReminderClass
|
|
51
|
+
*/
|
|
52
|
+
'partnerCode'?: string;
|
|
47
53
|
/**
|
|
48
54
|
* Type of the invoice
|
|
49
55
|
* @type {string}
|
package/models/refund-class.ts
CHANGED
|
@@ -44,7 +44,13 @@ export interface RefundClass {
|
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof RefundClass
|
|
46
46
|
*/
|
|
47
|
-
'accountCode'
|
|
47
|
+
'accountCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Partner code associated with the payment.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof RefundClass
|
|
52
|
+
*/
|
|
53
|
+
'partnerCode'?: string;
|
|
48
54
|
/**
|
|
49
55
|
* Amount that was refunded in cents. 100 to refund 1€.
|
|
50
56
|
* @type {number}
|