@emilgroup/claim-sdk-node 1.32.0 → 1.32.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/claim-sdk-node@1.32.0 --save
20
+ npm install @emilgroup/claim-sdk-node@1.32.1-beta.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk-node@1.32.0
24
+ yarn add @emilgroup/claim-sdk-node@1.32.1-beta.0
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -43,7 +43,7 @@ const FormData = require('form-data');
43
43
  export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: Configuration) {
44
44
  return {
45
45
  /**
46
- * This will create a claim partner role.
46
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
47
47
  * @summary Create the claim partner role
48
48
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
49
49
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -90,7 +90,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
90
90
  };
91
91
  },
92
92
  /**
93
- * 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.
93
+ * 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\"
94
94
  * @summary Delete the claim partner role
95
95
  * @param {string} code Unique identifier for the object.
96
96
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -135,7 +135,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
135
135
  };
136
136
  },
137
137
  /**
138
- * 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.
138
+ * 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\"
139
139
  * @summary Retrieve the claim partner role
140
140
  * @param {string} code Unique identifier for the object.
141
141
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -180,7 +180,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
180
180
  };
181
181
  },
182
182
  /**
183
- * 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.
183
+ * 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\"
184
184
  * @summary List claim partner roles
185
185
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
186
186
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -256,7 +256,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
256
256
  };
257
257
  },
258
258
  /**
259
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
259
+ * 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\"
260
260
  * @summary Update the claim partner role
261
261
  * @param {string} code Unique identifier for the object.
262
262
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
@@ -317,7 +317,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
317
317
  const localVarAxiosParamCreator = ClaimPartnerRolesApiAxiosParamCreator(configuration)
318
318
  return {
319
319
  /**
320
- * This will create a claim partner role.
320
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
321
321
  * @summary Create the claim partner role
322
322
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
323
323
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -329,7 +329,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
329
329
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
330
330
  },
331
331
  /**
332
- * 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.
332
+ * 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\"
333
333
  * @summary Delete the claim partner role
334
334
  * @param {string} code Unique identifier for the object.
335
335
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -341,7 +341,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
341
341
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
342
342
  },
343
343
  /**
344
- * 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.
344
+ * 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\"
345
345
  * @summary Retrieve the claim partner role
346
346
  * @param {string} code Unique identifier for the object.
347
347
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -353,7 +353,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
353
353
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
354
354
  },
355
355
  /**
356
- * 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.
356
+ * 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\"
357
357
  * @summary List claim partner roles
358
358
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
359
359
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -371,7 +371,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
371
371
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
372
372
  },
373
373
  /**
374
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
374
+ * 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\"
375
375
  * @summary Update the claim partner role
376
376
  * @param {string} code Unique identifier for the object.
377
377
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
@@ -394,7 +394,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
394
394
  const localVarFp = ClaimPartnerRolesApiFp(configuration)
395
395
  return {
396
396
  /**
397
- * This will create a claim partner role.
397
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
398
398
  * @summary Create the claim partner role
399
399
  * @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
400
400
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -405,7 +405,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
405
405
  return localVarFp.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
406
406
  },
407
407
  /**
408
- * 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.
408
+ * 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\"
409
409
  * @summary Delete the claim partner role
410
410
  * @param {string} code Unique identifier for the object.
411
411
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -416,7 +416,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
416
416
  return localVarFp.deleteClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
417
417
  },
418
418
  /**
419
- * 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.
419
+ * 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\"
420
420
  * @summary Retrieve the claim partner role
421
421
  * @param {string} code Unique identifier for the object.
422
422
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -427,7 +427,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
427
427
  return localVarFp.getClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
428
428
  },
429
429
  /**
430
- * 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.
430
+ * 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\"
431
431
  * @summary List claim partner roles
432
432
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
433
433
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -444,7 +444,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
444
444
  return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
445
445
  },
446
446
  /**
447
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
447
+ * 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\"
448
448
  * @summary Update the claim partner role
449
449
  * @param {string} code Unique identifier for the object.
450
450
  * @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
@@ -620,7 +620,7 @@ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
620
620
  */
621
621
  export class ClaimPartnerRolesApi extends BaseAPI {
622
622
  /**
623
- * This will create a claim partner role.
623
+ * This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
624
624
  * @summary Create the claim partner role
625
625
  * @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
626
626
  * @param {*} [options] Override http request option.
@@ -632,7 +632,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
632
632
  }
633
633
 
634
634
  /**
635
- * 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.
635
+ * 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\"
636
636
  * @summary Delete the claim partner role
637
637
  * @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
638
638
  * @param {*} [options] Override http request option.
@@ -644,7 +644,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
644
644
  }
645
645
 
646
646
  /**
647
- * 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.
647
+ * 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\"
648
648
  * @summary Retrieve the claim partner role
649
649
  * @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
650
650
  * @param {*} [options] Override http request option.
@@ -656,7 +656,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
656
656
  }
657
657
 
658
658
  /**
659
- * 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.
659
+ * 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\"
660
660
  * @summary List claim partner roles
661
661
  * @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
662
662
  * @param {*} [options] Override http request option.
@@ -668,7 +668,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
668
668
  }
669
669
 
670
670
  /**
671
- * Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
671
+ * 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\"
672
672
  * @summary Update the claim partner role
673
673
  * @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
674
674
  * @param {*} [options] Override http request option.
@@ -39,7 +39,7 @@ const FormData = require('form-data');
39
39
  export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Configuration) {
40
40
  return {
41
41
  /**
42
- * This will create a claim partner.
42
+ * This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
43
43
  * @summary Create the claim partner
44
44
  * @param {string} claimCode Unique identifier for the claim object.
45
45
  * @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
@@ -90,7 +90,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
90
90
  };
91
91
  },
92
92
  /**
93
- * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
93
+ * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
94
94
  * @summary Delete the claim partner
95
95
  * @param {number} id
96
96
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -135,7 +135,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
135
135
  };
136
136
  },
137
137
  /**
138
- * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
138
+ * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
139
139
  * @summary Retrieve the claim partner
140
140
  * @param {number} id
141
141
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -180,7 +180,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
180
180
  };
181
181
  },
182
182
  /**
183
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
183
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
184
184
  * @summary List claim partners
185
185
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
186
186
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -266,7 +266,7 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
266
266
  const localVarAxiosParamCreator = ClaimPartnersApiAxiosParamCreator(configuration)
267
267
  return {
268
268
  /**
269
- * This will create a claim partner.
269
+ * This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
270
270
  * @summary Create the claim partner
271
271
  * @param {string} claimCode Unique identifier for the claim object.
272
272
  * @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
@@ -279,7 +279,7 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
279
279
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
280
280
  },
281
281
  /**
282
- * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
282
+ * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
283
283
  * @summary Delete the claim partner
284
284
  * @param {number} id
285
285
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -291,7 +291,7 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
291
291
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
292
292
  },
293
293
  /**
294
- * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
294
+ * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
295
295
  * @summary Retrieve the claim partner
296
296
  * @param {number} id
297
297
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -303,7 +303,7 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
303
303
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
304
304
  },
305
305
  /**
306
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
306
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
307
307
  * @summary List claim partners
308
308
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
309
309
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -331,7 +331,7 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
331
331
  const localVarFp = ClaimPartnersApiFp(configuration)
332
332
  return {
333
333
  /**
334
- * This will create a claim partner.
334
+ * This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
335
335
  * @summary Create the claim partner
336
336
  * @param {string} claimCode Unique identifier for the claim object.
337
337
  * @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
@@ -343,7 +343,7 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
343
343
  return localVarFp.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
344
344
  },
345
345
  /**
346
- * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
346
+ * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
347
347
  * @summary Delete the claim partner
348
348
  * @param {number} id
349
349
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -354,7 +354,7 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
354
354
  return localVarFp.deleteClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
355
355
  },
356
356
  /**
357
- * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
357
+ * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
358
358
  * @summary Retrieve the claim partner
359
359
  * @param {number} id
360
360
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -365,7 +365,7 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
365
365
  return localVarFp.getClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
366
366
  },
367
367
  /**
368
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
368
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
369
369
  * @summary List claim partners
370
370
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
371
371
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -525,7 +525,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
525
525
  */
526
526
  export class ClaimPartnersApi extends BaseAPI {
527
527
  /**
528
- * This will create a claim partner.
528
+ * This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
529
529
  * @summary Create the claim partner
530
530
  * @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
531
531
  * @param {*} [options] Override http request option.
@@ -537,7 +537,7 @@ export class ClaimPartnersApi extends BaseAPI {
537
537
  }
538
538
 
539
539
  /**
540
- * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
540
+ * Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
541
541
  * @summary Delete the claim partner
542
542
  * @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
543
543
  * @param {*} [options] Override http request option.
@@ -549,7 +549,7 @@ export class ClaimPartnersApi extends BaseAPI {
549
549
  }
550
550
 
551
551
  /**
552
- * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
552
+ * Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
553
553
  * @summary Retrieve the claim partner
554
554
  * @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
555
555
  * @param {*} [options] Override http request option.
@@ -561,7 +561,7 @@ export class ClaimPartnersApi extends BaseAPI {
561
561
  }
562
562
 
563
563
  /**
564
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
564
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
565
565
  * @summary List claim partners
566
566
  * @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
567
567
  * @param {*} [options] Override http request option.
@@ -39,7 +39,7 @@ const FormData = require('form-data');
39
39
  export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Configuration) {
40
40
  return {
41
41
  /**
42
- * This endpoint will create a new regulation item for a claim
42
+ * This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
43
43
  * @summary Create the claim regulation item
44
44
  * @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
45
45
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -86,7 +86,7 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
86
86
  };
87
87
  },
88
88
  /**
89
- * This will delete the regulation item identified by the code.
89
+ * This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
90
90
  * @summary Delete the claim regulation item
91
91
  * @param {string} code Unique identifier for the object.
92
92
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -131,7 +131,7 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
131
131
  };
132
132
  },
133
133
  /**
134
- * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
134
+ * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
135
135
  * @summary Retrieve the claim regulation item
136
136
  * @param {string} code
137
137
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -181,7 +181,7 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
181
181
  };
182
182
  },
183
183
  /**
184
- * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
184
+ * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
185
185
  * @summary List claim regulation items
186
186
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
187
187
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -257,7 +257,7 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
257
257
  };
258
258
  },
259
259
  /**
260
- * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
260
+ * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
261
261
  * @summary Update the claim regulation item
262
262
  * @param {string} code Unique identifier for the object.
263
263
  * @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
@@ -318,7 +318,7 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
318
318
  const localVarAxiosParamCreator = ClaimRegulationsApiAxiosParamCreator(configuration)
319
319
  return {
320
320
  /**
321
- * This endpoint will create a new regulation item for a claim
321
+ * This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
322
322
  * @summary Create the claim regulation item
323
323
  * @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
324
324
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -330,7 +330,7 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
330
330
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
331
331
  },
332
332
  /**
333
- * This will delete the regulation item identified by the code.
333
+ * This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
334
334
  * @summary Delete the claim regulation item
335
335
  * @param {string} code Unique identifier for the object.
336
336
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -342,7 +342,7 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
342
342
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
343
343
  },
344
344
  /**
345
- * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
345
+ * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
346
346
  * @summary Retrieve the claim regulation item
347
347
  * @param {string} code
348
348
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -355,7 +355,7 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
355
355
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
356
356
  },
357
357
  /**
358
- * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
358
+ * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
359
359
  * @summary List claim regulation items
360
360
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
361
361
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -373,7 +373,7 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
373
373
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
374
374
  },
375
375
  /**
376
- * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
376
+ * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
377
377
  * @summary Update the claim regulation item
378
378
  * @param {string} code Unique identifier for the object.
379
379
  * @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
@@ -396,7 +396,7 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
396
396
  const localVarFp = ClaimRegulationsApiFp(configuration)
397
397
  return {
398
398
  /**
399
- * This endpoint will create a new regulation item for a claim
399
+ * This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
400
400
  * @summary Create the claim regulation item
401
401
  * @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
402
402
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -407,7 +407,7 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
407
407
  return localVarFp.createClaimRegulation(createRegulationItemRequestDto, authorization, options).then((request) => request(axios, basePath));
408
408
  },
409
409
  /**
410
- * This will delete the regulation item identified by the code.
410
+ * This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
411
411
  * @summary Delete the claim regulation item
412
412
  * @param {string} code Unique identifier for the object.
413
413
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -418,7 +418,7 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
418
418
  return localVarFp.deleteClaimRegulations(code, authorization, options).then((request) => request(axios, basePath));
419
419
  },
420
420
  /**
421
- * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
421
+ * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
422
422
  * @summary Retrieve the claim regulation item
423
423
  * @param {string} code
424
424
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -430,7 +430,7 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
430
430
  return localVarFp.getClaimRegulation(code, authorization, expand, options).then((request) => request(axios, basePath));
431
431
  },
432
432
  /**
433
- * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
433
+ * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
434
434
  * @summary List claim regulation items
435
435
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
436
436
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -447,7 +447,7 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
447
447
  return localVarFp.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
448
448
  },
449
449
  /**
450
- * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
450
+ * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
451
451
  * @summary Update the claim regulation item
452
452
  * @param {string} code Unique identifier for the object.
453
453
  * @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
@@ -630,7 +630,7 @@ export interface ClaimRegulationsApiUpdateClaimRegulationRequest {
630
630
  */
631
631
  export class ClaimRegulationsApi extends BaseAPI {
632
632
  /**
633
- * This endpoint will create a new regulation item for a claim
633
+ * This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
634
634
  * @summary Create the claim regulation item
635
635
  * @param {ClaimRegulationsApiCreateClaimRegulationRequest} requestParameters Request parameters.
636
636
  * @param {*} [options] Override http request option.
@@ -642,7 +642,7 @@ export class ClaimRegulationsApi extends BaseAPI {
642
642
  }
643
643
 
644
644
  /**
645
- * This will delete the regulation item identified by the code.
645
+ * This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
646
646
  * @summary Delete the claim regulation item
647
647
  * @param {ClaimRegulationsApiDeleteClaimRegulationsRequest} requestParameters Request parameters.
648
648
  * @param {*} [options] Override http request option.
@@ -654,7 +654,7 @@ export class ClaimRegulationsApi extends BaseAPI {
654
654
  }
655
655
 
656
656
  /**
657
- * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
657
+ * Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
658
658
  * @summary Retrieve the claim regulation item
659
659
  * @param {ClaimRegulationsApiGetClaimRegulationRequest} requestParameters Request parameters.
660
660
  * @param {*} [options] Override http request option.
@@ -666,7 +666,7 @@ export class ClaimRegulationsApi extends BaseAPI {
666
666
  }
667
667
 
668
668
  /**
669
- * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
669
+ * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
670
670
  * @summary List claim regulation items
671
671
  * @param {ClaimRegulationsApiListClaimRegulationsRequest} requestParameters Request parameters.
672
672
  * @param {*} [options] Override http request option.
@@ -678,7 +678,7 @@ export class ClaimRegulationsApi extends BaseAPI {
678
678
  }
679
679
 
680
680
  /**
681
- * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
681
+ * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
682
682
  * @summary Update the claim regulation item
683
683
  * @param {ClaimRegulationsApiUpdateClaimRegulationRequest} requestParameters Request parameters.
684
684
  * @param {*} [options] Override http request option.