@emilgroup/payment-sdk 1.14.1-beta.15 → 1.14.1-beta.19
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/README.md +2 -2
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +30 -0
- package/dist/models/tenant-bank-account-class.d.ts +30 -0
- package/models/tenant-bank-account-class-without-expand-properties.ts +30 -0
- package/models/tenant-bank-account-class.ts +30 -0
- package/package.json +1 -1
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.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.14.1-beta.19 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.14.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.14.1-beta.19
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -75,4 +75,34 @@ export interface TenantBankAccountClassWithoutExpandProperties {
|
|
|
75
75
|
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
76
76
|
*/
|
|
77
77
|
'updatedBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Street address of the bank
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
82
|
+
*/
|
|
83
|
+
'street'?: string;
|
|
84
|
+
/**
|
|
85
|
+
* House number of the bank
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
88
|
+
*/
|
|
89
|
+
'houseNumber'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* ZIP code of the bank
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
94
|
+
*/
|
|
95
|
+
'zipCode'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* City of the bank
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
100
|
+
*/
|
|
101
|
+
'city'?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Country of the bank
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
106
|
+
*/
|
|
107
|
+
'country'?: string;
|
|
78
108
|
}
|
|
@@ -82,4 +82,34 @@ export interface TenantBankAccountClass {
|
|
|
82
82
|
* @memberof TenantBankAccountClass
|
|
83
83
|
*/
|
|
84
84
|
'updatedBy': string;
|
|
85
|
+
/**
|
|
86
|
+
* Street address of the bank
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof TenantBankAccountClass
|
|
89
|
+
*/
|
|
90
|
+
'street'?: string;
|
|
91
|
+
/**
|
|
92
|
+
* House number of the bank
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof TenantBankAccountClass
|
|
95
|
+
*/
|
|
96
|
+
'houseNumber'?: string;
|
|
97
|
+
/**
|
|
98
|
+
* ZIP code of the bank
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof TenantBankAccountClass
|
|
101
|
+
*/
|
|
102
|
+
'zipCode'?: string;
|
|
103
|
+
/**
|
|
104
|
+
* City of the bank
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof TenantBankAccountClass
|
|
107
|
+
*/
|
|
108
|
+
'city'?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Country of the bank
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof TenantBankAccountClass
|
|
113
|
+
*/
|
|
114
|
+
'country'?: string;
|
|
85
115
|
}
|
|
@@ -80,5 +80,35 @@ export interface TenantBankAccountClassWithoutExpandProperties {
|
|
|
80
80
|
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
81
81
|
*/
|
|
82
82
|
'updatedBy': string;
|
|
83
|
+
/**
|
|
84
|
+
* Street address of the bank
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
87
|
+
*/
|
|
88
|
+
'street'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* House number of the bank
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
93
|
+
*/
|
|
94
|
+
'houseNumber'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* ZIP code of the bank
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
99
|
+
*/
|
|
100
|
+
'zipCode'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* City of the bank
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
105
|
+
*/
|
|
106
|
+
'city'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* Country of the bank
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
111
|
+
*/
|
|
112
|
+
'country'?: string;
|
|
83
113
|
}
|
|
84
114
|
|
|
@@ -87,5 +87,35 @@ export interface TenantBankAccountClass {
|
|
|
87
87
|
* @memberof TenantBankAccountClass
|
|
88
88
|
*/
|
|
89
89
|
'updatedBy': string;
|
|
90
|
+
/**
|
|
91
|
+
* Street address of the bank
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof TenantBankAccountClass
|
|
94
|
+
*/
|
|
95
|
+
'street'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* House number of the bank
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof TenantBankAccountClass
|
|
100
|
+
*/
|
|
101
|
+
'houseNumber'?: string;
|
|
102
|
+
/**
|
|
103
|
+
* ZIP code of the bank
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof TenantBankAccountClass
|
|
106
|
+
*/
|
|
107
|
+
'zipCode'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* City of the bank
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof TenantBankAccountClass
|
|
112
|
+
*/
|
|
113
|
+
'city'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Country of the bank
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof TenantBankAccountClass
|
|
118
|
+
*/
|
|
119
|
+
'country'?: string;
|
|
90
120
|
}
|
|
91
121
|
|