@emilgroup/public-api-sdk-node 1.8.0 → 1.9.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 (37) hide show
  1. package/.openapi-generator/FILES +7 -0
  2. package/README.md +2 -2
  3. package/api/address-completions-validations-api.ts +352 -0
  4. package/api/documents-api.ts +39 -51
  5. package/api.ts +2 -0
  6. package/dist/api/address-completions-validations-api.d.ts +197 -0
  7. package/dist/api/address-completions-validations-api.js +361 -0
  8. package/dist/api/documents-api.d.ts +33 -42
  9. package/dist/api/documents-api.js +23 -28
  10. package/dist/api.d.ts +1 -0
  11. package/dist/api.js +1 -0
  12. package/dist/models/address-completion-item-class.d.ts +49 -0
  13. package/dist/models/address-completion-item-class.js +15 -0
  14. package/dist/models/address-completion-response-class.d.ts +25 -0
  15. package/dist/models/address-completion-response-class.js +15 -0
  16. package/dist/models/address-field-score-class.d.ts +48 -0
  17. package/dist/models/address-field-score-class.js +15 -0
  18. package/dist/models/create-lead-request-dto.d.ts +12 -12
  19. package/dist/models/index.d.ts +6 -0
  20. package/dist/models/index.js +6 -0
  21. package/dist/models/insured-object-class.d.ts +7 -7
  22. package/dist/models/structured-address-class.d.ts +54 -0
  23. package/dist/models/structured-address-class.js +15 -0
  24. package/dist/models/suggested-address-details-class.d.ts +90 -0
  25. package/dist/models/suggested-address-details-class.js +15 -0
  26. package/dist/models/validate-address-response-class.d.ts +50 -0
  27. package/dist/models/validate-address-response-class.js +15 -0
  28. package/models/address-completion-item-class.ts +55 -0
  29. package/models/address-completion-response-class.ts +31 -0
  30. package/models/address-field-score-class.ts +54 -0
  31. package/models/create-lead-request-dto.ts +12 -12
  32. package/models/index.ts +6 -0
  33. package/models/insured-object-class.ts +7 -7
  34. package/models/structured-address-class.ts +60 -0
  35. package/models/suggested-address-details-class.ts +96 -0
  36. package/models/validate-address-response-class.ts +56 -0
  37. package/package.json +1 -1
@@ -40,17 +40,16 @@ export declare const DocumentsApiAxiosParamCreator: (configuration?: Configurati
40
40
  /**
41
41
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
42
42
  * @summary List documents
43
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
43
44
  * @param {string} [authorization] Bearer Token
44
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
45
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
46
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
47
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
48
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
49
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
45
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
46
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
47
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
48
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
50
49
  * @param {*} [options] Override http request option.
51
50
  * @throws {RequiredError}
52
51
  */
53
- listDocuments: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
52
+ listDocuments: (filter: string, authorization?: string, pageSize?: number, pageToken?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
53
  };
55
54
  /**
56
55
  * DocumentsApi - functional programming interface
@@ -78,17 +77,16 @@ export declare const DocumentsApiFp: (configuration?: Configuration) => {
78
77
  /**
79
78
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
80
79
  * @summary List documents
80
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
81
81
  * @param {string} [authorization] Bearer Token
82
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
83
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
84
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
85
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
86
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
87
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
82
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
83
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
84
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
85
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
88
86
  * @param {*} [options] Override http request option.
89
87
  * @throws {RequiredError}
90
88
  */
91
- listDocuments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDocumentsResponseClass>>;
89
+ listDocuments(filter: string, authorization?: string, pageSize?: number, pageToken?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDocumentsResponseClass>>;
92
90
  };
93
91
  /**
94
92
  * DocumentsApi - factory interface
@@ -116,17 +114,16 @@ export declare const DocumentsApiFactory: (configuration?: Configuration, basePa
116
114
  /**
117
115
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
118
116
  * @summary List documents
117
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
119
118
  * @param {string} [authorization] Bearer Token
120
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
121
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
122
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
123
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
124
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
125
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
119
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
120
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
121
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
122
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
126
123
  * @param {*} [options] Override http request option.
127
124
  * @throws {RequiredError}
128
125
  */
129
- listDocuments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListDocumentsResponseClass>;
126
+ listDocuments(filter: string, authorization?: string, pageSize?: number, pageToken?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListDocumentsResponseClass>;
130
127
  };
131
128
  /**
132
129
  * Request parameters for createTemporaryDocument operation in DocumentsApi.
@@ -172,6 +169,12 @@ export interface DocumentsApiDownloadDocumentRequest {
172
169
  * @interface DocumentsApiListDocumentsRequest
173
170
  */
174
171
  export interface DocumentsApiListDocumentsRequest {
172
+ /**
173
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
174
+ * @type {string}
175
+ * @memberof DocumentsApiListDocuments
176
+ */
177
+ readonly filter: string;
175
178
  /**
176
179
  * Bearer Token
177
180
  * @type {string}
@@ -180,40 +183,28 @@ export interface DocumentsApiListDocumentsRequest {
180
183
  readonly authorization?: string;
181
184
  /**
182
185
  * A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
183
- * @type {any}
186
+ * @type {number}
184
187
  * @memberof DocumentsApiListDocuments
185
188
  */
186
- readonly pageSize?: any;
189
+ readonly pageSize?: number;
187
190
  /**
188
191
  * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
189
- * @type {any}
190
- * @memberof DocumentsApiListDocuments
191
- */
192
- readonly pageToken?: any;
193
- /**
194
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
195
- * @type {any}
196
- * @memberof DocumentsApiListDocuments
197
- */
198
- readonly filter?: any;
199
- /**
200
- * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
201
- * @type {any}
192
+ * @type {string}
202
193
  * @memberof DocumentsApiListDocuments
203
194
  */
204
- readonly search?: any;
195
+ readonly pageToken?: string;
205
196
  /**
206
197
  * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
207
- * @type {any}
198
+ * @type {string}
208
199
  * @memberof DocumentsApiListDocuments
209
200
  */
210
- readonly order?: any;
201
+ readonly order?: string;
211
202
  /**
212
203
  * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
213
- * @type {any}
204
+ * @type {string}
214
205
  * @memberof DocumentsApiListDocuments
215
206
  */
216
- readonly expand?: any;
207
+ readonly expand?: string;
217
208
  }
218
209
  /**
219
210
  * DocumentsApi - object-oriented interface
@@ -248,5 +239,5 @@ export declare class DocumentsApi extends BaseAPI {
248
239
  * @throws {RequiredError}
249
240
  * @memberof DocumentsApi
250
241
  */
251
- listDocuments(requestParameters?: DocumentsApiListDocumentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDocumentsResponseClass, any>>;
242
+ listDocuments(requestParameters: DocumentsApiListDocumentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDocumentsResponseClass, any>>;
252
243
  }
@@ -196,23 +196,24 @@ var DocumentsApiAxiosParamCreator = function (configuration) {
196
196
  /**
197
197
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
198
198
  * @summary List documents
199
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
199
200
  * @param {string} [authorization] Bearer Token
200
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
201
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
202
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
203
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
204
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
205
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
201
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
202
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
203
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
204
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
206
205
  * @param {*} [options] Override http request option.
207
206
  * @throws {RequiredError}
208
207
  */
209
- listDocuments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
208
+ listDocuments: function (filter, authorization, pageSize, pageToken, order, expand, options) {
210
209
  if (options === void 0) { options = {}; }
211
210
  return __awaiter(_this, void 0, void 0, function () {
212
211
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
213
212
  return __generator(this, function (_a) {
214
213
  switch (_a.label) {
215
214
  case 0:
215
+ // verify required parameter 'filter' is not null or undefined
216
+ (0, common_1.assertParamExists)('listDocuments', 'filter', filter);
216
217
  localVarPath = "/publicapi/v1/documents";
217
218
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
218
219
  if (configuration) {
@@ -238,9 +239,6 @@ var DocumentsApiAxiosParamCreator = function (configuration) {
238
239
  if (filter !== undefined) {
239
240
  localVarQueryParameter['filter'] = filter;
240
241
  }
241
- if (search !== undefined) {
242
- localVarQueryParameter['search'] = search;
243
- }
244
242
  if (order !== undefined) {
245
243
  localVarQueryParameter['order'] = order;
246
244
  }
@@ -316,22 +314,21 @@ var DocumentsApiFp = function (configuration) {
316
314
  /**
317
315
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
318
316
  * @summary List documents
317
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
319
318
  * @param {string} [authorization] Bearer Token
320
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
321
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
322
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
323
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
324
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
325
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
319
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
320
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
321
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
322
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
326
323
  * @param {*} [options] Override http request option.
327
324
  * @throws {RequiredError}
328
325
  */
329
- listDocuments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
326
+ listDocuments: function (filter, authorization, pageSize, pageToken, order, expand, options) {
330
327
  return __awaiter(this, void 0, void 0, function () {
331
328
  var localVarAxiosArgs;
332
329
  return __generator(this, function (_a) {
333
330
  switch (_a.label) {
334
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDocuments(authorization, pageSize, pageToken, filter, search, order, expand, options)];
331
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDocuments(filter, authorization, pageSize, pageToken, order, expand, options)];
335
332
  case 1:
336
333
  localVarAxiosArgs = _a.sent();
337
334
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -374,18 +371,17 @@ var DocumentsApiFactory = function (configuration, basePath, axios) {
374
371
  /**
375
372
  * Returns a list of documents you have previously created. The documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
376
373
  * @summary List documents
374
+ * @param {string} filter Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
377
375
  * @param {string} [authorization] Bearer Token
378
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
379
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
380
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
381
- * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
382
- * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
383
- * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
376
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
377
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
378
+ * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
379
+ * @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
384
380
  * @param {*} [options] Override http request option.
385
381
  * @throws {RequiredError}
386
382
  */
387
- listDocuments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
388
- return localVarFp.listDocuments(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
383
+ listDocuments: function (filter, authorization, pageSize, pageToken, order, expand, options) {
384
+ return localVarFp.listDocuments(filter, authorization, pageSize, pageToken, order, expand, options).then(function (request) { return request(axios, basePath); });
389
385
  },
390
386
  };
391
387
  };
@@ -435,8 +431,7 @@ var DocumentsApi = /** @class */ (function (_super) {
435
431
  */
436
432
  DocumentsApi.prototype.listDocuments = function (requestParameters, options) {
437
433
  var _this = this;
438
- if (requestParameters === void 0) { requestParameters = {}; }
439
- return (0, exports.DocumentsApiFp)(this.configuration).listDocuments(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
434
+ return (0, exports.DocumentsApiFp)(this.configuration).listDocuments(requestParameters.filter, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
440
435
  };
441
436
  return DocumentsApi;
442
437
  }(base_1.BaseAPI));
package/dist/api.d.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ export * from './api/address-completions-validations-api';
12
13
  export * from './api/documents-api';
13
14
  export * from './api/leads-api';
14
15
  export * from './api/notifications-api';
package/dist/api.js CHANGED
@@ -27,6 +27,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
27
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
+ __exportStar(require("./api/address-completions-validations-api"), exports);
30
31
  __exportStar(require("./api/documents-api"), exports);
31
32
  __exportStar(require("./api/leads-api"), exports);
32
33
  __exportStar(require("./api/notifications-api"), exports);
@@ -0,0 +1,49 @@
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 { SuggestedAddressDetailsClass } from './suggested-address-details-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface AddressCompletionItemClass
17
+ */
18
+ export interface AddressCompletionItemClass {
19
+ /**
20
+ * Detailed breakdown of the address suggestion
21
+ * @type {SuggestedAddressDetailsClass}
22
+ * @memberof AddressCompletionItemClass
23
+ */
24
+ 'addressDetails': SuggestedAddressDetailsClass;
25
+ /**
26
+ * The Suggestion ID
27
+ * @type {string}
28
+ * @memberof AddressCompletionItemClass
29
+ */
30
+ 'id': string;
31
+ /**
32
+ * Language of the suggestion
33
+ * @type {string}
34
+ * @memberof AddressCompletionItemClass
35
+ */
36
+ 'language': string;
37
+ /**
38
+ * Title of the suggestion, one liner address
39
+ * @type {string}
40
+ * @memberof AddressCompletionItemClass
41
+ */
42
+ 'title': string;
43
+ /**
44
+ * Indicates the granularity of the suggestion to a street or a house number
45
+ * @type {string}
46
+ * @memberof AddressCompletionItemClass
47
+ */
48
+ 'resultType'?: string;
49
+ }
@@ -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,25 @@
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 { AddressCompletionItemClass } from './address-completion-item-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface AddressCompletionResponseClass
17
+ */
18
+ export interface AddressCompletionResponseClass {
19
+ /**
20
+ * List of completion suggestions
21
+ * @type {AddressCompletionItemClass}
22
+ * @memberof AddressCompletionResponseClass
23
+ */
24
+ 'items': AddressCompletionItemClass;
25
+ }
@@ -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,48 @@
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 AddressFieldScoreClass
16
+ */
17
+ export interface AddressFieldScoreClass {
18
+ /**
19
+ * Score for the city field
20
+ * @type {object}
21
+ * @memberof AddressFieldScoreClass
22
+ */
23
+ 'city'?: object;
24
+ /**
25
+ * Score for the city field
26
+ * @type {object}
27
+ * @memberof AddressFieldScoreClass
28
+ */
29
+ 'country'?: object;
30
+ /**
31
+ * Score for the city field
32
+ * @type {object}
33
+ * @memberof AddressFieldScoreClass
34
+ */
35
+ 'houseNumber'?: object;
36
+ /**
37
+ * Score for the city field
38
+ * @type {object}
39
+ * @memberof AddressFieldScoreClass
40
+ */
41
+ 'postalCode'?: object;
42
+ /**
43
+ * Score for the city field
44
+ * @type {object}
45
+ * @memberof AddressFieldScoreClass
46
+ */
47
+ 'street'?: object;
48
+ }
@@ -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 });
@@ -38,6 +38,18 @@ export interface CreateLeadRequestDto {
38
38
  * @memberof CreateLeadRequestDto
39
39
  */
40
40
  'productCode': string;
41
+ /**
42
+ * Account. The create lead request should either contain accountCode or account.
43
+ * @type {CreateAccountRequestDto}
44
+ * @memberof CreateLeadRequestDto
45
+ */
46
+ 'account'?: CreateAccountRequestDto;
47
+ /**
48
+ * Account code. The create lead request should either contain accountCode or account.
49
+ * @type {string}
50
+ * @memberof CreateLeadRequestDto
51
+ */
52
+ 'accountCode'?: string;
41
53
  /**
42
54
  *
43
55
  * @type {Array<PolicyObjectRequestDto>}
@@ -74,16 +86,4 @@ export interface CreateLeadRequestDto {
74
86
  * @memberof CreateLeadRequestDto
75
87
  */
76
88
  'premiumOverride'?: PremiumOverrideRequestDto;
77
- /**
78
- *
79
- * @type {CreateAccountRequestDto}
80
- * @memberof CreateLeadRequestDto
81
- */
82
- 'account'?: CreateAccountRequestDto;
83
- /**
84
- *
85
- * @type {string}
86
- * @memberof CreateLeadRequestDto
87
- */
88
- 'accountCode': string;
89
89
  }
@@ -1,3 +1,6 @@
1
+ export * from './address-completion-item-class';
2
+ export * from './address-completion-response-class';
3
+ export * from './address-field-score-class';
1
4
  export * from './complete-braintree-payment-setup-request-dto';
2
5
  export * from './complete-payment-setup-request-dto';
3
6
  export * from './complete-payment-setup-response-class';
@@ -44,6 +47,9 @@ export * from './product-field-class';
44
47
  export * from './product-version-class';
45
48
  export * from './send-notification-request-dto';
46
49
  export * from './send-notification-response-class';
50
+ export * from './structured-address-class';
51
+ export * from './suggested-address-details-class';
47
52
  export * from './update-lead-request-dto';
48
53
  export * from './update-lead-response-class';
49
54
  export * from './uploaded-document-dto';
55
+ export * from './validate-address-response-class';
@@ -14,6 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./address-completion-item-class"), exports);
18
+ __exportStar(require("./address-completion-response-class"), exports);
19
+ __exportStar(require("./address-field-score-class"), exports);
17
20
  __exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
18
21
  __exportStar(require("./complete-payment-setup-request-dto"), exports);
19
22
  __exportStar(require("./complete-payment-setup-response-class"), exports);
@@ -60,6 +63,9 @@ __exportStar(require("./product-field-class"), exports);
60
63
  __exportStar(require("./product-version-class"), exports);
61
64
  __exportStar(require("./send-notification-request-dto"), exports);
62
65
  __exportStar(require("./send-notification-response-class"), exports);
66
+ __exportStar(require("./structured-address-class"), exports);
67
+ __exportStar(require("./suggested-address-details-class"), exports);
63
68
  __exportStar(require("./update-lead-request-dto"), exports);
64
69
  __exportStar(require("./update-lead-response-class"), exports);
65
70
  __exportStar(require("./uploaded-document-dto"), exports);
71
+ __exportStar(require("./validate-address-response-class"), exports);
@@ -53,23 +53,23 @@ export interface InsuredObjectClass {
53
53
  */
54
54
  'productFields': Array<ProductFieldClass>;
55
55
  /**
56
- * Insured object count default to 1.
57
- * @type {number}
56
+ * A boolean value indicating whether the current insured object is multiple or not default to false.
57
+ * @type {boolean}
58
58
  * @memberof InsuredObjectClass
59
59
  */
60
- 'count': number;
60
+ 'isMultiInsuredObject': boolean;
61
61
  /**
62
- * Minimum insured object count default to 0.
62
+ * Minimum insured objects count
63
63
  * @type {number}
64
64
  * @memberof InsuredObjectClass
65
65
  */
66
- 'min': number;
66
+ 'minInsuredObjectsCount'?: number;
67
67
  /**
68
- * Maximum insured object count default to 1.
68
+ * Maximum insured objects count
69
69
  * @type {number}
70
70
  * @memberof InsuredObjectClass
71
71
  */
72
- 'max': number;
72
+ 'maxInsuredObjectsCount'?: number;
73
73
  /**
74
74
  * Time at which the object was created.
75
75
  * @type {string}
@@ -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 StructuredAddressClass
16
+ */
17
+ export interface StructuredAddressClass {
18
+ /**
19
+ * City of the address.
20
+ * @type {string}
21
+ * @memberof StructuredAddressClass
22
+ */
23
+ 'city': string;
24
+ /**
25
+ * List of broken down address components.
26
+ * @type {Array<string>}
27
+ * @memberof StructuredAddressClass
28
+ */
29
+ 'components': Array<string>;
30
+ /**
31
+ * Country of the address.
32
+ * @type {string}
33
+ * @memberof StructuredAddressClass
34
+ */
35
+ 'country': string;
36
+ /**
37
+ * House number of the address.
38
+ * @type {string}
39
+ * @memberof StructuredAddressClass
40
+ */
41
+ 'houseNumber': string;
42
+ /**
43
+ * Postal code of the address.
44
+ * @type {string}
45
+ * @memberof StructuredAddressClass
46
+ */
47
+ 'postalCode': string;
48
+ /**
49
+ * Street of the address.
50
+ * @type {string}
51
+ * @memberof StructuredAddressClass
52
+ */
53
+ 'street': string;
54
+ }