@emilgroup/public-api-sdk-node 1.27.1 → 1.28.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.
Files changed (79) hide show
  1. package/.openapi-generator/FILES +9 -0
  2. package/README.md +2 -2
  3. package/api/booking-funnels-api.ts +165 -0
  4. package/api/documents-api.ts +36 -22
  5. package/api/leads-api.ts +4 -4
  6. package/api/named-ranges-api.ts +254 -0
  7. package/api/products-api.ts +65 -38
  8. package/api.ts +4 -0
  9. package/dist/api/booking-funnels-api.d.ts +96 -0
  10. package/dist/api/booking-funnels-api.js +227 -0
  11. package/dist/api/documents-api.d.ts +28 -19
  12. package/dist/api/documents-api.js +26 -20
  13. package/dist/api/leads-api.d.ts +4 -4
  14. package/dist/api/leads-api.js +4 -4
  15. package/dist/api/named-ranges-api.d.ts +150 -0
  16. package/dist/api/named-ranges-api.js +267 -0
  17. package/dist/api/products-api.d.ts +49 -31
  18. package/dist/api/products-api.js +47 -36
  19. package/dist/api.d.ts +2 -0
  20. package/dist/api.js +2 -0
  21. package/dist/models/address-field-score-class.d.ts +10 -10
  22. package/dist/models/booking-funnel-class.d.ts +90 -0
  23. package/dist/models/booking-funnel-class.js +15 -0
  24. package/dist/models/create-account-request-dto.d.ts +1 -1
  25. package/dist/models/create-account-request-dto.js +1 -1
  26. package/dist/models/create-document-request-dto.d.ts +2 -2
  27. package/dist/models/create-lead-request-dto.d.ts +13 -1
  28. package/dist/models/create-presigned-post-request-dto.d.ts +2 -2
  29. package/dist/models/document-class.d.ts +1 -1
  30. package/dist/models/filter-named-range-response-class.d.ts +42 -0
  31. package/dist/models/filter-named-range-response-class.js +15 -0
  32. package/dist/models/get-booking-funnel-response-class.d.ts +25 -0
  33. package/dist/models/get-booking-funnel-response-class.js +15 -0
  34. package/dist/models/index.d.ts +7 -0
  35. package/dist/models/index.js +7 -0
  36. package/dist/models/initiate-email-verification-dto.d.ts +1 -1
  37. package/dist/models/insured-object-type-class.d.ts +1 -1
  38. package/dist/models/lead-account-class.d.ts +1 -1
  39. package/dist/models/lead-account-class.js +1 -1
  40. package/dist/models/lead-class.d.ts +7 -0
  41. package/dist/models/lead-policy-object-class.d.ts +2 -2
  42. package/dist/models/partner-class.d.ts +60 -0
  43. package/dist/models/partner-class.js +15 -0
  44. package/dist/models/partner-link-class.d.ts +86 -0
  45. package/dist/models/partner-link-class.js +15 -0
  46. package/dist/models/partner-role-class.d.ts +54 -0
  47. package/dist/models/partner-role-class.js +15 -0
  48. package/dist/models/product-class.d.ts +1 -1
  49. package/dist/models/product-document-class.d.ts +14 -2
  50. package/dist/models/product-factor-for-version-class.d.ts +4 -3
  51. package/dist/models/product-factor-value-for-version-class.d.ts +42 -0
  52. package/dist/models/product-factor-value-for-version-class.js +15 -0
  53. package/dist/models/send-notification-request-dto.d.ts +1 -1
  54. package/dist/models/update-lead-request-dto.d.ts +1 -1
  55. package/models/address-field-score-class.ts +10 -10
  56. package/models/booking-funnel-class.ts +96 -0
  57. package/models/create-account-request-dto.ts +1 -1
  58. package/models/create-document-request-dto.ts +2 -2
  59. package/models/create-lead-request-dto.ts +13 -1
  60. package/models/create-presigned-post-request-dto.ts +2 -2
  61. package/models/document-class.ts +1 -1
  62. package/models/filter-named-range-response-class.ts +48 -0
  63. package/models/get-booking-funnel-response-class.ts +31 -0
  64. package/models/index.ts +7 -0
  65. package/models/initiate-email-verification-dto.ts +1 -1
  66. package/models/insured-object-type-class.ts +1 -1
  67. package/models/lead-account-class.ts +1 -1
  68. package/models/lead-class.ts +7 -0
  69. package/models/lead-policy-object-class.ts +2 -2
  70. package/models/partner-class.ts +66 -0
  71. package/models/partner-link-class.ts +92 -0
  72. package/models/partner-role-class.ts +60 -0
  73. package/models/product-class.ts +1 -1
  74. package/models/product-document-class.ts +14 -2
  75. package/models/product-factor-for-version-class.ts +4 -3
  76. package/models/product-factor-value-for-version-class.ts +48 -0
  77. package/models/send-notification-request-dto.ts +1 -1
  78. package/models/update-lead-request-dto.ts +1 -1
  79. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
1
  export * from './address-completion-item-class';
2
2
  export * from './address-completion-response-class';
3
3
  export * from './address-field-score-class';
4
+ export * from './booking-funnel-class';
4
5
  export * from './calculate-product-fields-request-dto';
5
6
  export * from './calculate-product-fields-response-class';
6
7
  export * from './complete-braintree-payment-setup-request-dto';
@@ -23,6 +24,8 @@ export * from './create-payment-method-request-dto';
23
24
  export * from './create-presigned-post-request-dto';
24
25
  export * from './create-presigned-post-response-class';
25
26
  export * from './document-class';
27
+ export * from './filter-named-range-response-class';
28
+ export * from './get-booking-funnel-response-class';
26
29
  export * from './get-custom-css-response-class';
27
30
  export * from './get-lead-response-class';
28
31
  export * from './get-product-document-download-url-response-class';
@@ -51,6 +54,9 @@ export * from './lead-policy-object-class';
51
54
  export * from './list-documents-response-class';
52
55
  export * from './list-product-documents-response-class';
53
56
  export * from './list-products-response-class';
57
+ export * from './partner-class';
58
+ export * from './partner-link-class';
59
+ export * from './partner-role-class';
54
60
  export * from './payment-method-class';
55
61
  export * from './policy-object-request-dto';
56
62
  export * from './policy-object-response-class';
@@ -59,6 +65,7 @@ export * from './premium-override-request-dto';
59
65
  export * from './product-class';
60
66
  export * from './product-document-class';
61
67
  export * from './product-factor-for-version-class';
68
+ export * from './product-factor-value-for-version-class';
62
69
  export * from './product-field-class';
63
70
  export * from './product-version-class';
64
71
  export * from './send-notification-request-dto';
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./address-completion-item-class"), exports);
18
18
  __exportStar(require("./address-completion-response-class"), exports);
19
19
  __exportStar(require("./address-field-score-class"), exports);
20
+ __exportStar(require("./booking-funnel-class"), exports);
20
21
  __exportStar(require("./calculate-product-fields-request-dto"), exports);
21
22
  __exportStar(require("./calculate-product-fields-response-class"), exports);
22
23
  __exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
@@ -39,6 +40,8 @@ __exportStar(require("./create-payment-method-request-dto"), exports);
39
40
  __exportStar(require("./create-presigned-post-request-dto"), exports);
40
41
  __exportStar(require("./create-presigned-post-response-class"), exports);
41
42
  __exportStar(require("./document-class"), exports);
43
+ __exportStar(require("./filter-named-range-response-class"), exports);
44
+ __exportStar(require("./get-booking-funnel-response-class"), exports);
42
45
  __exportStar(require("./get-custom-css-response-class"), exports);
43
46
  __exportStar(require("./get-lead-response-class"), exports);
44
47
  __exportStar(require("./get-product-document-download-url-response-class"), exports);
@@ -67,6 +70,9 @@ __exportStar(require("./lead-policy-object-class"), exports);
67
70
  __exportStar(require("./list-documents-response-class"), exports);
68
71
  __exportStar(require("./list-product-documents-response-class"), exports);
69
72
  __exportStar(require("./list-products-response-class"), exports);
73
+ __exportStar(require("./partner-class"), exports);
74
+ __exportStar(require("./partner-link-class"), exports);
75
+ __exportStar(require("./partner-role-class"), exports);
70
76
  __exportStar(require("./payment-method-class"), exports);
71
77
  __exportStar(require("./policy-object-request-dto"), exports);
72
78
  __exportStar(require("./policy-object-response-class"), exports);
@@ -75,6 +81,7 @@ __exportStar(require("./premium-override-request-dto"), exports);
75
81
  __exportStar(require("./product-class"), exports);
76
82
  __exportStar(require("./product-document-class"), exports);
77
83
  __exportStar(require("./product-factor-for-version-class"), exports);
84
+ __exportStar(require("./product-factor-value-for-version-class"), exports);
78
85
  __exportStar(require("./product-field-class"), exports);
79
86
  __exportStar(require("./product-version-class"), exports);
80
87
  __exportStar(require("./send-notification-request-dto"), exports);
@@ -22,7 +22,7 @@ export interface InitiateEmailVerificationDto {
22
22
  */
23
23
  'email': string;
24
24
  /**
25
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
25
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
26
26
  * @type {string}
27
27
  * @memberof InitiateEmailVerificationDto
28
28
  */
@@ -28,7 +28,7 @@ export interface InsuredObjectTypeClass {
28
28
  */
29
29
  'name': string;
30
30
  /**
31
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
31
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
32
32
  * @type {string}
33
33
  * @memberof InsuredObjectTypeClass
34
34
  */
@@ -104,6 +104,6 @@ export declare const LeadAccountClassTitleEnum: {
104
104
  readonly Empty: "";
105
105
  readonly Dr: "Dr.";
106
106
  readonly DrMed: "Dr. med.";
107
- readonly ProfDrMed: "Prof. Dr. med.";
107
+ readonly Prof: "Prof.";
108
108
  };
109
109
  export type LeadAccountClassTitleEnum = typeof LeadAccountClassTitleEnum[keyof typeof LeadAccountClassTitleEnum];
@@ -18,5 +18,5 @@ exports.LeadAccountClassTitleEnum = {
18
18
  Empty: '',
19
19
  Dr: 'Dr.',
20
20
  DrMed: 'Dr. med.',
21
- ProfDrMed: 'Prof. Dr. med.'
21
+ Prof: 'Prof.'
22
22
  };
@@ -14,6 +14,7 @@ import { InvoiceClass } from './invoice-class';
14
14
  import { LeadAccountClass } from './lead-account-class';
15
15
  import { LeadBankAccountClass } from './lead-bank-account-class';
16
16
  import { LeadPolicyClass } from './lead-policy-class';
17
+ import { PartnerLinkClass } from './partner-link-class';
17
18
  import { PremiumOverrideDto } from './premium-override-dto';
18
19
  import { UploadedDocumentDto } from './uploaded-document-dto';
19
20
  /**
@@ -94,6 +95,12 @@ export interface LeadClass {
94
95
  * @memberof LeadClass
95
96
  */
96
97
  'paymentMethod': CreatePaymentMethodRequestDto;
98
+ /**
99
+ * Partner links.
100
+ * @type {PartnerLinkClass}
101
+ * @memberof LeadClass
102
+ */
103
+ 'partnerLinks': PartnerLinkClass;
97
104
  /**
98
105
  * Time at which the object was created.
99
106
  * @type {string}
@@ -23,10 +23,10 @@ export interface LeadPolicyObjectClass {
23
23
  'insuredObjectId': number;
24
24
  /**
25
25
  * Insured object name.
26
- * @type {object}
26
+ * @type {string}
27
27
  * @memberof LeadPolicyObjectClass
28
28
  */
29
- 'insuredObjectName'?: object;
29
+ 'insuredObjectName'?: string;
30
30
  /**
31
31
  * Insured object data.
32
32
  * @type {object}
@@ -0,0 +1,60 @@
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 PartnerClass
16
+ */
17
+ export interface PartnerClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof PartnerClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof PartnerClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Unique identifier referencing the partner type.
32
+ * @type {number}
33
+ * @memberof PartnerClass
34
+ */
35
+ 'partnerTypeId': number;
36
+ /**
37
+ * For person partner type displayName is a combination if firstname and lastname. For organization its organization name.
38
+ * @type {string}
39
+ * @memberof PartnerClass
40
+ */
41
+ 'displayName': string;
42
+ /**
43
+ * The partner object, based on partner schema.
44
+ * @type {object}
45
+ * @memberof PartnerClass
46
+ */
47
+ 'partner'?: object;
48
+ /**
49
+ * The version number of the partner
50
+ * @type {number}
51
+ * @memberof PartnerClass
52
+ */
53
+ 'version'?: number;
54
+ /**
55
+ * Last user who updated the entity
56
+ * @type {string}
57
+ * @memberof PartnerClass
58
+ */
59
+ 'updatedBy'?: string;
60
+ }
@@ -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 });
@@ -0,0 +1,86 @@
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
+ import { PartnerClass } from './partner-class';
13
+ import { PartnerRoleClass } from './partner-role-class';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PartnerLinkClass
18
+ */
19
+ export interface PartnerLinkClass {
20
+ /**
21
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
22
+ * @type {number}
23
+ * @memberof PartnerLinkClass
24
+ */
25
+ 'id': number;
26
+ /**
27
+ * Unique identifier of the partner that this object belongs to.
28
+ * @type {string}
29
+ * @memberof PartnerLinkClass
30
+ */
31
+ 'partnerCode': string;
32
+ /**
33
+ * Unique identifier of the partner role that this object belongs to.
34
+ * @type {string}
35
+ * @memberof PartnerLinkClass
36
+ */
37
+ 'partnerRoleCode': string;
38
+ /**
39
+ * Unique identifier of the policy that this object belongs to.
40
+ * @type {string}
41
+ * @memberof PartnerLinkClass
42
+ */
43
+ 'policyCode'?: string;
44
+ /**
45
+ * Unique identifier of the lead that this object belongs to.
46
+ * @type {string}
47
+ * @memberof PartnerLinkClass
48
+ */
49
+ 'leadCode'?: string;
50
+ /**
51
+ * Date from which the partner should be linked.
52
+ * @type {string}
53
+ * @memberof PartnerLinkClass
54
+ */
55
+ 'startDate': string;
56
+ /**
57
+ * Date to which the partner should be linked.
58
+ * @type {string}
59
+ * @memberof PartnerLinkClass
60
+ */
61
+ 'endDate'?: string;
62
+ /**
63
+ * Partner role
64
+ * @type {PartnerRoleClass}
65
+ * @memberof PartnerLinkClass
66
+ */
67
+ 'partnerRole'?: PartnerRoleClass;
68
+ /**
69
+ * Partner
70
+ * @type {PartnerClass}
71
+ * @memberof PartnerLinkClass
72
+ */
73
+ 'partner'?: PartnerClass;
74
+ /**
75
+ * Time at which the object was created.
76
+ * @type {string}
77
+ * @memberof PartnerLinkClass
78
+ */
79
+ 'createdAt': string;
80
+ /**
81
+ * Time at which the object was updated.
82
+ * @type {string}
83
+ * @memberof PartnerLinkClass
84
+ */
85
+ 'updatedAt': string;
86
+ }
@@ -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 });
@@ -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 PartnerRoleClass
16
+ */
17
+ export interface PartnerRoleClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof PartnerRoleClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof PartnerRoleClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Name of the partner role.
32
+ * @type {string}
33
+ * @memberof PartnerRoleClass
34
+ */
35
+ 'name': string;
36
+ /**
37
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
38
+ * @type {string}
39
+ * @memberof PartnerRoleClass
40
+ */
41
+ 'productSlug'?: string;
42
+ /**
43
+ * Time at which the object was created.
44
+ * @type {string}
45
+ * @memberof PartnerRoleClass
46
+ */
47
+ 'createdAt': string;
48
+ /**
49
+ * Time at which the object was updated.
50
+ * @type {string}
51
+ * @memberof PartnerRoleClass
52
+ */
53
+ 'updatedAt': 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 });
@@ -36,7 +36,7 @@ export interface ProductClass {
36
36
  */
37
37
  'name': string;
38
38
  /**
39
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
39
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
40
40
  * @type {string}
41
41
  * @memberof ProductClass
42
42
  */
@@ -64,13 +64,13 @@ export interface ProductDocumentClass {
64
64
  */
65
65
  'contentType': ProductDocumentClassContentTypeEnum;
66
66
  /**
67
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
67
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
68
68
  * @type {string}
69
69
  * @memberof ProductDocumentClass
70
70
  */
71
71
  'productSlug': string;
72
72
  /**
73
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
73
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
74
74
  * @type {string}
75
75
  * @memberof ProductDocumentClass
76
76
  */
@@ -81,6 +81,18 @@ export interface ProductDocumentClass {
81
81
  * @memberof ProductDocumentClass
82
82
  */
83
83
  'versionNumber': number;
84
+ /**
85
+ * The file name of the document.
86
+ * @type {string}
87
+ * @memberof ProductDocumentClass
88
+ */
89
+ 'filename': string;
90
+ /**
91
+ * The entity type of the document.
92
+ * @type {string}
93
+ * @memberof ProductDocumentClass
94
+ */
95
+ 'entityType': string;
84
96
  /**
85
97
  * Time at which the object was created.
86
98
  * @type {string}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ProductFactorValueForVersionClass } from './product-factor-value-for-version-class';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -52,9 +53,9 @@ export interface ProductFactorForVersionClass {
52
53
  */
53
54
  'updatedAt': string;
54
55
  /**
55
- * Factor values.
56
- * @type {Array<string>}
56
+ * The list of productFactorValues.
57
+ * @type {Array<ProductFactorValueForVersionClass>}
57
58
  * @memberof ProductFactorForVersionClass
58
59
  */
59
- 'values': Array<string>;
60
+ 'values': Array<ProductFactorValueForVersionClass>;
60
61
  }
@@ -0,0 +1,42 @@
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 ProductFactorValueForVersionClass
16
+ */
17
+ export interface ProductFactorValueForVersionClass {
18
+ /**
19
+ * Product factor id.
20
+ * @type {number}
21
+ * @memberof ProductFactorValueForVersionClass
22
+ */
23
+ 'productFactorId': number;
24
+ /**
25
+ * Product factor name.
26
+ * @type {string}
27
+ * @memberof ProductFactorValueForVersionClass
28
+ */
29
+ 'name': string;
30
+ /**
31
+ * Product factor key.
32
+ * @type {string}
33
+ * @memberof ProductFactorValueForVersionClass
34
+ */
35
+ 'key': string;
36
+ /**
37
+ * Product factor value.
38
+ * @type {number}
39
+ * @memberof ProductFactorValueForVersionClass
40
+ */
41
+ 'value': number;
42
+ }
@@ -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 });
@@ -16,7 +16,7 @@
16
16
  */
17
17
  export interface SendNotificationRequestDto {
18
18
  /**
19
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
19
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
20
20
  * @type {string}
21
21
  * @memberof SendNotificationRequestDto
22
22
  */
@@ -39,7 +39,7 @@ export interface UpdateLeadRequestDto {
39
39
  */
40
40
  'productCode'?: string;
41
41
  /**
42
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
42
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
43
43
  * @type {string}
44
44
  * @memberof UpdateLeadRequestDto
45
45
  */
@@ -22,33 +22,33 @@
22
22
  export interface AddressFieldScoreClass {
23
23
  /**
24
24
  * Score for the city field
25
- * @type {object}
25
+ * @type {number}
26
26
  * @memberof AddressFieldScoreClass
27
27
  */
28
- 'city'?: object;
28
+ 'city'?: number;
29
29
  /**
30
30
  * Score for the city field
31
- * @type {object}
31
+ * @type {number}
32
32
  * @memberof AddressFieldScoreClass
33
33
  */
34
- 'country'?: object;
34
+ 'country'?: number;
35
35
  /**
36
36
  * Score for the city field
37
- * @type {object}
37
+ * @type {number}
38
38
  * @memberof AddressFieldScoreClass
39
39
  */
40
- 'houseNumber'?: object;
40
+ 'houseNumber'?: number;
41
41
  /**
42
42
  * Score for the city field
43
- * @type {object}
43
+ * @type {number}
44
44
  * @memberof AddressFieldScoreClass
45
45
  */
46
- 'postalCode'?: object;
46
+ 'postalCode'?: number;
47
47
  /**
48
48
  * Score for the city field
49
- * @type {object}
49
+ * @type {number}
50
50
  * @memberof AddressFieldScoreClass
51
51
  */
52
- 'street'?: object;
52
+ 'street'?: number;
53
53
  }
54
54