@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.
@@ -22,7 +22,7 @@ import { ListClaimStatusesResponseClass } from '../models';
22
22
  */
23
23
  export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configuration) => {
24
24
  /**
25
- * This creates a claim status in the database
25
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
26
26
  * @summary Create the claim status
27
27
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
28
28
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -31,7 +31,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
31
31
  */
32
32
  createClaimStatus: (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
33
  /**
34
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
34
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
35
35
  * @summary Delete the claim status
36
36
  * @param {number} id
37
37
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -40,7 +40,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
40
40
  */
41
41
  deleteClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
42
  /**
43
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
43
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
44
44
  * @summary Retrieve the claim status
45
45
  * @param {number} id
46
46
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -49,7 +49,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
49
49
  */
50
50
  getClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
51
  /**
52
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
52
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
53
53
  * @summary List claim statuses
54
54
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
55
55
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -70,7 +70,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
70
70
  */
71
71
  export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
72
72
  /**
73
- * This creates a claim status in the database
73
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
74
74
  * @summary Create the claim status
75
75
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
76
76
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -79,7 +79,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
79
79
  */
80
80
  createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>>;
81
81
  /**
82
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
82
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
83
83
  * @summary Delete the claim status
84
84
  * @param {number} id
85
85
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -88,7 +88,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
88
88
  */
89
89
  deleteClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
90
90
  /**
91
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
91
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
92
92
  * @summary Retrieve the claim status
93
93
  * @param {number} id
94
94
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -97,7 +97,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
97
97
  */
98
98
  getClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>>;
99
99
  /**
100
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
100
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
101
101
  * @summary List claim statuses
102
102
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
103
103
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -118,7 +118,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
118
118
  */
119
119
  export declare const ClaimStatusesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
120
120
  /**
121
- * This creates a claim status in the database
121
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
122
122
  * @summary Create the claim status
123
123
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
124
124
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -127,7 +127,7 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
127
127
  */
128
128
  createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass>;
129
129
  /**
130
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
130
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
131
131
  * @summary Delete the claim status
132
132
  * @param {number} id
133
133
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -136,7 +136,7 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
136
136
  */
137
137
  deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void>;
138
138
  /**
139
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
139
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
140
140
  * @summary Retrieve the claim status
141
141
  * @param {number} id
142
142
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -145,7 +145,7 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
145
145
  */
146
146
  getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass>;
147
147
  /**
148
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
148
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
149
149
  * @summary List claim statuses
150
150
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
151
151
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -280,7 +280,7 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
280
280
  */
281
281
  export declare class ClaimStatusesApi extends BaseAPI {
282
282
  /**
283
- * This creates a claim status in the database
283
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
284
284
  * @summary Create the claim status
285
285
  * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
286
286
  * @param {*} [options] Override http request option.
@@ -289,7 +289,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
289
289
  */
290
290
  createClaimStatus(requestParameters: ClaimStatusesApiCreateClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimStatusResponseClass, any>>;
291
291
  /**
292
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
292
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
293
293
  * @summary Delete the claim status
294
294
  * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
295
295
  * @param {*} [options] Override http request option.
@@ -298,7 +298,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
298
298
  */
299
299
  deleteClaimStatus(requestParameters: ClaimStatusesApiDeleteClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
300
300
  /**
301
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
301
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
302
302
  * @summary Retrieve the claim status
303
303
  * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
304
304
  * @param {*} [options] Override http request option.
@@ -307,7 +307,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
307
307
  */
308
308
  getClaimStatus(requestParameters: ClaimStatusesApiGetClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimStatusResponseClass, any>>;
309
309
  /**
310
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
310
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
311
311
  * @summary List claim statuses
312
312
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
313
313
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This creates a claim status in the database
100
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
101
101
  * @summary Create the claim status
102
102
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
103
103
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -146,7 +146,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
146
146
  });
147
147
  },
148
148
  /**
149
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
149
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
150
150
  * @summary Delete the claim status
151
151
  * @param {number} id
152
152
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -194,7 +194,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
194
194
  });
195
195
  },
196
196
  /**
197
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
197
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
198
198
  * @summary Retrieve the claim status
199
199
  * @param {number} id
200
200
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -242,7 +242,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
242
242
  });
243
243
  },
244
244
  /**
245
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
245
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
246
246
  * @summary List claim statuses
247
247
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
248
248
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -324,7 +324,7 @@ var ClaimStatusesApiFp = function (configuration) {
324
324
  var localVarAxiosParamCreator = (0, exports.ClaimStatusesApiAxiosParamCreator)(configuration);
325
325
  return {
326
326
  /**
327
- * This creates a claim status in the database
327
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
328
328
  * @summary Create the claim status
329
329
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
330
330
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -345,7 +345,7 @@ var ClaimStatusesApiFp = function (configuration) {
345
345
  });
346
346
  },
347
347
  /**
348
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
348
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
349
349
  * @summary Delete the claim status
350
350
  * @param {number} id
351
351
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -366,7 +366,7 @@ var ClaimStatusesApiFp = function (configuration) {
366
366
  });
367
367
  },
368
368
  /**
369
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
369
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
370
370
  * @summary Retrieve the claim status
371
371
  * @param {number} id
372
372
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -387,7 +387,7 @@ var ClaimStatusesApiFp = function (configuration) {
387
387
  });
388
388
  },
389
389
  /**
390
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
390
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
391
391
  * @summary List claim statuses
392
392
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
393
393
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -424,7 +424,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
424
424
  var localVarFp = (0, exports.ClaimStatusesApiFp)(configuration);
425
425
  return {
426
426
  /**
427
- * This creates a claim status in the database
427
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
428
428
  * @summary Create the claim status
429
429
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
430
430
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -435,7 +435,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
435
435
  return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
436
436
  },
437
437
  /**
438
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
438
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
439
439
  * @summary Delete the claim status
440
440
  * @param {number} id
441
441
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -446,7 +446,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
446
446
  return localVarFp.deleteClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
447
447
  },
448
448
  /**
449
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
449
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
450
450
  * @summary Retrieve the claim status
451
451
  * @param {number} id
452
452
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -457,7 +457,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
457
457
  return localVarFp.getClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
458
458
  },
459
459
  /**
460
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
460
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
461
461
  * @summary List claim statuses
462
462
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
463
463
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -488,7 +488,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
488
488
  return _super !== null && _super.apply(this, arguments) || this;
489
489
  }
490
490
  /**
491
- * This creates a claim status in the database
491
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
492
492
  * @summary Create the claim status
493
493
  * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
494
494
  * @param {*} [options] Override http request option.
@@ -500,7 +500,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
500
500
  return (0, exports.ClaimStatusesApiFp)(this.configuration).createClaimStatus(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
501
501
  };
502
502
  /**
503
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
503
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
504
504
  * @summary Delete the claim status
505
505
  * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
506
506
  * @param {*} [options] Override http request option.
@@ -512,7 +512,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
512
512
  return (0, exports.ClaimStatusesApiFp)(this.configuration).deleteClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
513
513
  };
514
514
  /**
515
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
515
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
516
516
  * @summary Retrieve the claim status
517
517
  * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
518
518
  * @param {*} [options] Override http request option.
@@ -524,7 +524,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
524
524
  return (0, exports.ClaimStatusesApiFp)(this.configuration).getClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
525
525
  };
526
526
  /**
527
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
527
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
528
528
  * @summary List claim statuses
529
529
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
530
530
  * @param {*} [options] Override http request option.
@@ -27,7 +27,7 @@ import { UpdateClaimResponseClass } from '../models';
27
27
  */
28
28
  export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration) => {
29
29
  /**
30
- * This will create a claim in the database
30
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
31
31
  * @summary Create the claim
32
32
  * @param {CreateClaimRequestDto} createClaimRequestDto
33
33
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -36,7 +36,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
36
36
  */
37
37
  createClaim: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
38
  /**
39
- * This will delete the requested claim from the database.
39
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
40
40
  * @summary Delete the claim
41
41
  * @param {string} code
42
42
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -45,7 +45,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
45
45
  */
46
46
  deleteClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
47
  /**
48
- * This will fetch the identified claim from the database by code
48
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
49
49
  * @summary Retrieve the claim
50
50
  * @param {string} code
51
51
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -54,7 +54,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
54
54
  */
55
55
  getClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
56
  /**
57
- * This endpoint will calculate and get the regulation summary for a claim.
57
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
58
58
  * @summary Retrieve the claim regulation summary
59
59
  * @param {string} code Unique identifier for the object.
60
60
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -63,7 +63,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
63
63
  */
64
64
  getClaimRegulationSummary: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
65
  /**
66
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
66
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
67
67
  * @summary List claims
68
68
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
69
69
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -78,7 +78,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
78
78
  */
79
79
  listClaims: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
80
80
  /**
81
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
81
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
82
82
  * @summary Patch the claim
83
83
  * @param {string} code
84
84
  * @param {PatchClaimRequestDto} patchClaimRequestDto
@@ -88,7 +88,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
88
88
  */
89
89
  patchClaim: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
90
90
  /**
91
- * This will update the identified claim in the database
91
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
92
92
  * @summary Update the claim
93
93
  * @param {string} code
94
94
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
@@ -104,7 +104,7 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
104
104
  */
105
105
  export declare const ClaimsApiFp: (configuration?: Configuration) => {
106
106
  /**
107
- * This will create a claim in the database
107
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
108
108
  * @summary Create the claim
109
109
  * @param {CreateClaimRequestDto} createClaimRequestDto
110
110
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -113,7 +113,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
113
113
  */
114
114
  createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
115
115
  /**
116
- * This will delete the requested claim from the database.
116
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
117
117
  * @summary Delete the claim
118
118
  * @param {string} code
119
119
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -122,7 +122,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
122
122
  */
123
123
  deleteClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
124
124
  /**
125
- * This will fetch the identified claim from the database by code
125
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
126
126
  * @summary Retrieve the claim
127
127
  * @param {string} code
128
128
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -131,7 +131,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
131
131
  */
132
132
  getClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
133
133
  /**
134
- * This endpoint will calculate and get the regulation summary for a claim.
134
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
135
135
  * @summary Retrieve the claim regulation summary
136
136
  * @param {string} code Unique identifier for the object.
137
137
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -140,7 +140,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
140
140
  */
141
141
  getClaimRegulationSummary(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
142
142
  /**
143
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
143
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
144
144
  * @summary List claims
145
145
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
146
146
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -155,7 +155,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
155
155
  */
156
156
  listClaims(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimsResponseClass>>;
157
157
  /**
158
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
158
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
159
159
  * @summary Patch the claim
160
160
  * @param {string} code
161
161
  * @param {PatchClaimRequestDto} patchClaimRequestDto
@@ -165,7 +165,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
165
165
  */
166
166
  patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
167
167
  /**
168
- * This will update the identified claim in the database
168
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
169
169
  * @summary Update the claim
170
170
  * @param {string} code
171
171
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
@@ -181,7 +181,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
181
181
  */
182
182
  export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
183
183
  /**
184
- * This will create a claim in the database
184
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
185
185
  * @summary Create the claim
186
186
  * @param {CreateClaimRequestDto} createClaimRequestDto
187
187
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -190,7 +190,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
190
190
  */
191
191
  createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
192
192
  /**
193
- * This will delete the requested claim from the database.
193
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
194
194
  * @summary Delete the claim
195
195
  * @param {string} code
196
196
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -199,7 +199,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
199
199
  */
200
200
  deleteClaim(code: string, authorization?: string, options?: any): AxiosPromise<void>;
201
201
  /**
202
- * This will fetch the identified claim from the database by code
202
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
203
203
  * @summary Retrieve the claim
204
204
  * @param {string} code
205
205
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -208,7 +208,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
208
208
  */
209
209
  getClaim(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
210
210
  /**
211
- * This endpoint will calculate and get the regulation summary for a claim.
211
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
212
212
  * @summary Retrieve the claim regulation summary
213
213
  * @param {string} code Unique identifier for the object.
214
214
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -217,7 +217,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
217
217
  */
218
218
  getClaimRegulationSummary(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
219
219
  /**
220
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
220
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
221
221
  * @summary List claims
222
222
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
223
223
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -232,7 +232,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
232
232
  */
233
233
  listClaims(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
234
234
  /**
235
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
235
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
236
236
  * @summary Patch the claim
237
237
  * @param {string} code
238
238
  * @param {PatchClaimRequestDto} patchClaimRequestDto
@@ -242,7 +242,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
242
242
  */
243
243
  patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
244
244
  /**
245
- * This will update the identified claim in the database
245
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
246
246
  * @summary Update the claim
247
247
  * @param {string} code
248
248
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
@@ -441,7 +441,7 @@ export interface ClaimsApiUpdateClaimRequest {
441
441
  */
442
442
  export declare class ClaimsApi extends BaseAPI {
443
443
  /**
444
- * This will create a claim in the database
444
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
445
445
  * @summary Create the claim
446
446
  * @param {ClaimsApiCreateClaimRequest} requestParameters Request parameters.
447
447
  * @param {*} [options] Override http request option.
@@ -450,7 +450,7 @@ export declare class ClaimsApi extends BaseAPI {
450
450
  */
451
451
  createClaim(requestParameters: ClaimsApiCreateClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimResponseClass, any>>;
452
452
  /**
453
- * This will delete the requested claim from the database.
453
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
454
454
  * @summary Delete the claim
455
455
  * @param {ClaimsApiDeleteClaimRequest} requestParameters Request parameters.
456
456
  * @param {*} [options] Override http request option.
@@ -459,7 +459,7 @@ export declare class ClaimsApi extends BaseAPI {
459
459
  */
460
460
  deleteClaim(requestParameters: ClaimsApiDeleteClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
461
461
  /**
462
- * This will fetch the identified claim from the database by code
462
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
463
463
  * @summary Retrieve the claim
464
464
  * @param {ClaimsApiGetClaimRequest} requestParameters Request parameters.
465
465
  * @param {*} [options] Override http request option.
@@ -468,7 +468,7 @@ export declare class ClaimsApi extends BaseAPI {
468
468
  */
469
469
  getClaim(requestParameters: ClaimsApiGetClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimResponseClass, any>>;
470
470
  /**
471
- * This endpoint will calculate and get the regulation summary for a claim.
471
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
472
472
  * @summary Retrieve the claim regulation summary
473
473
  * @param {ClaimsApiGetClaimRegulationSummaryRequest} requestParameters Request parameters.
474
474
  * @param {*} [options] Override http request option.
@@ -477,7 +477,7 @@ export declare class ClaimsApi extends BaseAPI {
477
477
  */
478
478
  getClaimRegulationSummary(requestParameters: ClaimsApiGetClaimRegulationSummaryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationSummaryResponseClass, any>>;
479
479
  /**
480
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
480
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
481
481
  * @summary List claims
482
482
  * @param {ClaimsApiListClaimsRequest} requestParameters Request parameters.
483
483
  * @param {*} [options] Override http request option.
@@ -486,7 +486,7 @@ export declare class ClaimsApi extends BaseAPI {
486
486
  */
487
487
  listClaims(requestParameters?: ClaimsApiListClaimsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimsResponseClass, any>>;
488
488
  /**
489
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
489
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
490
490
  * @summary Patch the claim
491
491
  * @param {ClaimsApiPatchClaimRequest} requestParameters Request parameters.
492
492
  * @param {*} [options] Override http request option.
@@ -495,7 +495,7 @@ export declare class ClaimsApi extends BaseAPI {
495
495
  */
496
496
  patchClaim(requestParameters: ClaimsApiPatchClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimResponseClass, any>>;
497
497
  /**
498
- * This will update the identified claim in the database
498
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
499
499
  * @summary Update the claim
500
500
  * @param {ClaimsApiUpdateClaimRequest} requestParameters Request parameters.
501
501
  * @param {*} [options] Override http request option.