@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.1-beta.2

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.
@@ -50,10 +50,10 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
50
50
  * @param {*} [options] Override http request option.
51
51
  * @throws {RequiredError}
52
52
  */
53
- createClaimPartnerRole0: async (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
53
+ createClaimPartnerRole: async (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
54
54
  // verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
55
- assertParamExists('createClaimPartnerRole0', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto)
56
- const localVarPath = `/v1/claim-partner-roles`;
55
+ assertParamExists('createClaimPartnerRole', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto)
56
+ const localVarPath = `/claimservice/v1/claim-partner-roles`;
57
57
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
58
58
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
59
59
  let baseOptions;
@@ -90,17 +90,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
90
90
  };
91
91
  },
92
92
  /**
93
- * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
93
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
94
94
  * @summary Create the claim partner role
95
95
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
96
96
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
97
97
  * @param {*} [options] Override http request option.
98
+ * @deprecated
98
99
  * @throws {RequiredError}
99
100
  */
100
101
  createClaimPartnerRole1: async (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
101
102
  // verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
102
103
  assertParamExists('createClaimPartnerRole1', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto)
103
- const localVarPath = `/claimservice/v1/claim-partner-roles`;
104
+ const localVarPath = `/v1/claim-partner-roles`;
104
105
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
105
106
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
106
107
  let baseOptions;
@@ -144,10 +145,10 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
144
145
  * @param {*} [options] Override http request option.
145
146
  * @throws {RequiredError}
146
147
  */
147
- deleteClaimPartnerRole0: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
148
+ deleteClaimPartnerRole: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
148
149
  // verify required parameter 'code' is not null or undefined
149
- assertParamExists('deleteClaimPartnerRole0', 'code', code)
150
- const localVarPath = `/v1/claim-partner-roles/{code}`
150
+ assertParamExists('deleteClaimPartnerRole', 'code', code)
151
+ const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
151
152
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
152
153
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
153
154
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -182,17 +183,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
182
183
  };
183
184
  },
184
185
  /**
185
- * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
186
+ * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
186
187
  * @summary Delete the claim partner role
187
188
  * @param {string} code Unique identifier for the object.
188
189
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
189
190
  * @param {*} [options] Override http request option.
191
+ * @deprecated
190
192
  * @throws {RequiredError}
191
193
  */
192
194
  deleteClaimPartnerRole1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
195
  // verify required parameter 'code' is not null or undefined
194
196
  assertParamExists('deleteClaimPartnerRole1', 'code', code)
195
- const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
197
+ const localVarPath = `/v1/claim-partner-roles/{code}`
196
198
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
197
199
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
198
200
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -234,10 +236,10 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
234
236
  * @param {*} [options] Override http request option.
235
237
  * @throws {RequiredError}
236
238
  */
237
- getClaimPartnerRole0: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
239
+ getClaimPartnerRole: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
238
240
  // verify required parameter 'code' is not null or undefined
239
- assertParamExists('getClaimPartnerRole0', 'code', code)
240
- const localVarPath = `/v1/claim-partner-roles/{code}`
241
+ assertParamExists('getClaimPartnerRole', 'code', code)
242
+ const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
241
243
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
242
244
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
243
245
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -272,17 +274,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
272
274
  };
273
275
  },
274
276
  /**
275
- * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
277
+ * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
276
278
  * @summary Retrieve the claim partner role
277
279
  * @param {string} code Unique identifier for the object.
278
280
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
279
281
  * @param {*} [options] Override http request option.
282
+ * @deprecated
280
283
  * @throws {RequiredError}
281
284
  */
282
285
  getClaimPartnerRole1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
283
286
  // verify required parameter 'code' is not null or undefined
284
287
  assertParamExists('getClaimPartnerRole1', 'code', code)
285
- const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
288
+ const localVarPath = `/v1/claim-partner-roles/{code}`
286
289
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
287
290
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
288
291
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -330,8 +333,8 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
330
333
  * @param {*} [options] Override http request option.
331
334
  * @throws {RequiredError}
332
335
  */
333
- listClaimPartnerRole0: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
334
- const localVarPath = `/v1/claim-partner-roles`;
336
+ listClaimPartnerRole: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
337
+ const localVarPath = `/claimservice/v1/claim-partner-roles`;
335
338
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
336
339
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
337
340
  let baseOptions;
@@ -393,7 +396,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
393
396
  };
394
397
  },
395
398
  /**
396
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
399
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
397
400
  * @summary List claim partner roles
398
401
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
399
402
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -404,10 +407,11 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
404
407
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
405
408
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: name, productSlug&lt;/i&gt;
406
409
  * @param {*} [options] Override http request option.
410
+ * @deprecated
407
411
  * @throws {RequiredError}
408
412
  */
409
413
  listClaimPartnerRole1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
410
- const localVarPath = `/claimservice/v1/claim-partner-roles`;
414
+ const localVarPath = `/v1/claim-partner-roles`;
411
415
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
412
416
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
413
417
  let baseOptions;
@@ -477,12 +481,12 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
477
481
  * @param {*} [options] Override http request option.
478
482
  * @throws {RequiredError}
479
483
  */
480
- updateClaimPartnerRole0: async (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
484
+ updateClaimPartnerRole: async (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
481
485
  // verify required parameter 'code' is not null or undefined
482
- assertParamExists('updateClaimPartnerRole0', 'code', code)
486
+ assertParamExists('updateClaimPartnerRole', 'code', code)
483
487
  // verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
484
- assertParamExists('updateClaimPartnerRole0', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto)
485
- const localVarPath = `/v1/claim-partner-roles/{code}`
488
+ assertParamExists('updateClaimPartnerRole', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto)
489
+ const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
486
490
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
487
491
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
488
492
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -520,12 +524,13 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
520
524
  };
521
525
  },
522
526
  /**
523
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
527
+ * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
524
528
  * @summary Update the claim partner role
525
529
  * @param {string} code Unique identifier for the object.
526
530
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
527
531
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
528
532
  * @param {*} [options] Override http request option.
533
+ * @deprecated
529
534
  * @throws {RequiredError}
530
535
  */
531
536
  updateClaimPartnerRole1: async (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -533,7 +538,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
533
538
  assertParamExists('updateClaimPartnerRole1', 'code', code)
534
539
  // verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
535
540
  assertParamExists('updateClaimPartnerRole1', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto)
536
- const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
541
+ const localVarPath = `/v1/claim-partner-roles/{code}`
537
542
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
538
543
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
539
544
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -588,16 +593,17 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
588
593
  * @param {*} [options] Override http request option.
589
594
  * @throws {RequiredError}
590
595
  */
591
- async createClaimPartnerRole0(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>> {
592
- const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartnerRole0(createClaimPartnerRoleRequestDto, authorization, options);
596
+ async createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>> {
597
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options);
593
598
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
594
599
  },
595
600
  /**
596
- * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
601
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
597
602
  * @summary Create the claim partner role
598
603
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
599
604
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
600
605
  * @param {*} [options] Override http request option.
606
+ * @deprecated
601
607
  * @throws {RequiredError}
602
608
  */
603
609
  async createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>> {
@@ -612,16 +618,17 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
612
618
  * @param {*} [options] Override http request option.
613
619
  * @throws {RequiredError}
614
620
  */
615
- async deleteClaimPartnerRole0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
616
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartnerRole0(code, authorization, options);
621
+ async deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
622
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartnerRole(code, authorization, options);
617
623
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
618
624
  },
619
625
  /**
620
- * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
626
+ * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
621
627
  * @summary Delete the claim partner role
622
628
  * @param {string} code Unique identifier for the object.
623
629
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
624
630
  * @param {*} [options] Override http request option.
631
+ * @deprecated
625
632
  * @throws {RequiredError}
626
633
  */
627
634
  async deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
@@ -636,16 +643,17 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
636
643
  * @param {*} [options] Override http request option.
637
644
  * @throws {RequiredError}
638
645
  */
639
- async getClaimPartnerRole0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>> {
640
- const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartnerRole0(code, authorization, options);
646
+ async getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>> {
647
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartnerRole(code, authorization, options);
641
648
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
642
649
  },
643
650
  /**
644
- * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
651
+ * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
645
652
  * @summary Retrieve the claim partner role
646
653
  * @param {string} code Unique identifier for the object.
647
654
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
648
655
  * @param {*} [options] Override http request option.
656
+ * @deprecated
649
657
  * @throws {RequiredError}
650
658
  */
651
659
  async getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>> {
@@ -666,12 +674,12 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
666
674
  * @param {*} [options] Override http request option.
667
675
  * @throws {RequiredError}
668
676
  */
669
- async listClaimPartnerRole0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>> {
670
- const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartnerRole0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
677
+ async listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>> {
678
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
671
679
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
672
680
  },
673
681
  /**
674
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
682
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
675
683
  * @summary List claim partner roles
676
684
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
677
685
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -682,6 +690,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
682
690
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
683
691
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: name, productSlug&lt;/i&gt;
684
692
  * @param {*} [options] Override http request option.
693
+ * @deprecated
685
694
  * @throws {RequiredError}
686
695
  */
687
696
  async listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>> {
@@ -697,17 +706,18 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
697
706
  * @param {*} [options] Override http request option.
698
707
  * @throws {RequiredError}
699
708
  */
700
- async updateClaimPartnerRole0(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>> {
701
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPartnerRole0(code, updateClaimPartnerRoleRequestDto, authorization, options);
709
+ async updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>> {
710
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimPartnerRole(code, updateClaimPartnerRoleRequestDto, authorization, options);
702
711
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
703
712
  },
704
713
  /**
705
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
714
+ * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
706
715
  * @summary Update the claim partner role
707
716
  * @param {string} code Unique identifier for the object.
708
717
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
709
718
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
710
719
  * @param {*} [options] Override http request option.
720
+ * @deprecated
711
721
  * @throws {RequiredError}
712
722
  */
713
723
  async updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>> {
@@ -732,15 +742,16 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
732
742
  * @param {*} [options] Override http request option.
733
743
  * @throws {RequiredError}
734
744
  */
735
- createClaimPartnerRole0(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass> {
736
- return localVarFp.createClaimPartnerRole0(createClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
745
+ createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass> {
746
+ return localVarFp.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
737
747
  },
738
748
  /**
739
- * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
749
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
740
750
  * @summary Create the claim partner role
741
751
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
742
752
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
743
753
  * @param {*} [options] Override http request option.
754
+ * @deprecated
744
755
  * @throws {RequiredError}
745
756
  */
746
757
  createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass> {
@@ -754,15 +765,16 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
754
765
  * @param {*} [options] Override http request option.
755
766
  * @throws {RequiredError}
756
767
  */
757
- deleteClaimPartnerRole0(code: string, authorization?: string, options?: any): AxiosPromise<void> {
758
- return localVarFp.deleteClaimPartnerRole0(code, authorization, options).then((request) => request(axios, basePath));
768
+ deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void> {
769
+ return localVarFp.deleteClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
759
770
  },
760
771
  /**
761
- * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
772
+ * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
762
773
  * @summary Delete the claim partner role
763
774
  * @param {string} code Unique identifier for the object.
764
775
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
765
776
  * @param {*} [options] Override http request option.
777
+ * @deprecated
766
778
  * @throws {RequiredError}
767
779
  */
768
780
  deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void> {
@@ -776,15 +788,16 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
776
788
  * @param {*} [options] Override http request option.
777
789
  * @throws {RequiredError}
778
790
  */
779
- getClaimPartnerRole0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass> {
780
- return localVarFp.getClaimPartnerRole0(code, authorization, options).then((request) => request(axios, basePath));
791
+ getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass> {
792
+ return localVarFp.getClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
781
793
  },
782
794
  /**
783
- * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
795
+ * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
784
796
  * @summary Retrieve the claim partner role
785
797
  * @param {string} code Unique identifier for the object.
786
798
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
787
799
  * @param {*} [options] Override http request option.
800
+ * @deprecated
788
801
  * @throws {RequiredError}
789
802
  */
790
803
  getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass> {
@@ -804,11 +817,11 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
804
817
  * @param {*} [options] Override http request option.
805
818
  * @throws {RequiredError}
806
819
  */
807
- listClaimPartnerRole0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass> {
808
- return localVarFp.listClaimPartnerRole0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
820
+ listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass> {
821
+ return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
809
822
  },
810
823
  /**
811
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
824
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
812
825
  * @summary List claim partner roles
813
826
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
814
827
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -819,6 +832,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
819
832
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
820
833
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: name, productSlug&lt;/i&gt;
821
834
  * @param {*} [options] Override http request option.
835
+ * @deprecated
822
836
  * @throws {RequiredError}
823
837
  */
824
838
  listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass> {
@@ -833,16 +847,17 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
833
847
  * @param {*} [options] Override http request option.
834
848
  * @throws {RequiredError}
835
849
  */
836
- updateClaimPartnerRole0(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass> {
837
- return localVarFp.updateClaimPartnerRole0(code, updateClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
850
+ updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass> {
851
+ return localVarFp.updateClaimPartnerRole(code, updateClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
838
852
  },
839
853
  /**
840
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
854
+ * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
841
855
  * @summary Update the claim partner role
842
856
  * @param {string} code Unique identifier for the object.
843
857
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
844
858
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
845
859
  * @param {*} [options] Override http request option.
860
+ * @deprecated
846
861
  * @throws {RequiredError}
847
862
  */
848
863
  updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass> {
@@ -852,22 +867,22 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
852
867
  };
853
868
 
854
869
  /**
855
- * Request parameters for createClaimPartnerRole0 operation in ClaimPartnerRolesApi.
870
+ * Request parameters for createClaimPartnerRole operation in ClaimPartnerRolesApi.
856
871
  * @export
857
- * @interface ClaimPartnerRolesApiCreateClaimPartnerRole0Request
872
+ * @interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest
858
873
  */
859
- export interface ClaimPartnerRolesApiCreateClaimPartnerRole0Request {
874
+ export interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest {
860
875
  /**
861
876
  *
862
877
  * @type {CreateClaimPartnerRoleRequestDto}
863
- * @memberof ClaimPartnerRolesApiCreateClaimPartnerRole0
878
+ * @memberof ClaimPartnerRolesApiCreateClaimPartnerRole
864
879
  */
865
880
  readonly createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto
866
881
 
867
882
  /**
868
883
  * Bearer Token: provided by the login endpoint under the name accessToken.
869
884
  * @type {string}
870
- * @memberof ClaimPartnerRolesApiCreateClaimPartnerRole0
885
+ * @memberof ClaimPartnerRolesApiCreateClaimPartnerRole
871
886
  */
872
887
  readonly authorization?: string
873
888
  }
@@ -894,22 +909,22 @@ export interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request {
894
909
  }
895
910
 
896
911
  /**
897
- * Request parameters for deleteClaimPartnerRole0 operation in ClaimPartnerRolesApi.
912
+ * Request parameters for deleteClaimPartnerRole operation in ClaimPartnerRolesApi.
898
913
  * @export
899
- * @interface ClaimPartnerRolesApiDeleteClaimPartnerRole0Request
914
+ * @interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest
900
915
  */
901
- export interface ClaimPartnerRolesApiDeleteClaimPartnerRole0Request {
916
+ export interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest {
902
917
  /**
903
918
  * Unique identifier for the object.
904
919
  * @type {string}
905
- * @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole0
920
+ * @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole
906
921
  */
907
922
  readonly code: string
908
923
 
909
924
  /**
910
925
  * Bearer Token: provided by the login endpoint under the name accessToken.
911
926
  * @type {string}
912
- * @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole0
927
+ * @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole
913
928
  */
914
929
  readonly authorization?: string
915
930
  }
@@ -936,22 +951,22 @@ export interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request {
936
951
  }
937
952
 
938
953
  /**
939
- * Request parameters for getClaimPartnerRole0 operation in ClaimPartnerRolesApi.
954
+ * Request parameters for getClaimPartnerRole operation in ClaimPartnerRolesApi.
940
955
  * @export
941
- * @interface ClaimPartnerRolesApiGetClaimPartnerRole0Request
956
+ * @interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest
942
957
  */
943
- export interface ClaimPartnerRolesApiGetClaimPartnerRole0Request {
958
+ export interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest {
944
959
  /**
945
960
  * Unique identifier for the object.
946
961
  * @type {string}
947
- * @memberof ClaimPartnerRolesApiGetClaimPartnerRole0
962
+ * @memberof ClaimPartnerRolesApiGetClaimPartnerRole
948
963
  */
949
964
  readonly code: string
950
965
 
951
966
  /**
952
967
  * Bearer Token: provided by the login endpoint under the name accessToken.
953
968
  * @type {string}
954
- * @memberof ClaimPartnerRolesApiGetClaimPartnerRole0
969
+ * @memberof ClaimPartnerRolesApiGetClaimPartnerRole
955
970
  */
956
971
  readonly authorization?: string
957
972
  }
@@ -978,64 +993,64 @@ export interface ClaimPartnerRolesApiGetClaimPartnerRole1Request {
978
993
  }
979
994
 
980
995
  /**
981
- * Request parameters for listClaimPartnerRole0 operation in ClaimPartnerRolesApi.
996
+ * Request parameters for listClaimPartnerRole operation in ClaimPartnerRolesApi.
982
997
  * @export
983
- * @interface ClaimPartnerRolesApiListClaimPartnerRole0Request
998
+ * @interface ClaimPartnerRolesApiListClaimPartnerRoleRequest
984
999
  */
985
- export interface ClaimPartnerRolesApiListClaimPartnerRole0Request {
1000
+ export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
986
1001
  /**
987
1002
  * Bearer Token: provided by the login endpoint under the name accessToken.
988
1003
  * @type {string}
989
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1004
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
990
1005
  */
991
1006
  readonly authorization?: string
992
1007
 
993
1008
  /**
994
1009
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
995
1010
  * @type {number}
996
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1011
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
997
1012
  */
998
1013
  readonly pageSize?: number
999
1014
 
1000
1015
  /**
1001
1016
  * 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.
1002
1017
  * @type {string}
1003
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1018
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1004
1019
  */
1005
1020
  readonly pageToken?: string
1006
1021
 
1007
1022
  /**
1008
1023
  * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: name, productSlug&lt;/i&gt;
1009
1024
  * @type {string}
1010
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1025
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1011
1026
  */
1012
1027
  readonly filter?: string
1013
1028
 
1014
1029
  /**
1015
1030
  * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: name, productSlug&lt;/i&gt;
1016
1031
  * @type {string}
1017
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1032
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1018
1033
  */
1019
1034
  readonly search?: string
1020
1035
 
1021
1036
  /**
1022
1037
  * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, name, productSlug, createdAt, updatedAt&lt;/i&gt;
1023
1038
  * @type {string}
1024
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1039
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1025
1040
  */
1026
1041
  readonly order?: string
1027
1042
 
1028
1043
  /**
1029
1044
  * Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
1030
1045
  * @type {string}
1031
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1046
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1032
1047
  */
1033
1048
  readonly expand?: string
1034
1049
 
1035
1050
  /**
1036
1051
  * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: name, productSlug&lt;/i&gt;
1037
1052
  * @type {string}
1038
- * @memberof ClaimPartnerRolesApiListClaimPartnerRole0
1053
+ * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1039
1054
  */
1040
1055
  readonly filters?: string
1041
1056
  }
@@ -1104,29 +1119,29 @@ export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
1104
1119
  }
1105
1120
 
1106
1121
  /**
1107
- * Request parameters for updateClaimPartnerRole0 operation in ClaimPartnerRolesApi.
1122
+ * Request parameters for updateClaimPartnerRole operation in ClaimPartnerRolesApi.
1108
1123
  * @export
1109
- * @interface ClaimPartnerRolesApiUpdateClaimPartnerRole0Request
1124
+ * @interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest
1110
1125
  */
1111
- export interface ClaimPartnerRolesApiUpdateClaimPartnerRole0Request {
1126
+ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
1112
1127
  /**
1113
1128
  * Unique identifier for the object.
1114
1129
  * @type {string}
1115
- * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
1130
+ * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
1116
1131
  */
1117
1132
  readonly code: string
1118
1133
 
1119
1134
  /**
1120
1135
  *
1121
1136
  * @type {UpdateClaimPartnerRoleRequestDto}
1122
- * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
1137
+ * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
1123
1138
  */
1124
1139
  readonly updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto
1125
1140
 
1126
1141
  /**
1127
1142
  * Bearer Token: provided by the login endpoint under the name accessToken.
1128
1143
  * @type {string}
1129
- * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
1144
+ * @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
1130
1145
  */
1131
1146
  readonly authorization?: string
1132
1147
  }
@@ -1169,20 +1184,21 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1169
1184
  /**
1170
1185
  * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
1171
1186
  * @summary Create the claim partner role
1172
- * @param {ClaimPartnerRolesApiCreateClaimPartnerRole0Request} requestParameters Request parameters.
1187
+ * @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
1173
1188
  * @param {*} [options] Override http request option.
1174
1189
  * @throws {RequiredError}
1175
1190
  * @memberof ClaimPartnerRolesApi
1176
1191
  */
1177
- public createClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRole0Request, options?: AxiosRequestConfig) {
1178
- return ClaimPartnerRolesApiFp(this.configuration).createClaimPartnerRole0(requestParameters.createClaimPartnerRoleRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1192
+ public createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig) {
1193
+ return ClaimPartnerRolesApiFp(this.configuration).createClaimPartnerRole(requestParameters.createClaimPartnerRoleRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1179
1194
  }
1180
1195
 
1181
1196
  /**
1182
- * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
1197
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1183
1198
  * @summary Create the claim partner role
1184
1199
  * @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
1185
1200
  * @param {*} [options] Override http request option.
1201
+ * @deprecated
1186
1202
  * @throws {RequiredError}
1187
1203
  * @memberof ClaimPartnerRolesApi
1188
1204
  */
@@ -1193,20 +1209,21 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1193
1209
  /**
1194
1210
  * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
1195
1211
  * @summary Delete the claim partner role
1196
- * @param {ClaimPartnerRolesApiDeleteClaimPartnerRole0Request} requestParameters Request parameters.
1212
+ * @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
1197
1213
  * @param {*} [options] Override http request option.
1198
1214
  * @throws {RequiredError}
1199
1215
  * @memberof ClaimPartnerRolesApi
1200
1216
  */
1201
- public deleteClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRole0Request, options?: AxiosRequestConfig) {
1202
- return ClaimPartnerRolesApiFp(this.configuration).deleteClaimPartnerRole0(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1217
+ public deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig) {
1218
+ return ClaimPartnerRolesApiFp(this.configuration).deleteClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1203
1219
  }
1204
1220
 
1205
1221
  /**
1206
- * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
1222
+ * Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1207
1223
  * @summary Delete the claim partner role
1208
1224
  * @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
1209
1225
  * @param {*} [options] Override http request option.
1226
+ * @deprecated
1210
1227
  * @throws {RequiredError}
1211
1228
  * @memberof ClaimPartnerRolesApi
1212
1229
  */
@@ -1217,20 +1234,21 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1217
1234
  /**
1218
1235
  * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
1219
1236
  * @summary Retrieve the claim partner role
1220
- * @param {ClaimPartnerRolesApiGetClaimPartnerRole0Request} requestParameters Request parameters.
1237
+ * @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
1221
1238
  * @param {*} [options] Override http request option.
1222
1239
  * @throws {RequiredError}
1223
1240
  * @memberof ClaimPartnerRolesApi
1224
1241
  */
1225
- public getClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRole0Request, options?: AxiosRequestConfig) {
1226
- return ClaimPartnerRolesApiFp(this.configuration).getClaimPartnerRole0(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1242
+ public getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig) {
1243
+ return ClaimPartnerRolesApiFp(this.configuration).getClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1227
1244
  }
1228
1245
 
1229
1246
  /**
1230
- * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
1247
+ * Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1231
1248
  * @summary Retrieve the claim partner role
1232
1249
  * @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
1233
1250
  * @param {*} [options] Override http request option.
1251
+ * @deprecated
1234
1252
  * @throws {RequiredError}
1235
1253
  * @memberof ClaimPartnerRolesApi
1236
1254
  */
@@ -1241,20 +1259,21 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1241
1259
  /**
1242
1260
  * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
1243
1261
  * @summary List claim partner roles
1244
- * @param {ClaimPartnerRolesApiListClaimPartnerRole0Request} requestParameters Request parameters.
1262
+ * @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
1245
1263
  * @param {*} [options] Override http request option.
1246
1264
  * @throws {RequiredError}
1247
1265
  * @memberof ClaimPartnerRolesApi
1248
1266
  */
1249
- public listClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiListClaimPartnerRole0Request = {}, options?: AxiosRequestConfig) {
1250
- return ClaimPartnerRolesApiFp(this.configuration).listClaimPartnerRole0(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
1267
+ public listClaimPartnerRole(requestParameters: ClaimPartnerRolesApiListClaimPartnerRoleRequest = {}, options?: AxiosRequestConfig) {
1268
+ return ClaimPartnerRolesApiFp(this.configuration).listClaimPartnerRole(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
1251
1269
  }
1252
1270
 
1253
1271
  /**
1254
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
1272
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1255
1273
  * @summary List claim partner roles
1256
1274
  * @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
1257
1275
  * @param {*} [options] Override http request option.
1276
+ * @deprecated
1258
1277
  * @throws {RequiredError}
1259
1278
  * @memberof ClaimPartnerRolesApi
1260
1279
  */
@@ -1265,20 +1284,21 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1265
1284
  /**
1266
1285
  * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
1267
1286
  * @summary Update the claim partner role
1268
- * @param {ClaimPartnerRolesApiUpdateClaimPartnerRole0Request} requestParameters Request parameters.
1287
+ * @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
1269
1288
  * @param {*} [options] Override http request option.
1270
1289
  * @throws {RequiredError}
1271
1290
  * @memberof ClaimPartnerRolesApi
1272
1291
  */
1273
- public updateClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRole0Request, options?: AxiosRequestConfig) {
1274
- return ClaimPartnerRolesApiFp(this.configuration).updateClaimPartnerRole0(requestParameters.code, requestParameters.updateClaimPartnerRoleRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1292
+ public updateClaimPartnerRole(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest, options?: AxiosRequestConfig) {
1293
+ return ClaimPartnerRolesApiFp(this.configuration).updateClaimPartnerRole(requestParameters.code, requestParameters.updateClaimPartnerRoleRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1275
1294
  }
1276
1295
 
1277
1296
  /**
1278
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
1297
+ * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1279
1298
  * @summary Update the claim partner role
1280
1299
  * @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
1281
1300
  * @param {*} [options] Override http request option.
1301
+ * @deprecated
1282
1302
  * @throws {RequiredError}
1283
1303
  * @memberof ClaimPartnerRolesApi
1284
1304
  */