@emilgroup/public-api-sdk-node 1.34.0 → 1.34.1
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 +2 -0
- package/README.md +2 -2
- package/api/documents-api.ts +40 -40
- package/api/products-api.ts +39 -39
- package/base.ts +47 -5
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/documents-api.d.ts +40 -40
- package/dist/api/documents-api.js +21 -21
- package/dist/api/products-api.d.ts +39 -39
- package/dist/api/products-api.js +21 -21
- package/dist/base.d.ts +11 -2
- package/dist/base.js +43 -4
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/dist/models/complete-eis-payment-setup-request-dto.d.ts +54 -0
- package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/get-public-psp-settings-response-class.d.ts +6 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/product-field-class.d.ts +24 -0
- package/models/complete-eis-payment-setup-request-dto.ts +60 -0
- package/models/complete-payment-setup-request-dto.ts +7 -0
- package/models/get-public-psp-settings-response-class.ts +6 -0
- package/models/index.ts +2 -0
- package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
- package/models/initiate-payment-setup-request-dto.ts +7 -0
- package/models/product-field-class.ts +24 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
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 CompleteEisPaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CompleteEisPaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Customer email address.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'email': string;
|
|
24
|
+
/**
|
|
25
|
+
* Customer first name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'firstName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Customer last name.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'lastName': string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the account that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'accountCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique identifier of the lead that this object belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'leadCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Unique identifier of the partner that this object belongs to.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'partnerCode'?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
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 });
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
|
|
13
13
|
import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
|
|
14
|
+
import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
|
|
14
15
|
import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
|
|
|
42
43
|
* @memberof CompletePaymentSetupRequestDto
|
|
43
44
|
*/
|
|
44
45
|
'adyen'?: CompleteAdyenPaymentSetupRequestDto;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {CompleteEisPaymentSetupRequestDto}
|
|
49
|
+
* @memberof CompletePaymentSetupRequestDto
|
|
50
|
+
*/
|
|
51
|
+
'eis'?: CompleteEisPaymentSetupRequestDto;
|
|
45
52
|
}
|
|
@@ -27,4 +27,10 @@ export interface GetPublicPspSettingsResponseClass {
|
|
|
27
27
|
* @memberof GetPublicPspSettingsResponseClass
|
|
28
28
|
*/
|
|
29
29
|
'psp': string;
|
|
30
|
+
/**
|
|
31
|
+
* Mapping of payment method to payment system provider.
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof GetPublicPspSettingsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'paymentMethodMapping': object;
|
|
30
36
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './calculate-product-fields-response-class';
|
|
|
7
7
|
export * from './card-details-dto';
|
|
8
8
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
9
9
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
10
|
+
export * from './complete-eis-payment-setup-request-dto';
|
|
10
11
|
export * from './complete-email-verification-dto';
|
|
11
12
|
export * from './complete-email-verification-response-class';
|
|
12
13
|
export * from './complete-payment-setup-request-dto';
|
|
@@ -36,6 +37,7 @@ export * from './initiate-adyen-payment-setup-request-dto';
|
|
|
36
37
|
export * from './initiate-adyen-payment-setup-response-class';
|
|
37
38
|
export * from './initiate-braintree-payment-setup-request-dto';
|
|
38
39
|
export * from './initiate-braintree-payment-setup-response-class';
|
|
40
|
+
export * from './initiate-eis-payment-setup-request-dto';
|
|
39
41
|
export * from './initiate-email-verification-dto';
|
|
40
42
|
export * from './initiate-email-verification-response-class';
|
|
41
43
|
export * from './initiate-lead-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -23,6 +23,7 @@ __exportStar(require("./calculate-product-fields-response-class"), exports);
|
|
|
23
23
|
__exportStar(require("./card-details-dto"), exports);
|
|
24
24
|
__exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
|
|
25
25
|
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
26
|
+
__exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
|
|
26
27
|
__exportStar(require("./complete-email-verification-dto"), exports);
|
|
27
28
|
__exportStar(require("./complete-email-verification-response-class"), exports);
|
|
28
29
|
__exportStar(require("./complete-payment-setup-request-dto"), exports);
|
|
@@ -52,6 +53,7 @@ __exportStar(require("./initiate-adyen-payment-setup-request-dto"), exports);
|
|
|
52
53
|
__exportStar(require("./initiate-adyen-payment-setup-response-class"), exports);
|
|
53
54
|
__exportStar(require("./initiate-braintree-payment-setup-request-dto"), exports);
|
|
54
55
|
__exportStar(require("./initiate-braintree-payment-setup-response-class"), exports);
|
|
56
|
+
__exportStar(require("./initiate-eis-payment-setup-request-dto"), exports);
|
|
55
57
|
__exportStar(require("./initiate-email-verification-dto"), exports);
|
|
56
58
|
__exportStar(require("./initiate-email-verification-response-class"), exports);
|
|
57
59
|
__exportStar(require("./initiate-lead-response-class"), exports);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
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 InitiateEisPaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateEisPaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the lead that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the account that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'accountCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode'?: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
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 });
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
|
|
13
13
|
import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
|
|
14
|
+
import { InitiateEisPaymentSetupRequestDto } from './initiate-eis-payment-setup-request-dto';
|
|
14
15
|
import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
@@ -42,4 +43,10 @@ export interface InitiatePaymentSetupRequestDto {
|
|
|
42
43
|
* @memberof InitiatePaymentSetupRequestDto
|
|
43
44
|
*/
|
|
44
45
|
'adyen'?: InitiateAdyenPaymentSetupRequestDto;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {InitiateEisPaymentSetupRequestDto}
|
|
49
|
+
* @memberof InitiatePaymentSetupRequestDto
|
|
50
|
+
*/
|
|
51
|
+
'eis'?: InitiateEisPaymentSetupRequestDto;
|
|
45
52
|
}
|
|
@@ -129,4 +129,28 @@ export interface ProductFieldClass {
|
|
|
129
129
|
* @memberof ProductFieldClass
|
|
130
130
|
*/
|
|
131
131
|
'order': number;
|
|
132
|
+
/**
|
|
133
|
+
* Is this field is used the premium calculation?
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof ProductFieldClass
|
|
136
|
+
*/
|
|
137
|
+
'usedInPremiumCalculation': boolean;
|
|
138
|
+
/**
|
|
139
|
+
* Overrides automatic dependency check result (if this field is used in the premium calculation or not).
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof ProductFieldClass
|
|
142
|
+
*/
|
|
143
|
+
'usedInPremiumCalculationOverride': string;
|
|
144
|
+
/**
|
|
145
|
+
* Is this field is used the product field calculation?
|
|
146
|
+
* @type {boolean}
|
|
147
|
+
* @memberof ProductFieldClass
|
|
148
|
+
*/
|
|
149
|
+
'usedInFieldCalculation': boolean;
|
|
150
|
+
/**
|
|
151
|
+
* Overrides automatic dependency check result (if this field is used in the product field calculation or not).
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof ProductFieldClass
|
|
154
|
+
*/
|
|
155
|
+
'usedInFieldCalculationOverride': string;
|
|
132
156
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public API description
|
|
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 CompleteEisPaymentSetupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CompleteEisPaymentSetupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Customer email address.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'email': string;
|
|
29
|
+
/**
|
|
30
|
+
* Customer first name.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'firstName': string;
|
|
35
|
+
/**
|
|
36
|
+
* Customer last name.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'lastName': string;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier of the account that this object belongs to.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'accountCode': string;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the lead that this object belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'leadCode'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Unique identifier of the partner that this object belongs to.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'partnerCode'?: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
|
|
17
17
|
import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
|
|
18
|
+
import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
|
|
18
19
|
import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
|
|
19
20
|
|
|
20
21
|
/**
|
|
@@ -47,5 +48,11 @@ export interface CompletePaymentSetupRequestDto {
|
|
|
47
48
|
* @memberof CompletePaymentSetupRequestDto
|
|
48
49
|
*/
|
|
49
50
|
'adyen'?: CompleteAdyenPaymentSetupRequestDto;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {CompleteEisPaymentSetupRequestDto}
|
|
54
|
+
* @memberof CompletePaymentSetupRequestDto
|
|
55
|
+
*/
|
|
56
|
+
'eis'?: CompleteEisPaymentSetupRequestDto;
|
|
50
57
|
}
|
|
51
58
|
|
|
@@ -32,5 +32,11 @@ export interface GetPublicPspSettingsResponseClass {
|
|
|
32
32
|
* @memberof GetPublicPspSettingsResponseClass
|
|
33
33
|
*/
|
|
34
34
|
'psp': string;
|
|
35
|
+
/**
|
|
36
|
+
* Mapping of payment method to payment system provider.
|
|
37
|
+
* @type {object}
|
|
38
|
+
* @memberof GetPublicPspSettingsResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'paymentMethodMapping': object;
|
|
35
41
|
}
|
|
36
42
|
|
package/models/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './calculate-product-fields-response-class';
|
|
|
7
7
|
export * from './card-details-dto';
|
|
8
8
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
9
9
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
10
|
+
export * from './complete-eis-payment-setup-request-dto';
|
|
10
11
|
export * from './complete-email-verification-dto';
|
|
11
12
|
export * from './complete-email-verification-response-class';
|
|
12
13
|
export * from './complete-payment-setup-request-dto';
|
|
@@ -36,6 +37,7 @@ export * from './initiate-adyen-payment-setup-request-dto';
|
|
|
36
37
|
export * from './initiate-adyen-payment-setup-response-class';
|
|
37
38
|
export * from './initiate-braintree-payment-setup-request-dto';
|
|
38
39
|
export * from './initiate-braintree-payment-setup-response-class';
|
|
40
|
+
export * from './initiate-eis-payment-setup-request-dto';
|
|
39
41
|
export * from './initiate-email-verification-dto';
|
|
40
42
|
export * from './initiate-email-verification-response-class';
|
|
41
43
|
export * from './initiate-lead-response-class';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public API description
|
|
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 InitiateEisPaymentSetupRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface InitiateEisPaymentSetupRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier of the lead that this object belongs to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'leadCode'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier of the account that this object belongs to.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'accountCode'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier of the partner that this object belongs to.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof InitiateEisPaymentSetupRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'partnerCode'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
|
|
17
17
|
import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
|
|
18
|
+
import { InitiateEisPaymentSetupRequestDto } from './initiate-eis-payment-setup-request-dto';
|
|
18
19
|
import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
|
|
19
20
|
|
|
20
21
|
/**
|
|
@@ -47,5 +48,11 @@ export interface InitiatePaymentSetupRequestDto {
|
|
|
47
48
|
* @memberof InitiatePaymentSetupRequestDto
|
|
48
49
|
*/
|
|
49
50
|
'adyen'?: InitiateAdyenPaymentSetupRequestDto;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {InitiateEisPaymentSetupRequestDto}
|
|
54
|
+
* @memberof InitiatePaymentSetupRequestDto
|
|
55
|
+
*/
|
|
56
|
+
'eis'?: InitiateEisPaymentSetupRequestDto;
|
|
50
57
|
}
|
|
51
58
|
|
|
@@ -134,5 +134,29 @@ export interface ProductFieldClass {
|
|
|
134
134
|
* @memberof ProductFieldClass
|
|
135
135
|
*/
|
|
136
136
|
'order': number;
|
|
137
|
+
/**
|
|
138
|
+
* Is this field is used the premium calculation?
|
|
139
|
+
* @type {boolean}
|
|
140
|
+
* @memberof ProductFieldClass
|
|
141
|
+
*/
|
|
142
|
+
'usedInPremiumCalculation': boolean;
|
|
143
|
+
/**
|
|
144
|
+
* Overrides automatic dependency check result (if this field is used in the premium calculation or not).
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof ProductFieldClass
|
|
147
|
+
*/
|
|
148
|
+
'usedInPremiumCalculationOverride': string;
|
|
149
|
+
/**
|
|
150
|
+
* Is this field is used the product field calculation?
|
|
151
|
+
* @type {boolean}
|
|
152
|
+
* @memberof ProductFieldClass
|
|
153
|
+
*/
|
|
154
|
+
'usedInFieldCalculation': boolean;
|
|
155
|
+
/**
|
|
156
|
+
* Overrides automatic dependency check result (if this field is used in the product field calculation or not).
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof ProductFieldClass
|
|
159
|
+
*/
|
|
160
|
+
'usedInFieldCalculationOverride': string;
|
|
137
161
|
}
|
|
138
162
|
|
package/package.json
CHANGED