@emilgroup/customer-sdk 1.54.0 → 1.56.1-beta.3
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 -0
- package/dist/models/list-customer-claims-response-class.d.ts +12 -0
- 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 -0
- package/models/list-customer-claims-response-class.ts +12 -0
- package/models/shared-create-payment-method-request-dto.ts +3 -1
- package/models/shared-payment-method-response-class.ts +3 -1
- package/package.json +2 -2
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.3 --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.3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CustomersApi`.
|
|
@@ -171,4 +171,10 @@ export interface ClaimClass {
|
|
|
171
171
|
* @memberof ClaimClass
|
|
172
172
|
*/
|
|
173
173
|
'claimPartners'?: Array<string>;
|
|
174
|
+
/**
|
|
175
|
+
* Applied deductibles for the claim.
|
|
176
|
+
* @type {Array<string>}
|
|
177
|
+
* @memberof ClaimClass
|
|
178
|
+
*/
|
|
179
|
+
'appliedDeductibles'?: Array<string>;
|
|
174
180
|
}
|
|
@@ -28,4 +28,16 @@ export interface ListCustomerClaimsResponseClass {
|
|
|
28
28
|
* @memberof ListCustomerClaimsResponseClass
|
|
29
29
|
*/
|
|
30
30
|
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Total items
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListCustomerClaimsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'totalItems': number;
|
|
37
|
+
/**
|
|
38
|
+
* Items per page
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListCustomerClaimsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'itemsPerPage': number;
|
|
31
43
|
}
|
|
@@ -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
|
@@ -176,5 +176,11 @@ export interface ClaimClass {
|
|
|
176
176
|
* @memberof ClaimClass
|
|
177
177
|
*/
|
|
178
178
|
'claimPartners'?: Array<string>;
|
|
179
|
+
/**
|
|
180
|
+
* Applied deductibles for the claim.
|
|
181
|
+
* @type {Array<string>}
|
|
182
|
+
* @memberof ClaimClass
|
|
183
|
+
*/
|
|
184
|
+
'appliedDeductibles'?: Array<string>;
|
|
179
185
|
}
|
|
180
186
|
|
|
@@ -33,5 +33,17 @@ export interface ListCustomerClaimsResponseClass {
|
|
|
33
33
|
* @memberof ListCustomerClaimsResponseClass
|
|
34
34
|
*/
|
|
35
35
|
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Total items
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListCustomerClaimsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'totalItems': number;
|
|
42
|
+
/**
|
|
43
|
+
* Items per page
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListCustomerClaimsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'itemsPerPage': number;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -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];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/customer-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.56.1-beta.3",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/customer-sdk",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"prepare": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"axios": "
|
|
21
|
+
"axios": "1.12.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
|