@emilgroup/customer-sdk 1.54.0 → 1.56.1-beta.11

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 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.54.0 --save
20
+ npm install @emilgroup/customer-sdk@1.56.1-beta.11 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/customer-sdk@1.54.0
24
+ yarn add @emilgroup/customer-sdk@1.56.1-beta.11
25
25
  ```
26
26
 
27
27
  And then you can import `CustomersApi`.
package/base.ts CHANGED
@@ -43,6 +43,7 @@ export enum Environment {
43
43
  Staging = 'https://apiv2-staging.emil.de',
44
44
  Development = 'https://apiv2-dev.emil.de',
45
45
  ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
46
+ StagingZurich = 'https://eu-central-2.apiv2-staging.emil.de',
46
47
  }
47
48
 
48
49
  let _retry_count = 0
package/dist/base.d.ts CHANGED
@@ -32,7 +32,8 @@ export declare enum Environment {
32
32
  Test = "https://apiv2-test.emil.de",
33
33
  Staging = "https://apiv2-staging.emil.de",
34
34
  Development = "https://apiv2-dev.emil.de",
35
- ProductionZurich = "https://eu-central-2.apiv2.emil.de"
35
+ ProductionZurich = "https://eu-central-2.apiv2.emil.de",
36
+ StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
36
37
  }
37
38
  export declare function resetRetry(): void;
38
39
  /**
package/dist/base.js CHANGED
@@ -102,6 +102,7 @@ var Environment;
102
102
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
103
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
104
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
+ Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
105
106
  })(Environment = exports.Environment || (exports.Environment = {}));
106
107
  var _retry_count = 0;
107
108
  var _retry = null;
@@ -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
- Invoice: 'invoice'
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
- Invoice: 'invoice'
19
+ SepaDebit: 'sepa_debit',
20
+ Invoice: 'invoice',
21
+ BankTransfer: 'bank_transfer'
20
22
  };
@@ -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
- Invoice: 'invoice'
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
- Invoice: 'invoice'
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.54.0",
3
+ "version": "1.56.1-beta.11",
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": "^1.12.0"
21
+ "axios": "1.12.0"
22
22
  },
23
23
  "devDependencies": {
24
24