@emilgroup/claim-sdk 1.33.1-beta.4 → 1.34.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 **Required Permissions** \"claim-management.statuses.create\"
25
+ * This creates a claim status in the database
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. **Required Permissions** \"claim-management.statuses.delete\"
34
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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 **Required Permissions** \"claim-management.statuses.create\"
73
+ * This creates a claim status in the database
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. **Required Permissions** \"claim-management.statuses.delete\"
82
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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 **Required Permissions** \"claim-management.statuses.create\"
121
+ * This creates a claim status in the database
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. **Required Permissions** \"claim-management.statuses.delete\"
130
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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 **Required Permissions** \"claim-management.statuses.create\"
283
+ * This creates a claim status in the database
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. **Required Permissions** \"claim-management.statuses.delete\"
292
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
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. **Required Permissions** \"claim-management.statuses.view\"
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.
311
311
  * @summary List claim statuses
312
312
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
313
313
  * @param {*} [options] Override http request option.
@@ -93,7 +93,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
93
93
  var _this = this;
94
94
  return {
95
95
  /**
96
- * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
96
+ * This creates a claim status in the database
97
97
  * @summary Create the claim status
98
98
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
99
99
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -142,7 +142,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
142
142
  });
143
143
  },
144
144
  /**
145
- * 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\"
145
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
146
146
  * @summary Delete the claim status
147
147
  * @param {number} id
148
148
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -190,7 +190,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
190
190
  });
191
191
  },
192
192
  /**
193
- * 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\"
193
+ * 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.
194
194
  * @summary Retrieve the claim status
195
195
  * @param {number} id
196
196
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -238,7 +238,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
238
238
  });
239
239
  },
240
240
  /**
241
- * 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\"
241
+ * 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.
242
242
  * @summary List claim statuses
243
243
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
244
244
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -320,7 +320,7 @@ var ClaimStatusesApiFp = function (configuration) {
320
320
  var localVarAxiosParamCreator = (0, exports.ClaimStatusesApiAxiosParamCreator)(configuration);
321
321
  return {
322
322
  /**
323
- * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
323
+ * This creates a claim status in the database
324
324
  * @summary Create the claim status
325
325
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
326
326
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -341,7 +341,7 @@ var ClaimStatusesApiFp = function (configuration) {
341
341
  });
342
342
  },
343
343
  /**
344
- * 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\"
344
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
345
345
  * @summary Delete the claim status
346
346
  * @param {number} id
347
347
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -362,7 +362,7 @@ var ClaimStatusesApiFp = function (configuration) {
362
362
  });
363
363
  },
364
364
  /**
365
- * 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\"
365
+ * 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.
366
366
  * @summary Retrieve the claim status
367
367
  * @param {number} id
368
368
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -383,7 +383,7 @@ var ClaimStatusesApiFp = function (configuration) {
383
383
  });
384
384
  },
385
385
  /**
386
- * 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\"
386
+ * 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.
387
387
  * @summary List claim statuses
388
388
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
389
389
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -420,7 +420,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
420
420
  var localVarFp = (0, exports.ClaimStatusesApiFp)(configuration);
421
421
  return {
422
422
  /**
423
- * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
423
+ * This creates a claim status in the database
424
424
  * @summary Create the claim status
425
425
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
426
426
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -431,7 +431,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
431
431
  return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
432
432
  },
433
433
  /**
434
- * 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\"
434
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
435
435
  * @summary Delete the claim status
436
436
  * @param {number} id
437
437
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -442,7 +442,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
442
442
  return localVarFp.deleteClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
443
443
  },
444
444
  /**
445
- * 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\"
445
+ * 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.
446
446
  * @summary Retrieve the claim status
447
447
  * @param {number} id
448
448
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -453,7 +453,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
453
453
  return localVarFp.getClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
454
454
  },
455
455
  /**
456
- * 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\"
456
+ * 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.
457
457
  * @summary List claim statuses
458
458
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
459
459
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -484,7 +484,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
484
484
  return _super !== null && _super.apply(this, arguments) || this;
485
485
  }
486
486
  /**
487
- * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
487
+ * This creates a claim status in the database
488
488
  * @summary Create the claim status
489
489
  * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
490
490
  * @param {*} [options] Override http request option.
@@ -496,7 +496,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
496
496
  return (0, exports.ClaimStatusesApiFp)(this.configuration).createClaimStatus(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
497
497
  };
498
498
  /**
499
- * 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\"
499
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
500
500
  * @summary Delete the claim status
501
501
  * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
502
502
  * @param {*} [options] Override http request option.
@@ -508,7 +508,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
508
508
  return (0, exports.ClaimStatusesApiFp)(this.configuration).deleteClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
509
509
  };
510
510
  /**
511
- * 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\"
511
+ * 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.
512
512
  * @summary Retrieve the claim status
513
513
  * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
514
514
  * @param {*} [options] Override http request option.
@@ -520,7 +520,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
520
520
  return (0, exports.ClaimStatusesApiFp)(this.configuration).getClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
521
521
  };
522
522
  /**
523
- * 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\"
523
+ * 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.
524
524
  * @summary List claim statuses
525
525
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
526
526
  * @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 **Required Permissions** \"claim-management.claims.create\"
30
+ * This will create a claim in the database
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. **Required Permissions** \"claim-management.claims.delete\"
39
+ * This will delete the requested claim from the database.
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 **Required Permissions** \"claim-management.claims.view\"
48
+ * This will fetch the identified claim from the database by code
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. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
57
+ * This endpoint will calculate and get the regulation summary for a claim.
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. **Required Permissions** \"claim-management.claims.view\"
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.
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. **Required Permissions** \"claim-management.claims.update\"
81
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
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 **Required Permissions** \"claim-management.claims.update\"
91
+ * This will update the identified claim in the database
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 **Required Permissions** \"claim-management.claims.create\"
107
+ * This will create a claim in the database
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. **Required Permissions** \"claim-management.claims.delete\"
116
+ * This will delete the requested claim from the database.
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 **Required Permissions** \"claim-management.claims.view\"
125
+ * This will fetch the identified claim from the database by code
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. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
134
+ * This endpoint will calculate and get the regulation summary for a claim.
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. **Required Permissions** \"claim-management.claims.view\"
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.
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. **Required Permissions** \"claim-management.claims.update\"
158
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
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 **Required Permissions** \"claim-management.claims.update\"
168
+ * This will update the identified claim in the database
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 **Required Permissions** \"claim-management.claims.create\"
184
+ * This will create a claim in the database
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. **Required Permissions** \"claim-management.claims.delete\"
193
+ * This will delete the requested claim from the database.
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 **Required Permissions** \"claim-management.claims.view\"
202
+ * This will fetch the identified claim from the database by code
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. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
211
+ * This endpoint will calculate and get the regulation summary for a claim.
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. **Required Permissions** \"claim-management.claims.view\"
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.
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. **Required Permissions** \"claim-management.claims.update\"
235
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
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 **Required Permissions** \"claim-management.claims.update\"
245
+ * This will update the identified claim in the database
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 **Required Permissions** \"claim-management.claims.create\"
444
+ * This will create a claim in the database
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. **Required Permissions** \"claim-management.claims.delete\"
453
+ * This will delete the requested claim from the database.
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 **Required Permissions** \"claim-management.claims.view\"
462
+ * This will fetch the identified claim from the database by code
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. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
471
+ * This endpoint will calculate and get the regulation summary for a claim.
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. **Required Permissions** \"claim-management.claims.view\"
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.
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. **Required Permissions** \"claim-management.claims.update\"
489
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
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 **Required Permissions** \"claim-management.claims.update\"
498
+ * This will update the identified claim in the database
499
499
  * @summary Update the claim
500
500
  * @param {ClaimsApiUpdateClaimRequest} requestParameters Request parameters.
501
501
  * @param {*} [options] Override http request option.