@emilgroup/payment-sdk 1.15.0 → 1.15.1-beta.2

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 (79) hide show
  1. package/.openapi-generator/FILES +14 -0
  2. package/README.md +2 -2
  3. package/api/billing-addresses-api.ts +677 -0
  4. package/api/payout-methods-api.ts +672 -0
  5. package/api/tenant-bank-account-api.ts +12 -12
  6. package/api.ts +4 -0
  7. package/dist/api/billing-addresses-api.d.ts +384 -0
  8. package/dist/api/billing-addresses-api.js +636 -0
  9. package/dist/api/payout-methods-api.d.ts +382 -0
  10. package/dist/api/payout-methods-api.js +635 -0
  11. package/dist/api/tenant-bank-account-api.d.ts +12 -12
  12. package/dist/api/tenant-bank-account-api.js +9 -9
  13. package/dist/api.d.ts +2 -0
  14. package/dist/api.js +2 -0
  15. package/dist/models/bank-order-class.d.ts +3 -3
  16. package/dist/models/bank-order-entity.d.ts +3 -2
  17. package/dist/models/bank-order-entity.js +2 -1
  18. package/dist/models/billing-address-class.d.ts +108 -0
  19. package/dist/models/billing-address-class.js +15 -0
  20. package/dist/models/create-bank-order-request-dto.d.ts +4 -3
  21. package/dist/models/create-bank-order-request-dto.js +2 -1
  22. package/dist/models/create-billing-address-request-dto.d.ts +66 -0
  23. package/dist/models/create-billing-address-request-dto.js +15 -0
  24. package/dist/models/create-billing-address-response-class.d.ts +25 -0
  25. package/dist/models/create-billing-address-response-class.js +15 -0
  26. package/dist/models/create-payout-method-request-dto.d.ts +60 -0
  27. package/dist/models/create-payout-method-request-dto.js +15 -0
  28. package/dist/models/create-payout-method-response-class.d.ts +25 -0
  29. package/dist/models/create-payout-method-response-class.js +15 -0
  30. package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
  31. package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
  32. package/dist/models/get-billing-address-response-class.d.ts +25 -0
  33. package/dist/models/get-billing-address-response-class.js +15 -0
  34. package/dist/models/get-payout-method-response-class.d.ts +25 -0
  35. package/dist/models/get-payout-method-response-class.js +15 -0
  36. package/dist/models/index.d.ts +12 -0
  37. package/dist/models/index.js +12 -0
  38. package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
  39. package/dist/models/list-billing-addresses-response-class.js +15 -0
  40. package/dist/models/list-payout-methods-response-class.d.ts +43 -0
  41. package/dist/models/list-payout-methods-response-class.js +15 -0
  42. package/dist/models/payout-method-class.d.ts +115 -0
  43. package/dist/models/payout-method-class.js +15 -0
  44. package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
  45. package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
  46. package/dist/models/tenant-bank-account-class.d.ts +17 -0
  47. package/dist/models/tenant-bank-account-class.js +11 -1
  48. package/dist/models/tenant-bank-account-entity.d.ts +17 -0
  49. package/dist/models/tenant-bank-account-entity.js +11 -1
  50. package/dist/models/update-bank-order-request-dto.d.ts +3 -3
  51. package/dist/models/update-billing-address-request-dto.d.ts +66 -0
  52. package/dist/models/update-billing-address-request-dto.js +15 -0
  53. package/dist/models/update-billing-address-response-class.d.ts +25 -0
  54. package/dist/models/update-billing-address-response-class.js +15 -0
  55. package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
  56. package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
  57. package/models/bank-order-class.ts +3 -3
  58. package/models/bank-order-entity.ts +4 -3
  59. package/models/billing-address-class.ts +114 -0
  60. package/models/create-bank-order-request-dto.ts +5 -4
  61. package/models/create-billing-address-request-dto.ts +72 -0
  62. package/models/create-billing-address-response-class.ts +31 -0
  63. package/models/create-payout-method-request-dto.ts +66 -0
  64. package/models/create-payout-method-response-class.ts +31 -0
  65. package/models/create-tenant-bank-account-request-dto.ts +18 -0
  66. package/models/get-billing-address-response-class.ts +31 -0
  67. package/models/get-payout-method-response-class.ts +31 -0
  68. package/models/index.ts +12 -0
  69. package/models/list-billing-addresses-response-class.ts +49 -0
  70. package/models/list-payout-methods-response-class.ts +49 -0
  71. package/models/payout-method-class.ts +121 -0
  72. package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
  73. package/models/tenant-bank-account-class.ts +18 -0
  74. package/models/tenant-bank-account-entity.ts +18 -0
  75. package/models/update-bank-order-request-dto.ts +3 -3
  76. package/models/update-billing-address-request-dto.ts +72 -0
  77. package/models/update-billing-address-response-class.ts +31 -0
  78. package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
  79. package/package.json +2 -1
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PayoutMethodClass } from './payout-method-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetPayoutMethodResponseClass
22
+ */
23
+ export interface GetPayoutMethodResponseClass {
24
+ /**
25
+ * The payout method
26
+ * @type {PayoutMethodClass}
27
+ * @memberof GetPayoutMethodResponseClass
28
+ */
29
+ 'payoutMethod': PayoutMethodClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -11,6 +11,7 @@ export * from './bank-transaction-entity';
11
11
  export * from './bank-transaction-invoice-class';
12
12
  export * from './bank-transaction-invoice-entity';
13
13
  export * from './bank-transfer-dto';
14
+ export * from './billing-address-class';
14
15
  export * from './billing-address-dto';
15
16
  export * from './billing-profile-dto';
16
17
  export * from './billing-profile-limited-response-dto';
@@ -25,6 +26,8 @@ export * from './create-bank-account-request-dto';
25
26
  export * from './create-bank-account-response-class';
26
27
  export * from './create-bank-order-request-dto';
27
28
  export * from './create-bank-order-response-class';
29
+ export * from './create-billing-address-request-dto';
30
+ export * from './create-billing-address-response-class';
28
31
  export * from './create-credit-allocation-request-dto';
29
32
  export * from './create-credit-allocation-response-class';
30
33
  export * from './create-payment-method-response-class';
@@ -34,6 +37,8 @@ export * from './create-payment-reminder-request-dto';
34
37
  export * from './create-payment-reminder-response-class';
35
38
  export * from './create-payment-request-dto';
36
39
  export * from './create-payment-response-class';
40
+ export * from './create-payout-method-request-dto';
41
+ export * from './create-payout-method-response-class';
37
42
  export * from './create-policy-payment-method-request-dto';
38
43
  export * from './create-policy-payment-method-response-class';
39
44
  export * from './create-psp-payment-method-request-dto';
@@ -53,11 +58,13 @@ export * from './generate-invoice-match-suggestions-response-class';
53
58
  export * from './get-bank-account-response-class';
54
59
  export * from './get-bank-order-response-class';
55
60
  export * from './get-bank-transactions-response-class';
61
+ export * from './get-billing-address-response-class';
56
62
  export * from './get-credit-allocation-response-class';
57
63
  export * from './get-exceeding-credit-response-class';
58
64
  export * from './get-payment-method-response-class';
59
65
  export * from './get-payment-reminder-response-class';
60
66
  export * from './get-payment-response-class';
67
+ export * from './get-payout-method-response-class';
61
68
  export * from './get-refund-response-class';
62
69
  export * from './get-tenant-bank-account-response-class';
63
70
  export * from './import-bank-transactions-response-class';
@@ -80,11 +87,13 @@ export * from './link-bank-transactions-response-class';
80
87
  export * from './list-bank-accounts-response-class';
81
88
  export * from './list-bank-orders-response-class';
82
89
  export * from './list-bank-transactions-response-class';
90
+ export * from './list-billing-addresses-response-class';
83
91
  export * from './list-credit-allocations-response-class';
84
92
  export * from './list-exceeding-credits-response-class';
85
93
  export * from './list-payment-methods-response-class';
86
94
  export * from './list-payment-reminders-response-class';
87
95
  export * from './list-payments-response-class';
96
+ export * from './list-payout-methods-response-class';
88
97
  export * from './list-policy-payment-methods-response-class';
89
98
  export * from './list-refunds-response-class';
90
99
  export * from './list-tenant-bank-account-response-class';
@@ -96,6 +105,7 @@ export * from './payment-class-without-expand-properties';
96
105
  export * from './payment-entity';
97
106
  export * from './payment-method-class';
98
107
  export * from './payment-reminder-class';
108
+ export * from './payout-method-class';
99
109
  export * from './policy-payment-method-class';
100
110
  export * from './primary-bank-account-response-class';
101
111
  export * from './refund-class';
@@ -117,6 +127,8 @@ export * from './update-bank-account-request-dto-rest';
117
127
  export * from './update-bank-account-response-class';
118
128
  export * from './update-bank-order-request-dto';
119
129
  export * from './update-bank-order-response-class';
130
+ export * from './update-billing-address-request-dto';
131
+ export * from './update-billing-address-response-class';
120
132
  export * from './update-tenant-bank-account-response-class';
121
133
  export * from './update-tenant-bank-account-rest-request-dto';
122
134
  export * from './validate-pspconfig-request-dto';
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { BillingAddressClass } from './billing-address-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListBillingAddressesResponseClass
22
+ */
23
+ export interface ListBillingAddressesResponseClass {
24
+ /**
25
+ * The billing addresses
26
+ * @type {Array<BillingAddressClass>}
27
+ * @memberof ListBillingAddressesResponseClass
28
+ */
29
+ 'items': Array<BillingAddressClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListBillingAddressesResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListBillingAddressesResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListBillingAddressesResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PayoutMethodClass } from './payout-method-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListPayoutMethodsResponseClass
22
+ */
23
+ export interface ListPayoutMethodsResponseClass {
24
+ /**
25
+ * The payout methods
26
+ * @type {Array<PayoutMethodClass>}
27
+ * @memberof ListPayoutMethodsResponseClass
28
+ */
29
+ 'items': Array<PayoutMethodClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListPayoutMethodsResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListPayoutMethodsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListPayoutMethodsResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+
@@ -0,0 +1,121 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { BillingAddressClass } from './billing-address-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PayoutMethodClass
22
+ */
23
+ export interface PayoutMethodClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof PayoutMethodClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * Unique identifier for the object.
32
+ * @type {string}
33
+ * @memberof PayoutMethodClass
34
+ */
35
+ 'code': string;
36
+ /**
37
+ * First name
38
+ * @type {string}
39
+ * @memberof PayoutMethodClass
40
+ */
41
+ 'firstName': string;
42
+ /**
43
+ * Last name
44
+ * @type {string}
45
+ * @memberof PayoutMethodClass
46
+ */
47
+ 'lastName': string;
48
+ /**
49
+ * IBAN
50
+ * @type {string}
51
+ * @memberof PayoutMethodClass
52
+ */
53
+ 'iban': string;
54
+ /**
55
+ * BIC
56
+ * @type {string}
57
+ * @memberof PayoutMethodClass
58
+ */
59
+ 'bic': string;
60
+ /**
61
+ * Bank name
62
+ * @type {string}
63
+ * @memberof PayoutMethodClass
64
+ */
65
+ 'bankName': string;
66
+ /**
67
+ * Whether the payout method is active
68
+ * @type {boolean}
69
+ * @memberof PayoutMethodClass
70
+ */
71
+ 'isActive': boolean;
72
+ /**
73
+ * Billing address code
74
+ * @type {string}
75
+ * @memberof PayoutMethodClass
76
+ */
77
+ 'billingAddressCode': string;
78
+ /**
79
+ * Unique identifier of the account that this object belongs to.
80
+ * @type {string}
81
+ * @memberof PayoutMethodClass
82
+ */
83
+ 'accountCode': string;
84
+ /**
85
+ * Unique identifier of the partner that this object belongs to.
86
+ * @type {string}
87
+ * @memberof PayoutMethodClass
88
+ */
89
+ 'partnerCode': string;
90
+ /**
91
+ * Billing address
92
+ * @type {BillingAddressClass}
93
+ * @memberof PayoutMethodClass
94
+ */
95
+ 'billingAddress'?: BillingAddressClass;
96
+ /**
97
+ * Time at which the object was created.
98
+ * @type {string}
99
+ * @memberof PayoutMethodClass
100
+ */
101
+ 'createdAt': string;
102
+ /**
103
+ * Time at which the object was updated.
104
+ * @type {string}
105
+ * @memberof PayoutMethodClass
106
+ */
107
+ 'updatedAt': string;
108
+ /**
109
+ * Identifier of the user who created the record.
110
+ * @type {string}
111
+ * @memberof PayoutMethodClass
112
+ */
113
+ 'createdBy': string;
114
+ /**
115
+ * Identifier of the user who last updated the record.
116
+ * @type {string}
117
+ * @memberof PayoutMethodClass
118
+ */
119
+ 'updatedBy': string;
120
+ }
121
+
@@ -116,6 +116,12 @@ export interface TenantBankAccountClassWithoutExpandProperties {
116
116
  * @memberof TenantBankAccountClassWithoutExpandProperties
117
117
  */
118
118
  'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
119
+ /**
120
+ * Payout Pain version
121
+ * @type {string}
122
+ * @memberof TenantBankAccountClassWithoutExpandProperties
123
+ */
124
+ 'payoutPainVersion': TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum;
119
125
  }
120
126
 
121
127
  export const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
@@ -129,5 +135,17 @@ export const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum =
129
135
  } as const;
130
136
 
131
137
  export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
138
+ export const TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = {
139
+ _00302: 'pain.001.003.02',
140
+ _00108: 'pain.001.001.08',
141
+ _00108Gbic5: 'pain.001.001.08_GBIC_5',
142
+ _00802: 'pain.001.008.02',
143
+ _00109: 'pain.001.001.09',
144
+ _00109Gbic5: 'pain.001.001.09_GBIC_5',
145
+ _00110: 'pain.001.001.10',
146
+ _00111: 'pain.001.001.11'
147
+ } as const;
148
+
149
+ export type TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum];
132
150
 
133
151
 
@@ -123,6 +123,12 @@ export interface TenantBankAccountClass {
123
123
  * @memberof TenantBankAccountClass
124
124
  */
125
125
  'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
126
+ /**
127
+ * Payout Pain version
128
+ * @type {string}
129
+ * @memberof TenantBankAccountClass
130
+ */
131
+ 'payoutPainVersion': TenantBankAccountClassPayoutPainVersionEnum;
126
132
  }
127
133
 
128
134
  export const TenantBankAccountClassSepaPainVersionEnum = {
@@ -136,5 +142,17 @@ export const TenantBankAccountClassSepaPainVersionEnum = {
136
142
  } as const;
137
143
 
138
144
  export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
145
+ export const TenantBankAccountClassPayoutPainVersionEnum = {
146
+ _00302: 'pain.001.003.02',
147
+ _00108: 'pain.001.001.08',
148
+ _00108Gbic5: 'pain.001.001.08_GBIC_5',
149
+ _00802: 'pain.001.008.02',
150
+ _00109: 'pain.001.001.09',
151
+ _00109Gbic5: 'pain.001.001.09_GBIC_5',
152
+ _00110: 'pain.001.001.10',
153
+ _00111: 'pain.001.001.11'
154
+ } as const;
155
+
156
+ export type TenantBankAccountClassPayoutPainVersionEnum = typeof TenantBankAccountClassPayoutPainVersionEnum[keyof typeof TenantBankAccountClassPayoutPainVersionEnum];
139
157
 
140
158
 
@@ -105,6 +105,12 @@ export interface TenantBankAccountEntity {
105
105
  * @memberof TenantBankAccountEntity
106
106
  */
107
107
  'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof TenantBankAccountEntity
112
+ */
113
+ 'payoutPainVersion'?: TenantBankAccountEntityPayoutPainVersionEnum;
108
114
  /**
109
115
  *
110
116
  * @type {string}
@@ -148,5 +154,17 @@ export const TenantBankAccountEntitySepaPainVersionEnum = {
148
154
  } as const;
149
155
 
150
156
  export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
157
+ export const TenantBankAccountEntityPayoutPainVersionEnum = {
158
+ _00302: 'pain.001.003.02',
159
+ _00108: 'pain.001.001.08',
160
+ _00108Gbic5: 'pain.001.001.08_GBIC_5',
161
+ _00802: 'pain.001.008.02',
162
+ _00109: 'pain.001.001.09',
163
+ _00109Gbic5: 'pain.001.001.09_GBIC_5',
164
+ _00110: 'pain.001.001.10',
165
+ _00111: 'pain.001.001.11'
166
+ } as const;
167
+
168
+ export type TenantBankAccountEntityPayoutPainVersionEnum = typeof TenantBankAccountEntityPayoutPainVersionEnum[keyof typeof TenantBankAccountEntityPayoutPainVersionEnum];
151
169
 
152
170
 
@@ -39,11 +39,11 @@ export interface UpdateBankOrderRequestDto {
39
39
  */
40
40
  'tenantBankAccountCode': string;
41
41
  /**
42
- * List of invoice IDs associated with bank order.
43
- * @type {Array<number>}
42
+ * List of entity codes associated with bank order.
43
+ * @type {Array<string>}
44
44
  * @memberof UpdateBankOrderRequestDto
45
45
  */
46
- 'invoiceIds': Array<number>;
46
+ 'entityCodes': Array<string>;
47
47
  /**
48
48
  * Day of execution of bank order.
49
49
  * @type {string}
@@ -0,0 +1,72 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface UpdateBillingAddressRequestDto
21
+ */
22
+ export interface UpdateBillingAddressRequestDto {
23
+ /**
24
+ * First name
25
+ * @type {string}
26
+ * @memberof UpdateBillingAddressRequestDto
27
+ */
28
+ 'firstName': string;
29
+ /**
30
+ * Last name
31
+ * @type {string}
32
+ * @memberof UpdateBillingAddressRequestDto
33
+ */
34
+ 'lastName': string;
35
+ /**
36
+ * Street name
37
+ * @type {string}
38
+ * @memberof UpdateBillingAddressRequestDto
39
+ */
40
+ 'street': string;
41
+ /**
42
+ * House number
43
+ * @type {string}
44
+ * @memberof UpdateBillingAddressRequestDto
45
+ */
46
+ 'houseNumber': string;
47
+ /**
48
+ * ZIP code
49
+ * @type {string}
50
+ * @memberof UpdateBillingAddressRequestDto
51
+ */
52
+ 'zipCode': string;
53
+ /**
54
+ * City
55
+ * @type {string}
56
+ * @memberof UpdateBillingAddressRequestDto
57
+ */
58
+ 'city': string;
59
+ /**
60
+ * Country code
61
+ * @type {string}
62
+ * @memberof UpdateBillingAddressRequestDto
63
+ */
64
+ 'countryCode'?: string;
65
+ /**
66
+ * Unique identifier of the partner that this object belongs to.
67
+ * @type {string}
68
+ * @memberof UpdateBillingAddressRequestDto
69
+ */
70
+ 'partnerCode': string;
71
+ }
72
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { BillingAddressClass } from './billing-address-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface UpdateBillingAddressResponseClass
22
+ */
23
+ export interface UpdateBillingAddressResponseClass {
24
+ /**
25
+ * The updated billing address
26
+ * @type {BillingAddressClass}
27
+ * @memberof UpdateBillingAddressResponseClass
28
+ */
29
+ 'billingAddress': BillingAddressClass;
30
+ }
31
+
@@ -74,6 +74,12 @@ export interface UpdateTenantBankAccountRestRequestDto {
74
74
  * @memberof UpdateTenantBankAccountRestRequestDto
75
75
  */
76
76
  'sepaPainVersion': UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum;
77
+ /**
78
+ * Payout Pain version
79
+ * @type {string}
80
+ * @memberof UpdateTenantBankAccountRestRequestDto
81
+ */
82
+ 'payoutPainVersion': UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum;
77
83
  }
78
84
 
79
85
  export const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
@@ -87,5 +93,17 @@ export const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
87
93
  } as const;
88
94
 
89
95
  export type UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum];
96
+ export const UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = {
97
+ _00302: 'pain.001.003.02',
98
+ _00108: 'pain.001.001.08',
99
+ _00108Gbic5: 'pain.001.001.08_GBIC_5',
100
+ _00802: 'pain.001.008.02',
101
+ _00109: 'pain.001.001.09',
102
+ _00109Gbic5: 'pain.001.001.09_GBIC_5',
103
+ _00110: 'pain.001.001.10',
104
+ _00111: 'pain.001.001.11'
105
+ } as const;
106
+
107
+ export type UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum];
90
108
 
91
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.15.0",
3
+ "version": "1.15.1-beta.2",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -21,6 +21,7 @@
21
21
  "axios": "^1.12.0"
22
22
  },
23
23
  "devDependencies": {
24
+
24
25
  "typescript": "^4.0"
25
26
  }
26
27
  }