@emilgroup/payment-sdk-node 1.23.1-beta.4 → 1.23.1-beta.41
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 +12 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +16 -16
- package/api/bank-orders-api.ts +12 -12
- package/api/bank-transaction-api.ts +12 -12
- package/api/billing-addresses-api.ts +12 -12
- package/api/credit-allocation-api.ts +12 -12
- package/api/exceeding-credits-api.ts +12 -12
- package/api/ibanvalidator-api.ts +169 -0
- package/api/payment-methods-api.ts +12 -12
- package/api/payment-receipts-api.ts +680 -0
- package/api/payment-reminders-api.ts +12 -12
- package/api/payment-requests-api.ts +121 -20
- package/api/payments-api.ts +12 -12
- package/api/payout-methods-api.ts +138 -20
- package/api/refunds-api.ts +12 -12
- package/api/tenant-bank-account-api.ts +12 -12
- package/api.ts +4 -0
- package/dist/api/bank-accounts-api.d.ts +16 -16
- package/dist/api/bank-accounts-api.js +13 -13
- package/dist/api/bank-orders-api.d.ts +12 -12
- package/dist/api/bank-orders-api.js +10 -10
- package/dist/api/bank-transaction-api.d.ts +12 -12
- package/dist/api/bank-transaction-api.js +10 -10
- package/dist/api/billing-addresses-api.d.ts +12 -12
- package/dist/api/billing-addresses-api.js +10 -10
- package/dist/api/credit-allocation-api.d.ts +12 -12
- package/dist/api/credit-allocation-api.js +10 -10
- package/dist/api/exceeding-credits-api.d.ts +12 -12
- package/dist/api/exceeding-credits-api.js +10 -10
- package/dist/api/ibanvalidator-api.d.ts +97 -0
- package/dist/api/ibanvalidator-api.js +228 -0
- package/dist/api/payment-methods-api.d.ts +12 -12
- package/dist/api/payment-methods-api.js +10 -10
- package/dist/api/payment-receipts-api.d.ts +383 -0
- package/dist/api/payment-receipts-api.js +641 -0
- package/dist/api/payment-reminders-api.d.ts +12 -12
- package/dist/api/payment-reminders-api.js +10 -10
- package/dist/api/payment-requests-api.d.ts +75 -20
- package/dist/api/payment-requests-api.js +107 -15
- package/dist/api/payments-api.d.ts +12 -12
- package/dist/api/payments-api.js +10 -10
- package/dist/api/payout-methods-api.d.ts +85 -20
- package/dist/api/payout-methods-api.js +115 -16
- package/dist/api/refunds-api.d.ts +12 -12
- package/dist/api/refunds-api.js +10 -10
- package/dist/api/tenant-bank-account-api.d.ts +12 -12
- package/dist/api/tenant-bank-account-api.js +10 -10
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/bank-account-class-without-expand-properties.d.ts +6 -0
- package/dist/models/bank-account-class.d.ts +6 -0
- package/dist/models/bank-data-class.d.ts +36 -0
- package/dist/models/bank-data-class.js +15 -0
- package/dist/models/create-payment-receipt-request-dto.d.ts +54 -0
- package/dist/models/create-payment-receipt-request-dto.js +15 -0
- package/dist/models/create-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/create-payment-receipt-response-class.js +15 -0
- package/dist/models/create-payment-request-request-dto.d.ts +38 -9
- package/dist/models/create-payment-request-request-dto.js +8 -4
- package/dist/models/create-payout-method-by-bank-account-request-dto.d.ts +36 -0
- package/dist/models/create-payout-method-by-bank-account-request-dto.js +15 -0
- package/dist/models/create-payout-method-request-dto.d.ts +8 -2
- package/dist/models/get-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/get-payment-receipt-response-class.js +15 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/dist/models/list-payment-receipts-response-class.d.ts +43 -0
- package/dist/models/list-payment-receipts-response-class.js +15 -0
- package/dist/models/payment-receipt-class.d.ts +90 -0
- package/dist/models/payment-receipt-class.js +15 -0
- package/dist/models/payment-request-class.d.ts +54 -12
- package/dist/models/payment-request-class.js +11 -7
- package/dist/models/payout-method-class.d.ts +6 -0
- package/dist/models/update-payment-receipt-response-class.d.ts +25 -0
- package/dist/models/update-payment-receipt-response-class.js +15 -0
- package/dist/models/update-payment-request-request-dto.d.ts +4 -4
- package/dist/models/update-payment-request-request-dto.js +3 -3
- package/dist/models/validate-iban-request-dto.d.ts +24 -0
- package/dist/models/validate-iban-request-dto.js +15 -0
- package/dist/models/validate-iban-response-class.d.ts +31 -0
- package/dist/models/validate-iban-response-class.js +15 -0
- package/models/bank-account-class-without-expand-properties.ts +6 -0
- package/models/bank-account-class.ts +6 -0
- package/models/bank-data-class.ts +42 -0
- package/models/create-payment-receipt-request-dto.ts +60 -0
- package/models/create-payment-receipt-response-class.ts +31 -0
- package/models/create-payment-request-request-dto.ts +39 -9
- package/models/create-payout-method-by-bank-account-request-dto.ts +42 -0
- package/models/create-payout-method-request-dto.ts +8 -2
- package/models/get-payment-receipt-response-class.ts +31 -0
- package/models/index.ts +10 -0
- package/models/list-payment-receipts-response-class.ts +49 -0
- package/models/payment-receipt-class.ts +96 -0
- package/models/payment-request-class.ts +55 -12
- package/models/payout-method-class.ts +6 -0
- package/models/update-payment-receipt-response-class.ts +31 -0
- package/models/update-payment-request-request-dto.ts +4 -4
- package/models/validate-iban-request-dto.ts +30 -0
- package/models/validate-iban-response-class.ts +37 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -34,7 +34,9 @@ __exportStar(require("./api/billing-addresses-api"), exports);
|
|
|
34
34
|
__exportStar(require("./api/credit-allocation-api"), exports);
|
|
35
35
|
__exportStar(require("./api/exceeding-credits-api"), exports);
|
|
36
36
|
__exportStar(require("./api/health-check-api"), exports);
|
|
37
|
+
__exportStar(require("./api/ibanvalidator-api"), exports);
|
|
37
38
|
__exportStar(require("./api/payment-methods-api"), exports);
|
|
39
|
+
__exportStar(require("./api/payment-receipts-api"), exports);
|
|
38
40
|
__exportStar(require("./api/payment-reminders-api"), exports);
|
|
39
41
|
__exportStar(require("./api/payment-requests-api"), exports);
|
|
40
42
|
__exportStar(require("./api/payment-setup-api"), exports);
|
|
@@ -45,6 +45,12 @@ export interface BankAccountClassWithoutExpandProperties {
|
|
|
45
45
|
* @memberof BankAccountClassWithoutExpandProperties
|
|
46
46
|
*/
|
|
47
47
|
'bic': string;
|
|
48
|
+
/**
|
|
49
|
+
* Bank name.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BankAccountClassWithoutExpandProperties
|
|
52
|
+
*/
|
|
53
|
+
'bankName': string;
|
|
48
54
|
/**
|
|
49
55
|
* Bank account holder.
|
|
50
56
|
* @type {string}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface BankDataClass
|
|
16
|
+
*/
|
|
17
|
+
export interface BankDataClass {
|
|
18
|
+
/**
|
|
19
|
+
* BIC
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof BankDataClass
|
|
22
|
+
*/
|
|
23
|
+
'bic': string;
|
|
24
|
+
/**
|
|
25
|
+
* Bank name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BankDataClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Bank code
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof BankDataClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreatePaymentReceiptRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePaymentReceiptRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* amount
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'amount': number;
|
|
24
|
+
/**
|
|
25
|
+
* currency
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'currency': string;
|
|
30
|
+
/**
|
|
31
|
+
* direction
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'direction': string;
|
|
36
|
+
/**
|
|
37
|
+
* paymentRequestCode
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'paymentRequestCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* psp
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'psp'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* comment
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreatePaymentReceiptRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'comment'?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PaymentReceiptClass } from './payment-receipt-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreatePaymentReceiptResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreatePaymentReceiptResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The created payment receipt with all its details.
|
|
21
|
+
* @type {PaymentReceiptClass}
|
|
22
|
+
* @memberof CreatePaymentReceiptResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'paymentReceipt'?: PaymentReceiptClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -22,7 +22,7 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
22
22
|
*/
|
|
23
23
|
'amount': number;
|
|
24
24
|
/**
|
|
25
|
-
* Currency code for the payment request.
|
|
25
|
+
* Currency code for the payment request (ISO 4217 format).
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CreatePaymentRequestRequestDto
|
|
28
28
|
*/
|
|
@@ -34,17 +34,41 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'direction': CreatePaymentRequestRequestDtoDirectionEnum;
|
|
36
36
|
/**
|
|
37
|
-
* Code of the
|
|
37
|
+
* Code of the financial entity (e.g., invoice code, claim adjustment code) that this payment request is associated with.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreatePaymentRequestRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
41
|
+
'financialEntityCode': string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Number of the financial entity (e.g., invoice number, claim adjustment number).
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof CreatePaymentRequestRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'financialEntityNumber': string;
|
|
48
|
+
/**
|
|
49
|
+
* Type of the financial entity (e.g., refund_allocation, claim_regulation).
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'financialEntityType': CreatePaymentRequestRequestDtoFinancialEntityTypeEnum;
|
|
54
|
+
/**
|
|
55
|
+
* Code of the domain entity (e.g., policy code, claim code) that this payment request is associated with.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'domainEntityCode': string;
|
|
60
|
+
/**
|
|
61
|
+
* Number of the domain entity (e.g., policy number, claim number).
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'domainEntityNumber': string;
|
|
66
|
+
/**
|
|
67
|
+
* Type of the domain entity (e.g., policy, claim).
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'domainEntityType': CreatePaymentRequestRequestDtoDomainEntityTypeEnum;
|
|
48
72
|
/**
|
|
49
73
|
* Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
|
|
50
74
|
* @type {string}
|
|
@@ -63,10 +87,15 @@ export declare const CreatePaymentRequestRequestDtoDirectionEnum: {
|
|
|
63
87
|
readonly Disburse: "disburse";
|
|
64
88
|
};
|
|
65
89
|
export type CreatePaymentRequestRequestDtoDirectionEnum = typeof CreatePaymentRequestRequestDtoDirectionEnum[keyof typeof CreatePaymentRequestRequestDtoDirectionEnum];
|
|
66
|
-
export declare const
|
|
90
|
+
export declare const CreatePaymentRequestRequestDtoFinancialEntityTypeEnum: {
|
|
91
|
+
readonly ClaimRegulation: "claim_regulation";
|
|
92
|
+
readonly RefundAllocation: "refund_allocation";
|
|
93
|
+
readonly Other: "other";
|
|
94
|
+
};
|
|
95
|
+
export type CreatePaymentRequestRequestDtoFinancialEntityTypeEnum = typeof CreatePaymentRequestRequestDtoFinancialEntityTypeEnum[keyof typeof CreatePaymentRequestRequestDtoFinancialEntityTypeEnum];
|
|
96
|
+
export declare const CreatePaymentRequestRequestDtoDomainEntityTypeEnum: {
|
|
67
97
|
readonly Other: "other";
|
|
68
98
|
readonly Claim: "claim";
|
|
69
|
-
readonly
|
|
70
|
-
readonly Commission: "commission";
|
|
99
|
+
readonly Policy: "policy";
|
|
71
100
|
};
|
|
72
|
-
export type
|
|
101
|
+
export type CreatePaymentRequestRequestDtoDomainEntityTypeEnum = typeof CreatePaymentRequestRequestDtoDomainEntityTypeEnum[keyof typeof CreatePaymentRequestRequestDtoDomainEntityTypeEnum];
|
|
@@ -13,14 +13,18 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
16
|
+
exports.CreatePaymentRequestRequestDtoDomainEntityTypeEnum = exports.CreatePaymentRequestRequestDtoFinancialEntityTypeEnum = exports.CreatePaymentRequestRequestDtoDirectionEnum = void 0;
|
|
17
17
|
exports.CreatePaymentRequestRequestDtoDirectionEnum = {
|
|
18
18
|
Collect: 'collect',
|
|
19
19
|
Disburse: 'disburse'
|
|
20
20
|
};
|
|
21
|
-
exports.
|
|
21
|
+
exports.CreatePaymentRequestRequestDtoFinancialEntityTypeEnum = {
|
|
22
|
+
ClaimRegulation: 'claim_regulation',
|
|
23
|
+
RefundAllocation: 'refund_allocation',
|
|
24
|
+
Other: 'other'
|
|
25
|
+
};
|
|
26
|
+
exports.CreatePaymentRequestRequestDtoDomainEntityTypeEnum = {
|
|
22
27
|
Other: 'other',
|
|
23
28
|
Claim: 'claim',
|
|
24
|
-
|
|
25
|
-
Commission: 'commission'
|
|
29
|
+
Policy: 'policy'
|
|
26
30
|
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreatePayoutMethodByBankAccountRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePayoutMethodByBankAccountRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* The code identifying the bank account that will be used to create the payout method.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreatePayoutMethodByBankAccountRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'bankAccountCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* Billing address code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePayoutMethodByBankAccountRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'billingAddressCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreatePayoutMethodByBankAccountRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode': string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -26,13 +26,19 @@ export interface CreatePayoutMethodRequestDto {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CreatePayoutMethodRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'firstName'
|
|
29
|
+
'firstName'?: string;
|
|
30
30
|
/**
|
|
31
31
|
* Last name
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof CreatePayoutMethodRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'lastName'
|
|
35
|
+
'lastName'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Account holder
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'accountHolder'?: string;
|
|
36
42
|
/**
|
|
37
43
|
* IBAN
|
|
38
44
|
* @type {string}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PaymentReceiptClass } from './payment-receipt-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetPaymentReceiptResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetPaymentReceiptResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The payment receipt retrieved by its code.
|
|
21
|
+
* @type {PaymentReceiptClass}
|
|
22
|
+
* @memberof GetPaymentReceiptResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'paymentReceipt'?: PaymentReceiptClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-payment-method-request-dto';
|
|
2
2
|
export * from './bank-account-class';
|
|
3
3
|
export * from './bank-account-class-without-expand-properties';
|
|
4
|
+
export * from './bank-data-class';
|
|
4
5
|
export * from './bank-order-class';
|
|
5
6
|
export * from './bank-order-entity';
|
|
6
7
|
export * from './bank-order-xml-file-class';
|
|
@@ -33,12 +34,15 @@ export * from './create-credit-allocation-response-class';
|
|
|
33
34
|
export * from './create-payment-method-response-class';
|
|
34
35
|
export * from './create-payment-order-dto';
|
|
35
36
|
export * from './create-payment-order-request-dto';
|
|
37
|
+
export * from './create-payment-receipt-request-dto';
|
|
38
|
+
export * from './create-payment-receipt-response-class';
|
|
36
39
|
export * from './create-payment-reminder-request-dto';
|
|
37
40
|
export * from './create-payment-reminder-response-class';
|
|
38
41
|
export * from './create-payment-request-dto';
|
|
39
42
|
export * from './create-payment-request-request-dto';
|
|
40
43
|
export * from './create-payment-request-response-class';
|
|
41
44
|
export * from './create-payment-response-class';
|
|
45
|
+
export * from './create-payout-method-by-bank-account-request-dto';
|
|
42
46
|
export * from './create-payout-method-request-dto';
|
|
43
47
|
export * from './create-payout-method-response-class';
|
|
44
48
|
export * from './create-policy-payment-method-request-dto';
|
|
@@ -64,6 +68,7 @@ export * from './get-billing-address-response-class';
|
|
|
64
68
|
export * from './get-credit-allocation-response-class';
|
|
65
69
|
export * from './get-exceeding-credit-response-class';
|
|
66
70
|
export * from './get-payment-method-response-class';
|
|
71
|
+
export * from './get-payment-receipt-response-class';
|
|
67
72
|
export * from './get-payment-reminder-response-class';
|
|
68
73
|
export * from './get-payment-request-response-class';
|
|
69
74
|
export * from './get-payment-response-class';
|
|
@@ -94,6 +99,7 @@ export * from './list-billing-addresses-response-class';
|
|
|
94
99
|
export * from './list-credit-allocations-response-class';
|
|
95
100
|
export * from './list-exceeding-credits-response-class';
|
|
96
101
|
export * from './list-payment-methods-response-class';
|
|
102
|
+
export * from './list-payment-receipts-response-class';
|
|
97
103
|
export * from './list-payment-reminders-response-class';
|
|
98
104
|
export * from './list-payment-requests-response-class';
|
|
99
105
|
export * from './list-payments-response-class';
|
|
@@ -108,6 +114,7 @@ export * from './payment-class';
|
|
|
108
114
|
export * from './payment-class-without-expand-properties';
|
|
109
115
|
export * from './payment-entity';
|
|
110
116
|
export * from './payment-method-class';
|
|
117
|
+
export * from './payment-receipt-class';
|
|
111
118
|
export * from './payment-reminder-class';
|
|
112
119
|
export * from './payment-request-class';
|
|
113
120
|
export * from './payout-method-class';
|
|
@@ -134,8 +141,11 @@ export * from './update-bank-order-request-dto';
|
|
|
134
141
|
export * from './update-bank-order-response-class';
|
|
135
142
|
export * from './update-billing-address-request-dto';
|
|
136
143
|
export * from './update-billing-address-response-class';
|
|
144
|
+
export * from './update-payment-receipt-response-class';
|
|
137
145
|
export * from './update-payment-request-request-dto';
|
|
138
146
|
export * from './update-payment-request-response-class';
|
|
139
147
|
export * from './update-tenant-bank-account-response-class';
|
|
140
148
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
149
|
+
export * from './validate-iban-request-dto';
|
|
150
|
+
export * from './validate-iban-response-class';
|
|
141
151
|
export * from './validate-pspconfig-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./activate-policy-payment-method-request-dto"), exports);
|
|
18
18
|
__exportStar(require("./bank-account-class"), exports);
|
|
19
19
|
__exportStar(require("./bank-account-class-without-expand-properties"), exports);
|
|
20
|
+
__exportStar(require("./bank-data-class"), exports);
|
|
20
21
|
__exportStar(require("./bank-order-class"), exports);
|
|
21
22
|
__exportStar(require("./bank-order-entity"), exports);
|
|
22
23
|
__exportStar(require("./bank-order-xml-file-class"), exports);
|
|
@@ -49,12 +50,15 @@ __exportStar(require("./create-credit-allocation-response-class"), exports);
|
|
|
49
50
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
50
51
|
__exportStar(require("./create-payment-order-dto"), exports);
|
|
51
52
|
__exportStar(require("./create-payment-order-request-dto"), exports);
|
|
53
|
+
__exportStar(require("./create-payment-receipt-request-dto"), exports);
|
|
54
|
+
__exportStar(require("./create-payment-receipt-response-class"), exports);
|
|
52
55
|
__exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
53
56
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
54
57
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
55
58
|
__exportStar(require("./create-payment-request-request-dto"), exports);
|
|
56
59
|
__exportStar(require("./create-payment-request-response-class"), exports);
|
|
57
60
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
61
|
+
__exportStar(require("./create-payout-method-by-bank-account-request-dto"), exports);
|
|
58
62
|
__exportStar(require("./create-payout-method-request-dto"), exports);
|
|
59
63
|
__exportStar(require("./create-payout-method-response-class"), exports);
|
|
60
64
|
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
@@ -80,6 +84,7 @@ __exportStar(require("./get-billing-address-response-class"), exports);
|
|
|
80
84
|
__exportStar(require("./get-credit-allocation-response-class"), exports);
|
|
81
85
|
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
82
86
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
87
|
+
__exportStar(require("./get-payment-receipt-response-class"), exports);
|
|
83
88
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
84
89
|
__exportStar(require("./get-payment-request-response-class"), exports);
|
|
85
90
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
@@ -110,6 +115,7 @@ __exportStar(require("./list-billing-addresses-response-class"), exports);
|
|
|
110
115
|
__exportStar(require("./list-credit-allocations-response-class"), exports);
|
|
111
116
|
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
112
117
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
118
|
+
__exportStar(require("./list-payment-receipts-response-class"), exports);
|
|
113
119
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
114
120
|
__exportStar(require("./list-payment-requests-response-class"), exports);
|
|
115
121
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
@@ -124,6 +130,7 @@ __exportStar(require("./payment-class"), exports);
|
|
|
124
130
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
125
131
|
__exportStar(require("./payment-entity"), exports);
|
|
126
132
|
__exportStar(require("./payment-method-class"), exports);
|
|
133
|
+
__exportStar(require("./payment-receipt-class"), exports);
|
|
127
134
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
128
135
|
__exportStar(require("./payment-request-class"), exports);
|
|
129
136
|
__exportStar(require("./payout-method-class"), exports);
|
|
@@ -150,8 +157,11 @@ __exportStar(require("./update-bank-order-request-dto"), exports);
|
|
|
150
157
|
__exportStar(require("./update-bank-order-response-class"), exports);
|
|
151
158
|
__exportStar(require("./update-billing-address-request-dto"), exports);
|
|
152
159
|
__exportStar(require("./update-billing-address-response-class"), exports);
|
|
160
|
+
__exportStar(require("./update-payment-receipt-response-class"), exports);
|
|
153
161
|
__exportStar(require("./update-payment-request-request-dto"), exports);
|
|
154
162
|
__exportStar(require("./update-payment-request-response-class"), exports);
|
|
155
163
|
__exportStar(require("./update-tenant-bank-account-response-class"), exports);
|
|
156
164
|
__exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
|
|
165
|
+
__exportStar(require("./validate-iban-request-dto"), exports);
|
|
166
|
+
__exportStar(require("./validate-iban-response-class"), exports);
|
|
157
167
|
__exportStar(require("./validate-pspconfig-request-dto"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* 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.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PaymentReceiptClass } from './payment-receipt-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPaymentReceiptsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPaymentReceiptsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of payment receipts.
|
|
21
|
+
* @type {Array<PaymentReceiptClass>}
|
|
22
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<PaymentReceiptClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total amount of items.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListPaymentReceiptsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* 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.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|