@emilgroup/partner-portal-sdk 1.0.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.
Files changed (133) hide show
  1. package/.openapi-generator/FILES +49 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +51 -0
  5. package/api/health-check-api.ts +124 -0
  6. package/api/intermediary-api.ts +1222 -0
  7. package/api.ts +29 -0
  8. package/base.ts +278 -0
  9. package/common.ts +198 -0
  10. package/configuration.ts +101 -0
  11. package/dist/api/health-check-api.d.ts +70 -0
  12. package/dist/api/health-check-api.js +200 -0
  13. package/dist/api/intermediary-api.d.ts +704 -0
  14. package/dist/api/intermediary-api.js +1015 -0
  15. package/dist/api.d.ts +13 -0
  16. package/dist/api.js +31 -0
  17. package/dist/base.d.ts +77 -0
  18. package/dist/base.js +321 -0
  19. package/dist/common.d.ts +91 -0
  20. package/dist/common.js +276 -0
  21. package/dist/configuration.d.ts +83 -0
  22. package/dist/configuration.js +44 -0
  23. package/dist/index.d.ts +15 -0
  24. package/dist/index.js +36 -0
  25. package/dist/models/account-class.d.ts +176 -0
  26. package/dist/models/account-class.js +22 -0
  27. package/dist/models/account-policy-class.d.ts +147 -0
  28. package/dist/models/account-policy-class.js +15 -0
  29. package/dist/models/create-payment-method-request-dto.d.ts +31 -0
  30. package/dist/models/create-payment-method-request-dto.js +15 -0
  31. package/dist/models/create-policy-request-dto.d.ts +55 -0
  32. package/dist/models/create-policy-request-dto.js +15 -0
  33. package/dist/models/index.d.ts +34 -0
  34. package/dist/models/index.js +50 -0
  35. package/dist/models/inline-response200.d.ts +54 -0
  36. package/dist/models/inline-response200.js +15 -0
  37. package/dist/models/inline-response503.d.ts +54 -0
  38. package/dist/models/inline-response503.js +15 -0
  39. package/dist/models/insured-object-type-class.d.ts +60 -0
  40. package/dist/models/insured-object-type-class.js +15 -0
  41. package/dist/models/invoice-class.d.ts +150 -0
  42. package/dist/models/invoice-class.js +30 -0
  43. package/dist/models/invoice-item-class.d.ts +117 -0
  44. package/dist/models/invoice-item-class.js +24 -0
  45. package/dist/models/invoice-status-class.d.ts +47 -0
  46. package/dist/models/invoice-status-class.js +20 -0
  47. package/dist/models/lead-bank-account-class.d.ts +30 -0
  48. package/dist/models/lead-bank-account-class.js +15 -0
  49. package/dist/models/lead-class.d.ts +157 -0
  50. package/dist/models/lead-class.js +15 -0
  51. package/dist/models/list-accounts-response-class.d.ts +31 -0
  52. package/dist/models/list-accounts-response-class.js +15 -0
  53. package/dist/models/list-leads-response-class.d.ts +43 -0
  54. package/dist/models/list-leads-response-class.js +15 -0
  55. package/dist/models/list-partners-response-class.d.ts +31 -0
  56. package/dist/models/list-partners-response-class.js +15 -0
  57. package/dist/models/list-policies-response-class.d.ts +43 -0
  58. package/dist/models/list-policies-response-class.js +15 -0
  59. package/dist/models/omit-type-class.d.ts +84 -0
  60. package/dist/models/omit-type-class.js +15 -0
  61. package/dist/models/partner-class.d.ts +103 -0
  62. package/dist/models/partner-class.js +15 -0
  63. package/dist/models/partner-link-class.d.ts +98 -0
  64. package/dist/models/partner-link-class.js +15 -0
  65. package/dist/models/partner-role-class.d.ts +72 -0
  66. package/dist/models/partner-role-class.js +15 -0
  67. package/dist/models/policy-class.d.ts +147 -0
  68. package/dist/models/policy-class.js +15 -0
  69. package/dist/models/policy-object-class.d.ts +84 -0
  70. package/dist/models/policy-object-class.js +15 -0
  71. package/dist/models/policy-premium-class.d.ts +61 -0
  72. package/dist/models/policy-premium-class.js +15 -0
  73. package/dist/models/policy-premium-item-class.d.ts +67 -0
  74. package/dist/models/policy-premium-item-class.js +15 -0
  75. package/dist/models/policy-version-class.d.ts +79 -0
  76. package/dist/models/policy-version-class.js +15 -0
  77. package/dist/models/premium-formula-class.d.ts +108 -0
  78. package/dist/models/premium-formula-class.js +15 -0
  79. package/dist/models/premium-override-dto.d.ts +55 -0
  80. package/dist/models/premium-override-dto.js +27 -0
  81. package/dist/models/premium-override-request-dto.d.ts +25 -0
  82. package/dist/models/premium-override-request-dto.js +15 -0
  83. package/dist/models/product-class.d.ts +92 -0
  84. package/dist/models/product-class.js +15 -0
  85. package/dist/models/product-version-class.d.ts +73 -0
  86. package/dist/models/product-version-class.js +22 -0
  87. package/dist/models/sepa-dto.d.ts +30 -0
  88. package/dist/models/sepa-dto.js +15 -0
  89. package/dist/models/tag-class.d.ts +54 -0
  90. package/dist/models/tag-class.js +15 -0
  91. package/dist/models/timeslice-class.d.ts +74 -0
  92. package/dist/models/timeslice-class.js +15 -0
  93. package/dist/models/uploaded-document-dto.d.ts +24 -0
  94. package/dist/models/uploaded-document-dto.js +15 -0
  95. package/git_push.sh +57 -0
  96. package/index.ts +19 -0
  97. package/models/account-class.ts +185 -0
  98. package/models/account-policy-class.ts +153 -0
  99. package/models/create-payment-method-request-dto.ts +37 -0
  100. package/models/create-policy-request-dto.ts +61 -0
  101. package/models/index.ts +34 -0
  102. package/models/inline-response200.ts +48 -0
  103. package/models/inline-response503.ts +48 -0
  104. package/models/insured-object-type-class.ts +66 -0
  105. package/models/invoice-class.ts +160 -0
  106. package/models/invoice-item-class.ts +126 -0
  107. package/models/invoice-status-class.ts +56 -0
  108. package/models/lead-bank-account-class.ts +36 -0
  109. package/models/lead-class.ts +163 -0
  110. package/models/list-accounts-response-class.ts +37 -0
  111. package/models/list-leads-response-class.ts +49 -0
  112. package/models/list-partners-response-class.ts +37 -0
  113. package/models/list-policies-response-class.ts +49 -0
  114. package/models/omit-type-class.ts +90 -0
  115. package/models/partner-class.ts +109 -0
  116. package/models/partner-link-class.ts +104 -0
  117. package/models/partner-role-class.ts +78 -0
  118. package/models/policy-class.ts +153 -0
  119. package/models/policy-object-class.ts +90 -0
  120. package/models/policy-premium-class.ts +67 -0
  121. package/models/policy-premium-item-class.ts +73 -0
  122. package/models/policy-version-class.ts +85 -0
  123. package/models/premium-formula-class.ts +114 -0
  124. package/models/premium-override-dto.ts +65 -0
  125. package/models/premium-override-request-dto.ts +31 -0
  126. package/models/product-class.ts +98 -0
  127. package/models/product-version-class.ts +82 -0
  128. package/models/sepa-dto.ts +36 -0
  129. package/models/tag-class.ts +60 -0
  130. package/models/timeslice-class.ts +80 -0
  131. package/models/uploaded-document-dto.ts +30 -0
  132. package/package.json +26 -0
  133. package/tsconfig.json +22 -0
@@ -0,0 +1,147 @@
1
+ /**
2
+ * EMIL PartnerPortal
3
+ * The EMIL PartnerPortal 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 { PartnerLinkClass } from './partner-link-class';
13
+ import { PolicyVersionClass } from './policy-version-class';
14
+ import { ProductClass } from './product-class';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface AccountPolicyClass
19
+ */
20
+ export interface AccountPolicyClass {
21
+ /**
22
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
23
+ * @type {number}
24
+ * @memberof AccountPolicyClass
25
+ */
26
+ 'id': number;
27
+ /**
28
+ * Policy number.
29
+ * @type {string}
30
+ * @memberof AccountPolicyClass
31
+ */
32
+ 'policyNumber': string;
33
+ /**
34
+ * Internal policy number.
35
+ * @type {string}
36
+ * @memberof AccountPolicyClass
37
+ */
38
+ 'internalPolicyNumber'?: string | null;
39
+ /**
40
+ * Unique identifier referencing the policy product version.
41
+ * @type {number}
42
+ * @memberof AccountPolicyClass
43
+ */
44
+ 'productVersionId': number;
45
+ /**
46
+ * Unique identifier referencing the policy product.
47
+ * @type {number}
48
+ * @memberof AccountPolicyClass
49
+ */
50
+ 'productId': number;
51
+ /**
52
+ * Unique identifier of the account that this object belongs to.
53
+ * @type {string}
54
+ * @memberof AccountPolicyClass
55
+ */
56
+ 'accountCode': string;
57
+ /**
58
+ * Policy status. This property shows different statuses depending on the status of a policy: ACTIVE, WITHDRAWN, TERMINATED, SUSPENDED.
59
+ * @type {string}
60
+ * @memberof AccountPolicyClass
61
+ */
62
+ 'status': string;
63
+ /**
64
+ * Policy holder name.
65
+ * @type {string}
66
+ * @memberof AccountPolicyClass
67
+ */
68
+ 'holder'?: string | null;
69
+ /**
70
+ * Policy product name.
71
+ * @type {string}
72
+ * @memberof AccountPolicyClass
73
+ */
74
+ 'productName'?: string | null;
75
+ /**
76
+ * Policy product slug.
77
+ * @type {string}
78
+ * @memberof AccountPolicyClass
79
+ */
80
+ 'productSlug'?: string | null;
81
+ /**
82
+ * Policy versions.
83
+ * @type {Array<PolicyVersionClass>}
84
+ * @memberof AccountPolicyClass
85
+ */
86
+ 'versions': Array<PolicyVersionClass>;
87
+ /**
88
+ * Product.
89
+ * @type {ProductClass}
90
+ * @memberof AccountPolicyClass
91
+ */
92
+ 'product'?: ProductClass;
93
+ /**
94
+ * The date the policy will get started.
95
+ * @type {string}
96
+ * @memberof AccountPolicyClass
97
+ */
98
+ 'policyStartDate': string | null;
99
+ /**
100
+ * Time at which the object was created.
101
+ * @type {string}
102
+ * @memberof AccountPolicyClass
103
+ */
104
+ 'createdAt': string;
105
+ /**
106
+ * Time at which the object was updated.
107
+ * @type {string}
108
+ * @memberof AccountPolicyClass
109
+ */
110
+ 'updatedAt': string;
111
+ /**
112
+ * Unique identifier of the lead that this object belongs to.
113
+ * @type {string}
114
+ * @memberof AccountPolicyClass
115
+ */
116
+ 'leadCode'?: string;
117
+ /**
118
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
119
+ * @type {string}
120
+ * @memberof AccountPolicyClass
121
+ */
122
+ 'ern': string;
123
+ /**
124
+ * Partner links.
125
+ * @type {Array<PartnerLinkClass>}
126
+ * @memberof AccountPolicyClass
127
+ */
128
+ 'partnerLinks': Array<PartnerLinkClass>;
129
+ /**
130
+ * Identifier of the user who created the record.
131
+ * @type {string}
132
+ * @memberof AccountPolicyClass
133
+ */
134
+ 'createdBy': string;
135
+ /**
136
+ * Identifier of the user who last updated the record.
137
+ * @type {string}
138
+ * @memberof AccountPolicyClass
139
+ */
140
+ 'updatedBy': string;
141
+ /**
142
+ * Unique identifier for the object.
143
+ * @type {string}
144
+ * @memberof AccountPolicyClass
145
+ */
146
+ 'policyCode': string;
147
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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,31 @@
1
+ /**
2
+ * EMIL PartnerPortal
3
+ * The EMIL PartnerPortal 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 { SepaDto } from './sepa-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePaymentMethodRequestDto
17
+ */
18
+ export interface CreatePaymentMethodRequestDto {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof CreatePaymentMethodRequestDto
23
+ */
24
+ 'type': string;
25
+ /**
26
+ *
27
+ * @type {SepaDto}
28
+ * @memberof CreatePaymentMethodRequestDto
29
+ */
30
+ 'sepa'?: SepaDto;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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,55 @@
1
+ /**
2
+ * EMIL PartnerPortal
3
+ * The EMIL PartnerPortal 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 { PremiumOverrideRequestDto } from './premium-override-request-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePolicyRequestDto
17
+ */
18
+ export interface CreatePolicyRequestDto {
19
+ /**
20
+ * The product version id of the product version to be used for the lead. The product version id will be validated if the \'validate\' flag is set to true.
21
+ * @type {number}
22
+ * @memberof CreatePolicyRequestDto
23
+ */
24
+ 'productVersionId': number;
25
+ /**
26
+ * Unique identifier of the The account code of the account the policy is attached to. that this object belongs to.
27
+ * @type {string}
28
+ * @memberof CreatePolicyRequestDto
29
+ */
30
+ 'accountCode'?: string;
31
+ /**
32
+ * Policy holder name. If not provided, the account holder name will be used.
33
+ * @type {string}
34
+ * @memberof CreatePolicyRequestDto
35
+ */
36
+ 'holder'?: string;
37
+ /**
38
+ * The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true
39
+ * @type {Array<object>}
40
+ * @memberof CreatePolicyRequestDto
41
+ */
42
+ 'policyObjects'?: Array<object>;
43
+ /**
44
+ * Premium Override is utilized to override the premium calculation. The premium formulas will be disregarded when this object is present. The premium override content will be validated if the \'validate\' flag is set to true.
45
+ * @type {PremiumOverrideRequestDto}
46
+ * @memberof CreatePolicyRequestDto
47
+ */
48
+ 'premiumOverride'?: PremiumOverrideRequestDto;
49
+ /**
50
+ * Unique identifier of the lead that this object belongs to.
51
+ * @type {string}
52
+ * @memberof CreatePolicyRequestDto
53
+ */
54
+ 'leadCode'?: string;
55
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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,34 @@
1
+ export * from './account-class';
2
+ export * from './account-policy-class';
3
+ export * from './create-payment-method-request-dto';
4
+ export * from './create-policy-request-dto';
5
+ export * from './inline-response200';
6
+ export * from './inline-response503';
7
+ export * from './insured-object-type-class';
8
+ export * from './invoice-class';
9
+ export * from './invoice-item-class';
10
+ export * from './invoice-status-class';
11
+ export * from './lead-bank-account-class';
12
+ export * from './lead-class';
13
+ export * from './list-accounts-response-class';
14
+ export * from './list-leads-response-class';
15
+ export * from './list-partners-response-class';
16
+ export * from './list-policies-response-class';
17
+ export * from './omit-type-class';
18
+ export * from './partner-class';
19
+ export * from './partner-link-class';
20
+ export * from './partner-role-class';
21
+ export * from './policy-class';
22
+ export * from './policy-object-class';
23
+ export * from './policy-premium-class';
24
+ export * from './policy-premium-item-class';
25
+ export * from './policy-version-class';
26
+ export * from './premium-formula-class';
27
+ export * from './premium-override-dto';
28
+ export * from './premium-override-request-dto';
29
+ export * from './product-class';
30
+ export * from './product-version-class';
31
+ export * from './sepa-dto';
32
+ export * from './tag-class';
33
+ export * from './timeslice-class';
34
+ export * from './uploaded-document-dto';
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./account-class"), exports);
18
+ __exportStar(require("./account-policy-class"), exports);
19
+ __exportStar(require("./create-payment-method-request-dto"), exports);
20
+ __exportStar(require("./create-policy-request-dto"), exports);
21
+ __exportStar(require("./inline-response200"), exports);
22
+ __exportStar(require("./inline-response503"), exports);
23
+ __exportStar(require("./insured-object-type-class"), exports);
24
+ __exportStar(require("./invoice-class"), exports);
25
+ __exportStar(require("./invoice-item-class"), exports);
26
+ __exportStar(require("./invoice-status-class"), exports);
27
+ __exportStar(require("./lead-bank-account-class"), exports);
28
+ __exportStar(require("./lead-class"), exports);
29
+ __exportStar(require("./list-accounts-response-class"), exports);
30
+ __exportStar(require("./list-leads-response-class"), exports);
31
+ __exportStar(require("./list-partners-response-class"), exports);
32
+ __exportStar(require("./list-policies-response-class"), exports);
33
+ __exportStar(require("./omit-type-class"), exports);
34
+ __exportStar(require("./partner-class"), exports);
35
+ __exportStar(require("./partner-link-class"), exports);
36
+ __exportStar(require("./partner-role-class"), exports);
37
+ __exportStar(require("./policy-class"), exports);
38
+ __exportStar(require("./policy-object-class"), exports);
39
+ __exportStar(require("./policy-premium-class"), exports);
40
+ __exportStar(require("./policy-premium-item-class"), exports);
41
+ __exportStar(require("./policy-version-class"), exports);
42
+ __exportStar(require("./premium-formula-class"), exports);
43
+ __exportStar(require("./premium-override-dto"), exports);
44
+ __exportStar(require("./premium-override-request-dto"), exports);
45
+ __exportStar(require("./product-class"), exports);
46
+ __exportStar(require("./product-version-class"), exports);
47
+ __exportStar(require("./sepa-dto"), exports);
48
+ __exportStar(require("./tag-class"), exports);
49
+ __exportStar(require("./timeslice-class"), exports);
50
+ __exportStar(require("./uploaded-document-dto"), exports);
@@ -0,0 +1,54 @@
1
+ /**
2
+ * EMIL PartnerPortal
3
+ * The EMIL PartnerPortal 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 InlineResponse200
16
+ */
17
+ export interface InlineResponse200 {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InlineResponse200
22
+ */
23
+ 'status'?: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: { [key: string]: object; }; }}
27
+ * @memberof InlineResponse200
28
+ */
29
+ 'info'?: {
30
+ [key: string]: {
31
+ [key: string]: object;
32
+ };
33
+ } | null;
34
+ /**
35
+ *
36
+ * @type {{ [key: string]: { [key: string]: object; }; }}
37
+ * @memberof InlineResponse200
38
+ */
39
+ 'error'?: {
40
+ [key: string]: {
41
+ [key: string]: object;
42
+ };
43
+ } | null;
44
+ /**
45
+ *
46
+ * @type {{ [key: string]: { [key: string]: object; }; }}
47
+ * @memberof InlineResponse200
48
+ */
49
+ 'details'?: {
50
+ [key: string]: {
51
+ [key: string]: object;
52
+ };
53
+ };
54
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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 PartnerPortal
3
+ * The EMIL PartnerPortal 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 InlineResponse503
16
+ */
17
+ export interface InlineResponse503 {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InlineResponse503
22
+ */
23
+ 'status'?: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: { [key: string]: object; }; }}
27
+ * @memberof InlineResponse503
28
+ */
29
+ 'info'?: {
30
+ [key: string]: {
31
+ [key: string]: object;
32
+ };
33
+ } | null;
34
+ /**
35
+ *
36
+ * @type {{ [key: string]: { [key: string]: object; }; }}
37
+ * @memberof InlineResponse503
38
+ */
39
+ 'error'?: {
40
+ [key: string]: {
41
+ [key: string]: object;
42
+ };
43
+ } | null;
44
+ /**
45
+ *
46
+ * @type {{ [key: string]: { [key: string]: object; }; }}
47
+ * @memberof InlineResponse503
48
+ */
49
+ 'details'?: {
50
+ [key: string]: {
51
+ [key: string]: object;
52
+ };
53
+ };
54
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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,60 @@
1
+ /**
2
+ * EMIL PartnerPortal
3
+ * The EMIL PartnerPortal 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 InsuredObjectTypeClass
16
+ */
17
+ export interface InsuredObjectTypeClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof InsuredObjectTypeClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Insured object type name.
26
+ * @type {string}
27
+ * @memberof InsuredObjectTypeClass
28
+ */
29
+ 'name': string;
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.
32
+ * @type {string}
33
+ * @memberof InsuredObjectTypeClass
34
+ */
35
+ 'slug': string;
36
+ /**
37
+ * Time at which the object was created.
38
+ * @type {string}
39
+ * @memberof InsuredObjectTypeClass
40
+ */
41
+ 'createdAt': string;
42
+ /**
43
+ * Time at which the object was updated.
44
+ * @type {string}
45
+ * @memberof InsuredObjectTypeClass
46
+ */
47
+ 'updatedAt': string;
48
+ /**
49
+ * Identifier of the user who created the record.
50
+ * @type {string}
51
+ * @memberof InsuredObjectTypeClass
52
+ */
53
+ 'createdBy': string;
54
+ /**
55
+ * Identifier of the user who last updated the record.
56
+ * @type {string}
57
+ * @memberof InsuredObjectTypeClass
58
+ */
59
+ 'updatedBy': string;
60
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerPortal
6
+ * The EMIL PartnerPortal 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 });