@emilgroup/payment-sdk 1.14.1-beta.55 → 1.14.1-beta.56
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 +6 -0
- package/README.md +2 -2
- package/api/billing-addresses-api.ts +571 -0
- package/api.ts +2 -0
- package/dist/api/billing-addresses-api.d.ts +327 -0
- package/dist/api/billing-addresses-api.js +543 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/billing-address-class.d.ts +108 -0
- package/dist/models/billing-address-class.js +15 -0
- package/dist/models/create-billing-address-request-dto.d.ts +72 -0
- package/dist/models/create-billing-address-request-dto.js +15 -0
- package/dist/models/create-billing-address-response-class.d.ts +25 -0
- package/dist/models/create-billing-address-response-class.js +15 -0
- package/dist/models/get-billing-address-response-class.d.ts +25 -0
- package/dist/models/get-billing-address-response-class.js +15 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
- package/dist/models/list-billing-addresses-response-class.js +15 -0
- package/models/billing-address-class.ts +114 -0
- package/models/create-billing-address-request-dto.ts +78 -0
- package/models/create-billing-address-response-class.ts +31 -0
- package/models/get-billing-address-response-class.ts +31 -0
- package/models/index.ts +5 -0
- package/models/list-billing-addresses-response-class.ts +49 -0
- package/package.json +1 -1
package/models/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './bank-transaction-class';
|
|
|
7
7
|
export * from './bank-transaction-class-without-expand-properties';
|
|
8
8
|
export * from './bank-transaction-invoice-class';
|
|
9
9
|
export * from './bank-transfer-dto';
|
|
10
|
+
export * from './billing-address-class';
|
|
10
11
|
export * from './billing-address-dto';
|
|
11
12
|
export * from './billing-profile-dto';
|
|
12
13
|
export * from './billing-profile-limited-response-dto';
|
|
@@ -21,6 +22,8 @@ export * from './create-bank-account-request-dto';
|
|
|
21
22
|
export * from './create-bank-account-response-class';
|
|
22
23
|
export * from './create-bank-order-request-dto';
|
|
23
24
|
export * from './create-bank-order-response-class';
|
|
25
|
+
export * from './create-billing-address-request-dto';
|
|
26
|
+
export * from './create-billing-address-response-class';
|
|
24
27
|
export * from './create-credit-allocation-request-dto';
|
|
25
28
|
export * from './create-credit-allocation-response-class';
|
|
26
29
|
export * from './create-payment-method-response-class';
|
|
@@ -48,6 +51,7 @@ export * from './generate-invoice-match-suggestions-response-class';
|
|
|
48
51
|
export * from './get-bank-account-response-class';
|
|
49
52
|
export * from './get-bank-order-response-class';
|
|
50
53
|
export * from './get-bank-transactions-response-class';
|
|
54
|
+
export * from './get-billing-address-response-class';
|
|
51
55
|
export * from './get-credit-allocation-response-class';
|
|
52
56
|
export * from './get-exceeding-credit-response-class';
|
|
53
57
|
export * from './get-payment-method-response-class';
|
|
@@ -74,6 +78,7 @@ export * from './link-bank-transactions-response-class';
|
|
|
74
78
|
export * from './list-bank-accounts-response-class';
|
|
75
79
|
export * from './list-bank-orders-response-class';
|
|
76
80
|
export * from './list-bank-transactions-response-class';
|
|
81
|
+
export * from './list-billing-addresses-response-class';
|
|
77
82
|
export * from './list-credit-allocations-response-class';
|
|
78
83
|
export * from './list-exceeding-credits-response-class';
|
|
79
84
|
export * from './list-payment-methods-response-class';
|
|
@@ -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 items
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListBillingAddressesResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|