@emilgroup/payment-sdk-node 1.0.1 → 1.2.0
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 +5 -0
- package/README.md +3 -3
- package/api/bank-accounts-api.ts +1 -1
- package/api/payment-methods-api.ts +1 -1
- package/api/payment-reminders-api.ts +560 -0
- package/api/payment-service-providers-api.ts +1 -1
- package/api/payment-setup-api.ts +1 -1
- package/api/payments-api.ts +1 -1
- package/api/webhooks-api.ts +1 -1
- package/api.ts +3 -1
- package/base.ts +23 -33
- package/common.ts +62 -1
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +1 -1
- package/dist/api/bank-accounts-api.js +2 -2
- package/dist/api/payment-methods-api.d.ts +1 -1
- package/dist/api/payment-methods-api.js +2 -2
- package/dist/api/payment-reminders-api.d.ts +317 -0
- package/dist/api/payment-reminders-api.js +542 -0
- package/dist/api/payment-service-providers-api.d.ts +1 -1
- package/dist/api/payment-service-providers-api.js +2 -2
- package/dist/api/payment-setup-api.d.ts +1 -1
- package/dist/api/payment-setup-api.js +2 -2
- package/dist/api/payments-api.d.ts +1 -1
- package/dist/api/payments-api.js +2 -2
- package/dist/api/webhooks-api.d.ts +1 -1
- package/dist/api/webhooks-api.js +2 -2
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/base.d.ts +2 -3
- package/dist/base.js +20 -22
- package/dist/common.d.ts +27 -1
- package/dist/common.js +36 -3
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +1 -1
- package/dist/models/complete-braintree-payment-setup-request-dto.js +1 -1
- package/dist/models/complete-payment-setup-request-dto.d.ts +1 -1
- package/dist/models/complete-payment-setup-request-dto.js +1 -1
- package/dist/models/complete-payment-setup-response-class.d.ts +1 -1
- package/dist/models/complete-payment-setup-response-class.js +1 -1
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +9 -3
- package/dist/models/complete-stripe-payment-setup-request-dto.js +1 -1
- package/dist/models/create-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-bank-account-request-dto.js +1 -1
- package/dist/models/create-payment-method-response-class.d.ts +1 -1
- package/dist/models/create-payment-method-response-class.js +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +63 -0
- package/dist/models/create-payment-reminder-request-dto.js +24 -0
- package/dist/models/create-payment-request-dto.d.ts +7 -1
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-payment-response-class.d.ts +1 -1
- package/dist/models/create-payment-response-class.js +1 -1
- package/dist/models/create-psp-payment-method-request-dto.d.ts +2 -2
- package/dist/models/create-psp-payment-method-request-dto.js +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +30 -0
- package/dist/models/deactivate-payment-reminder-request-dto.js +21 -0
- package/dist/models/get-payment-method-response-class.d.ts +1 -1
- package/dist/models/get-payment-method-response-class.js +1 -1
- package/dist/models/get-payment-response-class.d.ts +1 -1
- package/dist/models/get-payment-response-class.js +1 -1
- package/dist/models/get-request-dto.d.ts +1 -1
- package/dist/models/get-request-dto.js +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +9 -3
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +1 -1
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +1 -1
- package/dist/models/initiate-braintree-payment-setup-response-class.js +1 -1
- package/dist/models/initiate-payment-setup-request-dto.d.ts +1 -1
- package/dist/models/initiate-payment-setup-request-dto.js +1 -1
- package/dist/models/initiate-payment-setup-response-class.d.ts +1 -1
- package/dist/models/initiate-payment-setup-response-class.js +1 -1
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +9 -3
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +1 -1
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +1 -1
- package/dist/models/initiate-stripe-payment-setup-response-class.js +1 -1
- package/dist/models/list-payment-methods-response-class.d.ts +1 -1
- package/dist/models/list-payment-methods-response-class.js +1 -1
- package/dist/models/list-payment-reminders-response-class.d.ts +31 -0
- package/dist/models/list-payment-reminders-response-class.js +15 -0
- package/dist/models/list-payments-response-class.d.ts +1 -1
- package/dist/models/list-payments-response-class.js +1 -1
- package/dist/models/payment-class.d.ts +1 -1
- package/dist/models/payment-class.js +1 -1
- package/dist/models/payment-method-class.d.ts +1 -1
- package/dist/models/payment-method-class.js +1 -1
- package/dist/models/payment-reminder-class.d.ts +108 -0
- package/dist/models/payment-reminder-class.js +32 -0
- package/dist/models/sepa-direct-dto.d.ts +1 -1
- package/dist/models/sepa-direct-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +2 -2
- package/dist/models/validate-pspconfig-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-response-class.d.ts +1 -1
- package/dist/models/validate-pspconfig-response-class.js +1 -1
- package/index.ts +1 -1
- package/models/complete-braintree-payment-setup-request-dto.ts +1 -1
- package/models/complete-payment-setup-request-dto.ts +1 -1
- package/models/complete-payment-setup-response-class.ts +1 -1
- package/models/complete-stripe-payment-setup-request-dto.ts +9 -3
- package/models/create-bank-account-request-dto.ts +1 -1
- package/models/create-payment-method-response-class.ts +1 -1
- package/models/create-payment-reminder-request-dto.ts +72 -0
- package/models/create-payment-request-dto.ts +7 -1
- package/models/create-payment-response-class.ts +1 -1
- package/models/create-psp-payment-method-request-dto.ts +1 -1
- package/models/deactivate-payment-reminder-request-dto.ts +39 -0
- package/models/get-payment-method-response-class.ts +1 -1
- package/models/get-payment-response-class.ts +1 -1
- package/models/get-request-dto.ts +1 -1
- package/models/index.ts +4 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +9 -3
- package/models/initiate-braintree-payment-setup-response-class.ts +1 -1
- package/models/initiate-payment-setup-request-dto.ts +1 -1
- package/models/initiate-payment-setup-response-class.ts +1 -1
- package/models/initiate-stripe-payment-setup-request-dto.ts +9 -3
- package/models/initiate-stripe-payment-setup-response-class.ts +1 -1
- package/models/list-payment-methods-response-class.ts +1 -1
- package/models/list-payment-reminders-response-class.ts +37 -0
- package/models/list-payments-response-class.ts +1 -1
- package/models/payment-class.ts +1 -1
- package/models/payment-method-class.ts +1 -1
- package/models/payment-reminder-class.ts +118 -0
- package/models/sepa-direct-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +1 -1
- package/models/validate-pspconfig-response-class.ts +1 -1
- package/package.json +2 -3
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -0,0 +1,30 @@
|
|
|
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 DeactivatePaymentReminderRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DeactivatePaymentReminderRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Reason for the update.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DeactivatePaymentReminderRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'updateReason': DeactivatePaymentReminderRequestDtoUpdateReasonEnum;
|
|
24
|
+
}
|
|
25
|
+
export declare const DeactivatePaymentReminderRequestDtoUpdateReasonEnum: {
|
|
26
|
+
readonly SystemTriggered: "system_triggered";
|
|
27
|
+
readonly UserPaid: "user_paid";
|
|
28
|
+
readonly AdminCanceled: "admin_canceled";
|
|
29
|
+
};
|
|
30
|
+
export type DeactivatePaymentReminderRequestDtoUpdateReasonEnum = typeof DeactivatePaymentReminderRequestDtoUpdateReasonEnum[keyof typeof DeactivatePaymentReminderRequestDtoUpdateReasonEnum];
|
|
@@ -0,0 +1,21 @@
|
|
|
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 });
|
|
16
|
+
exports.DeactivatePaymentReminderRequestDtoUpdateReasonEnum = void 0;
|
|
17
|
+
exports.DeactivatePaymentReminderRequestDtoUpdateReasonEnum = {
|
|
18
|
+
SystemTriggered: 'system_triggered',
|
|
19
|
+
UserPaid: 'user_paid',
|
|
20
|
+
AdminCanceled: 'admin_canceled'
|
|
21
|
+
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/models/index.d.ts
CHANGED
|
@@ -4,9 +4,11 @@ export * from './complete-payment-setup-response-class';
|
|
|
4
4
|
export * from './complete-stripe-payment-setup-request-dto';
|
|
5
5
|
export * from './create-bank-account-request-dto';
|
|
6
6
|
export * from './create-payment-method-response-class';
|
|
7
|
+
export * from './create-payment-reminder-request-dto';
|
|
7
8
|
export * from './create-payment-request-dto';
|
|
8
9
|
export * from './create-payment-response-class';
|
|
9
10
|
export * from './create-psp-payment-method-request-dto';
|
|
11
|
+
export * from './deactivate-payment-reminder-request-dto';
|
|
10
12
|
export * from './get-payment-method-response-class';
|
|
11
13
|
export * from './get-payment-response-class';
|
|
12
14
|
export * from './get-request-dto';
|
|
@@ -17,9 +19,11 @@ export * from './initiate-payment-setup-response-class';
|
|
|
17
19
|
export * from './initiate-stripe-payment-setup-request-dto';
|
|
18
20
|
export * from './initiate-stripe-payment-setup-response-class';
|
|
19
21
|
export * from './list-payment-methods-response-class';
|
|
22
|
+
export * from './list-payment-reminders-response-class';
|
|
20
23
|
export * from './list-payments-response-class';
|
|
21
24
|
export * from './payment-class';
|
|
22
25
|
export * from './payment-method-class';
|
|
26
|
+
export * from './payment-reminder-class';
|
|
23
27
|
export * from './sepa-direct-dto';
|
|
24
28
|
export * from './validate-pspconfig-request-dto';
|
|
25
29
|
export * from './validate-pspconfig-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -20,9 +20,11 @@ __exportStar(require("./complete-payment-setup-response-class"), exports);
|
|
|
20
20
|
__exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
|
|
21
21
|
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
22
22
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
23
|
+
__exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
23
24
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
24
25
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
25
26
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
27
|
+
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
26
28
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
27
29
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
28
30
|
__exportStar(require("./get-request-dto"), exports);
|
|
@@ -33,9 +35,11 @@ __exportStar(require("./initiate-payment-setup-response-class"), exports);
|
|
|
33
35
|
__exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
|
|
34
36
|
__exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
|
|
35
37
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
38
|
+
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
36
39
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
37
40
|
__exportStar(require("./payment-class"), exports);
|
|
38
41
|
__exportStar(require("./payment-method-class"), exports);
|
|
42
|
+
__exportStar(require("./payment-reminder-class"), exports);
|
|
39
43
|
__exportStar(require("./sepa-direct-dto"), exports);
|
|
40
44
|
__exportStar(require("./validate-pspconfig-request-dto"), exports);
|
|
41
45
|
__exportStar(require("./validate-pspconfig-response-class"), exports);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -16,9 +16,15 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface InitiateBraintreePaymentSetupRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* Lead code
|
|
19
|
+
* Lead code.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateBraintreePaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Account code.
|
|
20
26
|
* @type {string}
|
|
21
27
|
* @memberof InitiateBraintreePaymentSetupRequestDto
|
|
22
28
|
*/
|
|
23
|
-
'
|
|
29
|
+
'accountCode'?: string;
|
|
24
30
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -16,9 +16,15 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface InitiateStripePaymentSetupRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* Lead code
|
|
19
|
+
* Lead code.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateStripePaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Account code.
|
|
20
26
|
* @type {string}
|
|
21
27
|
* @memberof InitiateStripePaymentSetupRequestDto
|
|
22
28
|
*/
|
|
23
|
-
'
|
|
29
|
+
'accountCode'?: string;
|
|
24
30
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { PaymentReminderClass } from './payment-reminder-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPaymentRemindersResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPaymentRemindersResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The payment reminders
|
|
21
|
+
* @type {Array<PaymentReminderClass>}
|
|
22
|
+
* @memberof ListPaymentRemindersResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<PaymentReminderClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListPaymentRemindersResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -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 });
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -0,0 +1,108 @@
|
|
|
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 PaymentReminderClass
|
|
16
|
+
*/
|
|
17
|
+
export interface PaymentReminderClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PaymentReminderClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PaymentReminderClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of related policy.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PaymentReminderClass
|
|
34
|
+
*/
|
|
35
|
+
'policyCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of related account.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PaymentReminderClass
|
|
40
|
+
*/
|
|
41
|
+
'accountCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* Type of the invoice
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PaymentReminderClass
|
|
46
|
+
*/
|
|
47
|
+
'invoiceType': PaymentReminderClassInvoiceTypeEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Unique identifier of the payment for which the reminder happened.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PaymentReminderClass
|
|
52
|
+
*/
|
|
53
|
+
'paymentCode': PaymentReminderClassPaymentCodeEnum;
|
|
54
|
+
/**
|
|
55
|
+
* The stage of the reminder.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof PaymentReminderClass
|
|
58
|
+
*/
|
|
59
|
+
'reminderStage': number;
|
|
60
|
+
/**
|
|
61
|
+
* True if the reminder should be triggered on the next reminder date.
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof PaymentReminderClass
|
|
64
|
+
*/
|
|
65
|
+
'isActive': boolean;
|
|
66
|
+
/**
|
|
67
|
+
* When a reminder is set to inactive, a reason must be given.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PaymentReminderClass
|
|
70
|
+
*/
|
|
71
|
+
'updateReason': string;
|
|
72
|
+
/**
|
|
73
|
+
* Next date at which the reminder should be sent.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PaymentReminderClass
|
|
76
|
+
*/
|
|
77
|
+
'nextReminderDate': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was created.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PaymentReminderClass
|
|
82
|
+
*/
|
|
83
|
+
'createdAt': string;
|
|
84
|
+
/**
|
|
85
|
+
* Time at which the object was updated.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof PaymentReminderClass
|
|
88
|
+
*/
|
|
89
|
+
'updatedAt': string;
|
|
90
|
+
}
|
|
91
|
+
export declare const PaymentReminderClassInvoiceTypeEnum: {
|
|
92
|
+
readonly Initial: "initial";
|
|
93
|
+
readonly Recurring: "recurring";
|
|
94
|
+
readonly Correction: "correction";
|
|
95
|
+
readonly Estimated: "estimated";
|
|
96
|
+
readonly Penalty: "penalty";
|
|
97
|
+
readonly Other: "other";
|
|
98
|
+
};
|
|
99
|
+
export type PaymentReminderClassInvoiceTypeEnum = typeof PaymentReminderClassInvoiceTypeEnum[keyof typeof PaymentReminderClassInvoiceTypeEnum];
|
|
100
|
+
export declare const PaymentReminderClassPaymentCodeEnum: {
|
|
101
|
+
readonly Initial: "initial";
|
|
102
|
+
readonly Recurring: "recurring";
|
|
103
|
+
readonly Correction: "correction";
|
|
104
|
+
readonly Estimated: "estimated";
|
|
105
|
+
readonly Penalty: "penalty";
|
|
106
|
+
readonly Other: "other";
|
|
107
|
+
};
|
|
108
|
+
export type PaymentReminderClassPaymentCodeEnum = typeof PaymentReminderClassPaymentCodeEnum[keyof typeof PaymentReminderClassPaymentCodeEnum];
|
|
@@ -0,0 +1,32 @@
|
|
|
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 });
|
|
16
|
+
exports.PaymentReminderClassPaymentCodeEnum = exports.PaymentReminderClassInvoiceTypeEnum = void 0;
|
|
17
|
+
exports.PaymentReminderClassInvoiceTypeEnum = {
|
|
18
|
+
Initial: 'initial',
|
|
19
|
+
Recurring: 'recurring',
|
|
20
|
+
Correction: 'correction',
|
|
21
|
+
Estimated: 'estimated',
|
|
22
|
+
Penalty: 'penalty',
|
|
23
|
+
Other: 'other'
|
|
24
|
+
};
|
|
25
|
+
exports.PaymentReminderClassPaymentCodeEnum = {
|
|
26
|
+
Initial: 'initial',
|
|
27
|
+
Recurring: 'recurring',
|
|
28
|
+
Correction: 'correction',
|
|
29
|
+
Estimated: 'estimated',
|
|
30
|
+
Penalty: 'penalty',
|
|
31
|
+
Other: 'other'
|
|
32
|
+
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|