@emilgroup/customer-sdk 1.52.1-beta.7 → 1.56.1-beta.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/README.md +2 -2
- package/dist/models/claim-class.d.ts +6 -6
- package/dist/models/shared-create-payment-method-request-dto.d.ts +2 -0
- package/dist/models/shared-create-payment-method-request-dto.js +3 -1
- package/dist/models/shared-payment-method-response-class.d.ts +2 -0
- package/dist/models/shared-payment-method-response-class.js +3 -1
- package/models/claim-class.ts +6 -6
- package/models/shared-create-payment-method-request-dto.ts +3 -1
- package/models/shared-payment-method-response-class.ts +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/customer-sdk@1.
|
|
20
|
+
npm install @emilgroup/customer-sdk@1.56.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/customer-sdk@1.
|
|
24
|
+
yarn add @emilgroup/customer-sdk@1.56.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CustomersApi`.
|
|
@@ -63,12 +63,6 @@ export interface ClaimClass {
|
|
|
63
63
|
* @memberof ClaimClass
|
|
64
64
|
*/
|
|
65
65
|
'policyNumber': string;
|
|
66
|
-
/**
|
|
67
|
-
* The slug of the product that the claim is made against
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof ClaimClass
|
|
70
|
-
*/
|
|
71
|
-
'productSlug': string;
|
|
72
66
|
/**
|
|
73
67
|
* Unique identifier of the product that the claim is made against
|
|
74
68
|
* @type {number}
|
|
@@ -177,4 +171,10 @@ export interface ClaimClass {
|
|
|
177
171
|
* @memberof ClaimClass
|
|
178
172
|
*/
|
|
179
173
|
'claimPartners'?: Array<string>;
|
|
174
|
+
/**
|
|
175
|
+
* Applied deductibles for the claim.
|
|
176
|
+
* @type {Array<string>}
|
|
177
|
+
* @memberof ClaimClass
|
|
178
|
+
*/
|
|
179
|
+
'appliedDeductibles'?: Array<string>;
|
|
180
180
|
}
|
|
@@ -51,6 +51,8 @@ export interface SharedCreatePaymentMethodRequestDto {
|
|
|
51
51
|
}
|
|
52
52
|
export declare const SharedCreatePaymentMethodRequestDtoTypeEnum: {
|
|
53
53
|
readonly Sepa: "sepa";
|
|
54
|
+
readonly SepaDebit: "sepa_debit";
|
|
54
55
|
readonly Invoice: "invoice";
|
|
56
|
+
readonly BankTransfer: "bank_transfer";
|
|
55
57
|
};
|
|
56
58
|
export type SharedCreatePaymentMethodRequestDtoTypeEnum = typeof SharedCreatePaymentMethodRequestDtoTypeEnum[keyof typeof SharedCreatePaymentMethodRequestDtoTypeEnum];
|
|
@@ -16,5 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.SharedCreatePaymentMethodRequestDtoTypeEnum = void 0;
|
|
17
17
|
exports.SharedCreatePaymentMethodRequestDtoTypeEnum = {
|
|
18
18
|
Sepa: 'sepa',
|
|
19
|
-
|
|
19
|
+
SepaDebit: 'sepa_debit',
|
|
20
|
+
Invoice: 'invoice',
|
|
21
|
+
BankTransfer: 'bank_transfer'
|
|
20
22
|
};
|
|
@@ -51,6 +51,8 @@ export interface SharedPaymentMethodResponseClass {
|
|
|
51
51
|
}
|
|
52
52
|
export declare const SharedPaymentMethodResponseClassTypeEnum: {
|
|
53
53
|
readonly Sepa: "sepa";
|
|
54
|
+
readonly SepaDebit: "sepa_debit";
|
|
54
55
|
readonly Invoice: "invoice";
|
|
56
|
+
readonly BankTransfer: "bank_transfer";
|
|
55
57
|
};
|
|
56
58
|
export type SharedPaymentMethodResponseClassTypeEnum = typeof SharedPaymentMethodResponseClassTypeEnum[keyof typeof SharedPaymentMethodResponseClassTypeEnum];
|
|
@@ -16,5 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.SharedPaymentMethodResponseClassTypeEnum = void 0;
|
|
17
17
|
exports.SharedPaymentMethodResponseClassTypeEnum = {
|
|
18
18
|
Sepa: 'sepa',
|
|
19
|
-
|
|
19
|
+
SepaDebit: 'sepa_debit',
|
|
20
|
+
Invoice: 'invoice',
|
|
21
|
+
BankTransfer: 'bank_transfer'
|
|
20
22
|
};
|
package/models/claim-class.ts
CHANGED
|
@@ -68,12 +68,6 @@ export interface ClaimClass {
|
|
|
68
68
|
* @memberof ClaimClass
|
|
69
69
|
*/
|
|
70
70
|
'policyNumber': string;
|
|
71
|
-
/**
|
|
72
|
-
* The slug of the product that the claim is made against
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof ClaimClass
|
|
75
|
-
*/
|
|
76
|
-
'productSlug': string;
|
|
77
71
|
/**
|
|
78
72
|
* Unique identifier of the product that the claim is made against
|
|
79
73
|
* @type {number}
|
|
@@ -182,5 +176,11 @@ export interface ClaimClass {
|
|
|
182
176
|
* @memberof ClaimClass
|
|
183
177
|
*/
|
|
184
178
|
'claimPartners'?: Array<string>;
|
|
179
|
+
/**
|
|
180
|
+
* Applied deductibles for the claim.
|
|
181
|
+
* @type {Array<string>}
|
|
182
|
+
* @memberof ClaimClass
|
|
183
|
+
*/
|
|
184
|
+
'appliedDeductibles'?: Array<string>;
|
|
185
185
|
}
|
|
186
186
|
|
|
@@ -57,7 +57,9 @@ export interface SharedCreatePaymentMethodRequestDto {
|
|
|
57
57
|
|
|
58
58
|
export const SharedCreatePaymentMethodRequestDtoTypeEnum = {
|
|
59
59
|
Sepa: 'sepa',
|
|
60
|
-
|
|
60
|
+
SepaDebit: 'sepa_debit',
|
|
61
|
+
Invoice: 'invoice',
|
|
62
|
+
BankTransfer: 'bank_transfer'
|
|
61
63
|
} as const;
|
|
62
64
|
|
|
63
65
|
export type SharedCreatePaymentMethodRequestDtoTypeEnum = typeof SharedCreatePaymentMethodRequestDtoTypeEnum[keyof typeof SharedCreatePaymentMethodRequestDtoTypeEnum];
|
|
@@ -57,7 +57,9 @@ export interface SharedPaymentMethodResponseClass {
|
|
|
57
57
|
|
|
58
58
|
export const SharedPaymentMethodResponseClassTypeEnum = {
|
|
59
59
|
Sepa: 'sepa',
|
|
60
|
-
|
|
60
|
+
SepaDebit: 'sepa_debit',
|
|
61
|
+
Invoice: 'invoice',
|
|
62
|
+
BankTransfer: 'bank_transfer'
|
|
61
63
|
} as const;
|
|
62
64
|
|
|
63
65
|
export type SharedPaymentMethodResponseClassTypeEnum = typeof SharedPaymentMethodResponseClassTypeEnum[keyof typeof SharedPaymentMethodResponseClassTypeEnum];
|