@emilgroup/public-api-sdk-node 1.0.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/.openapi-generator/FILES +30 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/documents-api.ts +424 -0
- package/api/payment-setup-api.ts +260 -0
- package/api/products-api.ts +958 -0
- package/api.ts +36 -0
- package/base.ts +247 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/documents-api.d.ts +239 -0
- package/dist/api/documents-api.js +427 -0
- package/dist/api/payment-setup-api.d.ts +144 -0
- package/dist/api/payment-setup-api.js +309 -0
- package/dist/api/products-api.d.ts +511 -0
- package/dist/api/products-api.js +935 -0
- package/dist/api.d.ts +18 -0
- package/dist/api.js +38 -0
- package/dist/base.d.ts +72 -0
- package/dist/base.js +293 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +48 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/complete-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +54 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +90 -0
- package/dist/models/create-account-request-dto.js +21 -0
- package/dist/models/create-bank-account-request-dto.d.ts +30 -0
- package/dist/models/create-bank-account-request-dto.js +15 -0
- package/dist/models/create-custom-application-request-dto.d.ts +34 -0
- package/dist/models/create-custom-application-request-dto.js +19 -0
- package/dist/models/create-document-request-dto.d.ts +95 -0
- package/dist/models/create-document-request-dto.js +31 -0
- package/dist/models/create-estimated-invoice-request-dto.d.ts +41 -0
- package/dist/models/create-estimated-invoice-request-dto.js +19 -0
- package/dist/models/create-lead-request-dto.d.ts +77 -0
- package/dist/models/create-lead-request-dto.js +22 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +30 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +24 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/initiate-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +24 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/policy-object-request-dto.d.ts +30 -0
- package/dist/models/policy-object-request-dto.js +15 -0
- package/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/complete-braintree-payment-setup-request-dto.ts +54 -0
- package/models/complete-payment-setup-request-dto.ts +38 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +60 -0
- package/models/create-account-request-dto.ts +99 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-custom-application-request-dto.ts +43 -0
- package/models/create-document-request-dto.ts +105 -0
- package/models/create-estimated-invoice-request-dto.ts +50 -0
- package/models/create-lead-request-dto.ts +86 -0
- package/models/index.ts +14 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +30 -0
- package/models/initiate-payment-setup-request-dto.ts +38 -0
- package/models/initiate-stripe-payment-setup-request-dto.ts +30 -0
- package/models/policy-object-request-dto.ts +36 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/package.json +27 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreateCustomApplicationRequestDto } from '../models';
|
|
16
|
+
import { CreateEstimatedInvoiceRequestDto } from '../models';
|
|
17
|
+
import { CreateLeadRequestDto } from '../models';
|
|
18
|
+
/**
|
|
19
|
+
* ProductsApi - axios parameter creator
|
|
20
|
+
* @export
|
|
21
|
+
*/
|
|
22
|
+
export declare const ProductsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @param {string} productCode
|
|
26
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
27
|
+
* @param {string} [authorization] Bearer Token
|
|
28
|
+
* @param {*} [options] Override http request option.
|
|
29
|
+
* @throws {RequiredError}
|
|
30
|
+
*/
|
|
31
|
+
createEstimatedInvoice: (productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
35
|
+
* @param {string} [authorization] Bearer Token
|
|
36
|
+
* @param {*} [options] Override http request option.
|
|
37
|
+
* @throws {RequiredError}
|
|
38
|
+
*/
|
|
39
|
+
createLead: (createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @param {string} productCode
|
|
43
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
44
|
+
* @param {string} [authorization] Bearer Token
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
customApplication: (productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @param {string} [authorization] Bearer Token
|
|
52
|
+
* @param {*} [options] Override http request option.
|
|
53
|
+
* @throws {RequiredError}
|
|
54
|
+
*/
|
|
55
|
+
getInsuredObjectTypes: (authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @param {string} productCode
|
|
59
|
+
* @param {string} [authorization] Bearer Token
|
|
60
|
+
* @param {*} [options] Override http request option.
|
|
61
|
+
* @throws {RequiredError}
|
|
62
|
+
*/
|
|
63
|
+
getInsuredObjects: (productCode: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @param {string} productCode
|
|
67
|
+
* @param {string} [authorization] Bearer Token
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
getProductCustomCss: (productCode: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @param {string} productCode
|
|
75
|
+
* @param {string} [authorization] Bearer Token
|
|
76
|
+
* @param {*} [options] Override http request option.
|
|
77
|
+
* @throws {RequiredError}
|
|
78
|
+
*/
|
|
79
|
+
getProductFactors: (productCode: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @param {string} [authorization] Bearer Token
|
|
83
|
+
* @param {*} [options] Override http request option.
|
|
84
|
+
* @throws {RequiredError}
|
|
85
|
+
*/
|
|
86
|
+
initiateLead: (authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @param {string} code
|
|
90
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
91
|
+
* @param {string} [authorization] Bearer Token
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
updateLead: (code: string, createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* ProductsApi - functional programming interface
|
|
99
|
+
* @export
|
|
100
|
+
*/
|
|
101
|
+
export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @param {string} productCode
|
|
105
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
106
|
+
* @param {string} [authorization] Bearer Token
|
|
107
|
+
* @param {*} [options] Override http request option.
|
|
108
|
+
* @throws {RequiredError}
|
|
109
|
+
*/
|
|
110
|
+
createEstimatedInvoice(productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
114
|
+
* @param {string} [authorization] Bearer Token
|
|
115
|
+
* @param {*} [options] Override http request option.
|
|
116
|
+
* @throws {RequiredError}
|
|
117
|
+
*/
|
|
118
|
+
createLead(createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @param {string} productCode
|
|
122
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
123
|
+
* @param {string} [authorization] Bearer Token
|
|
124
|
+
* @param {*} [options] Override http request option.
|
|
125
|
+
* @throws {RequiredError}
|
|
126
|
+
*/
|
|
127
|
+
customApplication(productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @param {string} [authorization] Bearer Token
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
getInsuredObjectTypes(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @param {string} productCode
|
|
138
|
+
* @param {string} [authorization] Bearer Token
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
getInsuredObjects(productCode: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @param {string} productCode
|
|
146
|
+
* @param {string} [authorization] Bearer Token
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
*/
|
|
150
|
+
getProductCustomCss(productCode: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @param {string} productCode
|
|
154
|
+
* @param {string} [authorization] Bearer Token
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @throws {RequiredError}
|
|
157
|
+
*/
|
|
158
|
+
getProductFactors(productCode: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @param {string} [authorization] Bearer Token
|
|
162
|
+
* @param {*} [options] Override http request option.
|
|
163
|
+
* @throws {RequiredError}
|
|
164
|
+
*/
|
|
165
|
+
initiateLead(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
166
|
+
/**
|
|
167
|
+
*
|
|
168
|
+
* @param {string} code
|
|
169
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
170
|
+
* @param {string} [authorization] Bearer Token
|
|
171
|
+
* @param {*} [options] Override http request option.
|
|
172
|
+
* @throws {RequiredError}
|
|
173
|
+
*/
|
|
174
|
+
updateLead(code: string, createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* ProductsApi - factory interface
|
|
178
|
+
* @export
|
|
179
|
+
*/
|
|
180
|
+
export declare const ProductsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @param {string} productCode
|
|
184
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
185
|
+
* @param {string} [authorization] Bearer Token
|
|
186
|
+
* @param {*} [options] Override http request option.
|
|
187
|
+
* @throws {RequiredError}
|
|
188
|
+
*/
|
|
189
|
+
createEstimatedInvoice(productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
193
|
+
* @param {string} [authorization] Bearer Token
|
|
194
|
+
* @param {*} [options] Override http request option.
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
createLead(createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @param {string} productCode
|
|
201
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
202
|
+
* @param {string} [authorization] Bearer Token
|
|
203
|
+
* @param {*} [options] Override http request option.
|
|
204
|
+
* @throws {RequiredError}
|
|
205
|
+
*/
|
|
206
|
+
customApplication(productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @param {string} [authorization] Bearer Token
|
|
210
|
+
* @param {*} [options] Override http request option.
|
|
211
|
+
* @throws {RequiredError}
|
|
212
|
+
*/
|
|
213
|
+
getInsuredObjectTypes(authorization?: string, options?: any): AxiosPromise<void>;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @param {string} productCode
|
|
217
|
+
* @param {string} [authorization] Bearer Token
|
|
218
|
+
* @param {*} [options] Override http request option.
|
|
219
|
+
* @throws {RequiredError}
|
|
220
|
+
*/
|
|
221
|
+
getInsuredObjects(productCode: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @param {string} productCode
|
|
225
|
+
* @param {string} [authorization] Bearer Token
|
|
226
|
+
* @param {*} [options] Override http request option.
|
|
227
|
+
* @throws {RequiredError}
|
|
228
|
+
*/
|
|
229
|
+
getProductCustomCss(productCode: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @param {string} productCode
|
|
233
|
+
* @param {string} [authorization] Bearer Token
|
|
234
|
+
* @param {*} [options] Override http request option.
|
|
235
|
+
* @throws {RequiredError}
|
|
236
|
+
*/
|
|
237
|
+
getProductFactors(productCode: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @param {string} [authorization] Bearer Token
|
|
241
|
+
* @param {*} [options] Override http request option.
|
|
242
|
+
* @throws {RequiredError}
|
|
243
|
+
*/
|
|
244
|
+
initiateLead(authorization?: string, options?: any): AxiosPromise<void>;
|
|
245
|
+
/**
|
|
246
|
+
*
|
|
247
|
+
* @param {string} code
|
|
248
|
+
* @param {CreateLeadRequestDto} createLeadRequestDto
|
|
249
|
+
* @param {string} [authorization] Bearer Token
|
|
250
|
+
* @param {*} [options] Override http request option.
|
|
251
|
+
* @throws {RequiredError}
|
|
252
|
+
*/
|
|
253
|
+
updateLead(code: string, createLeadRequestDto: CreateLeadRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Request parameters for createEstimatedInvoice operation in ProductsApi.
|
|
257
|
+
* @export
|
|
258
|
+
* @interface ProductsApiCreateEstimatedInvoiceRequest
|
|
259
|
+
*/
|
|
260
|
+
export interface ProductsApiCreateEstimatedInvoiceRequest {
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {string}
|
|
264
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
265
|
+
*/
|
|
266
|
+
readonly productCode: string;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {CreateEstimatedInvoiceRequestDto}
|
|
270
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
271
|
+
*/
|
|
272
|
+
readonly createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto;
|
|
273
|
+
/**
|
|
274
|
+
* Bearer Token
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
277
|
+
*/
|
|
278
|
+
readonly authorization?: string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Request parameters for createLead operation in ProductsApi.
|
|
282
|
+
* @export
|
|
283
|
+
* @interface ProductsApiCreateLeadRequest
|
|
284
|
+
*/
|
|
285
|
+
export interface ProductsApiCreateLeadRequest {
|
|
286
|
+
/**
|
|
287
|
+
*
|
|
288
|
+
* @type {CreateLeadRequestDto}
|
|
289
|
+
* @memberof ProductsApiCreateLead
|
|
290
|
+
*/
|
|
291
|
+
readonly createLeadRequestDto: CreateLeadRequestDto;
|
|
292
|
+
/**
|
|
293
|
+
* Bearer Token
|
|
294
|
+
* @type {string}
|
|
295
|
+
* @memberof ProductsApiCreateLead
|
|
296
|
+
*/
|
|
297
|
+
readonly authorization?: string;
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Request parameters for customApplication operation in ProductsApi.
|
|
301
|
+
* @export
|
|
302
|
+
* @interface ProductsApiCustomApplicationRequest
|
|
303
|
+
*/
|
|
304
|
+
export interface ProductsApiCustomApplicationRequest {
|
|
305
|
+
/**
|
|
306
|
+
*
|
|
307
|
+
* @type {string}
|
|
308
|
+
* @memberof ProductsApiCustomApplication
|
|
309
|
+
*/
|
|
310
|
+
readonly productCode: string;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @type {CreateCustomApplicationRequestDto}
|
|
314
|
+
* @memberof ProductsApiCustomApplication
|
|
315
|
+
*/
|
|
316
|
+
readonly createCustomApplicationRequestDto: CreateCustomApplicationRequestDto;
|
|
317
|
+
/**
|
|
318
|
+
* Bearer Token
|
|
319
|
+
* @type {string}
|
|
320
|
+
* @memberof ProductsApiCustomApplication
|
|
321
|
+
*/
|
|
322
|
+
readonly authorization?: string;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Request parameters for getInsuredObjectTypes operation in ProductsApi.
|
|
326
|
+
* @export
|
|
327
|
+
* @interface ProductsApiGetInsuredObjectTypesRequest
|
|
328
|
+
*/
|
|
329
|
+
export interface ProductsApiGetInsuredObjectTypesRequest {
|
|
330
|
+
/**
|
|
331
|
+
* Bearer Token
|
|
332
|
+
* @type {string}
|
|
333
|
+
* @memberof ProductsApiGetInsuredObjectTypes
|
|
334
|
+
*/
|
|
335
|
+
readonly authorization?: string;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* Request parameters for getInsuredObjects operation in ProductsApi.
|
|
339
|
+
* @export
|
|
340
|
+
* @interface ProductsApiGetInsuredObjectsRequest
|
|
341
|
+
*/
|
|
342
|
+
export interface ProductsApiGetInsuredObjectsRequest {
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @type {string}
|
|
346
|
+
* @memberof ProductsApiGetInsuredObjects
|
|
347
|
+
*/
|
|
348
|
+
readonly productCode: string;
|
|
349
|
+
/**
|
|
350
|
+
* Bearer Token
|
|
351
|
+
* @type {string}
|
|
352
|
+
* @memberof ProductsApiGetInsuredObjects
|
|
353
|
+
*/
|
|
354
|
+
readonly authorization?: string;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Request parameters for getProductCustomCss operation in ProductsApi.
|
|
358
|
+
* @export
|
|
359
|
+
* @interface ProductsApiGetProductCustomCssRequest
|
|
360
|
+
*/
|
|
361
|
+
export interface ProductsApiGetProductCustomCssRequest {
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
* @type {string}
|
|
365
|
+
* @memberof ProductsApiGetProductCustomCss
|
|
366
|
+
*/
|
|
367
|
+
readonly productCode: string;
|
|
368
|
+
/**
|
|
369
|
+
* Bearer Token
|
|
370
|
+
* @type {string}
|
|
371
|
+
* @memberof ProductsApiGetProductCustomCss
|
|
372
|
+
*/
|
|
373
|
+
readonly authorization?: string;
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* Request parameters for getProductFactors operation in ProductsApi.
|
|
377
|
+
* @export
|
|
378
|
+
* @interface ProductsApiGetProductFactorsRequest
|
|
379
|
+
*/
|
|
380
|
+
export interface ProductsApiGetProductFactorsRequest {
|
|
381
|
+
/**
|
|
382
|
+
*
|
|
383
|
+
* @type {string}
|
|
384
|
+
* @memberof ProductsApiGetProductFactors
|
|
385
|
+
*/
|
|
386
|
+
readonly productCode: string;
|
|
387
|
+
/**
|
|
388
|
+
* Bearer Token
|
|
389
|
+
* @type {string}
|
|
390
|
+
* @memberof ProductsApiGetProductFactors
|
|
391
|
+
*/
|
|
392
|
+
readonly authorization?: string;
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* Request parameters for initiateLead operation in ProductsApi.
|
|
396
|
+
* @export
|
|
397
|
+
* @interface ProductsApiInitiateLeadRequest
|
|
398
|
+
*/
|
|
399
|
+
export interface ProductsApiInitiateLeadRequest {
|
|
400
|
+
/**
|
|
401
|
+
* Bearer Token
|
|
402
|
+
* @type {string}
|
|
403
|
+
* @memberof ProductsApiInitiateLead
|
|
404
|
+
*/
|
|
405
|
+
readonly authorization?: string;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Request parameters for updateLead operation in ProductsApi.
|
|
409
|
+
* @export
|
|
410
|
+
* @interface ProductsApiUpdateLeadRequest
|
|
411
|
+
*/
|
|
412
|
+
export interface ProductsApiUpdateLeadRequest {
|
|
413
|
+
/**
|
|
414
|
+
*
|
|
415
|
+
* @type {string}
|
|
416
|
+
* @memberof ProductsApiUpdateLead
|
|
417
|
+
*/
|
|
418
|
+
readonly code: string;
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @type {CreateLeadRequestDto}
|
|
422
|
+
* @memberof ProductsApiUpdateLead
|
|
423
|
+
*/
|
|
424
|
+
readonly createLeadRequestDto: CreateLeadRequestDto;
|
|
425
|
+
/**
|
|
426
|
+
* Bearer Token
|
|
427
|
+
* @type {string}
|
|
428
|
+
* @memberof ProductsApiUpdateLead
|
|
429
|
+
*/
|
|
430
|
+
readonly authorization?: string;
|
|
431
|
+
}
|
|
432
|
+
/**
|
|
433
|
+
* ProductsApi - object-oriented interface
|
|
434
|
+
* @export
|
|
435
|
+
* @class ProductsApi
|
|
436
|
+
* @extends {BaseAPI}
|
|
437
|
+
*/
|
|
438
|
+
export declare class ProductsApi extends BaseAPI {
|
|
439
|
+
/**
|
|
440
|
+
*
|
|
441
|
+
* @param {ProductsApiCreateEstimatedInvoiceRequest} requestParameters Request parameters.
|
|
442
|
+
* @param {*} [options] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
* @memberof ProductsApi
|
|
445
|
+
*/
|
|
446
|
+
createEstimatedInvoice(requestParameters: ProductsApiCreateEstimatedInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @param {ProductsApiCreateLeadRequest} requestParameters Request parameters.
|
|
450
|
+
* @param {*} [options] Override http request option.
|
|
451
|
+
* @throws {RequiredError}
|
|
452
|
+
* @memberof ProductsApi
|
|
453
|
+
*/
|
|
454
|
+
createLead(requestParameters: ProductsApiCreateLeadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @param {ProductsApiCustomApplicationRequest} requestParameters Request parameters.
|
|
458
|
+
* @param {*} [options] Override http request option.
|
|
459
|
+
* @throws {RequiredError}
|
|
460
|
+
* @memberof ProductsApi
|
|
461
|
+
*/
|
|
462
|
+
customApplication(requestParameters: ProductsApiCustomApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
463
|
+
/**
|
|
464
|
+
*
|
|
465
|
+
* @param {ProductsApiGetInsuredObjectTypesRequest} requestParameters Request parameters.
|
|
466
|
+
* @param {*} [options] Override http request option.
|
|
467
|
+
* @throws {RequiredError}
|
|
468
|
+
* @memberof ProductsApi
|
|
469
|
+
*/
|
|
470
|
+
getInsuredObjectTypes(requestParameters?: ProductsApiGetInsuredObjectTypesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @param {ProductsApiGetInsuredObjectsRequest} requestParameters Request parameters.
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
* @memberof ProductsApi
|
|
477
|
+
*/
|
|
478
|
+
getInsuredObjects(requestParameters: ProductsApiGetInsuredObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
479
|
+
/**
|
|
480
|
+
*
|
|
481
|
+
* @param {ProductsApiGetProductCustomCssRequest} requestParameters Request parameters.
|
|
482
|
+
* @param {*} [options] Override http request option.
|
|
483
|
+
* @throws {RequiredError}
|
|
484
|
+
* @memberof ProductsApi
|
|
485
|
+
*/
|
|
486
|
+
getProductCustomCss(requestParameters: ProductsApiGetProductCustomCssRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @param {ProductsApiGetProductFactorsRequest} requestParameters Request parameters.
|
|
490
|
+
* @param {*} [options] Override http request option.
|
|
491
|
+
* @throws {RequiredError}
|
|
492
|
+
* @memberof ProductsApi
|
|
493
|
+
*/
|
|
494
|
+
getProductFactors(requestParameters: ProductsApiGetProductFactorsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @param {ProductsApiInitiateLeadRequest} requestParameters Request parameters.
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
* @memberof ProductsApi
|
|
501
|
+
*/
|
|
502
|
+
initiateLead(requestParameters?: ProductsApiInitiateLeadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @param {ProductsApiUpdateLeadRequest} requestParameters Request parameters.
|
|
506
|
+
* @param {*} [options] Override http request option.
|
|
507
|
+
* @throws {RequiredError}
|
|
508
|
+
* @memberof ProductsApi
|
|
509
|
+
*/
|
|
510
|
+
updateLead(requestParameters: ProductsApiUpdateLeadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
511
|
+
}
|