@emilgroup/claim-sdk 1.34.0 → 1.34.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +34 -34
- package/api/claim-partners-api.ts +30 -30
- package/api/claim-regulations-api.ts +34 -34
- package/api/claim-statuses-api.ts +35 -35
- package/api/claims-api.ts +42 -42
- package/api/settlements-api.ts +39 -39
- package/dist/api/claim-partner-roles-api.d.ts +34 -34
- package/dist/api/claim-partner-roles-api.js +26 -26
- package/dist/api/claim-partners-api.d.ts +30 -30
- package/dist/api/claim-partners-api.js +22 -22
- package/dist/api/claim-regulations-api.d.ts +34 -34
- package/dist/api/claim-regulations-api.js +26 -26
- package/dist/api/claim-statuses-api.d.ts +35 -35
- package/dist/api/claim-statuses-api.js +25 -25
- package/dist/api/claims-api.d.ts +42 -42
- package/dist/api/claims-api.js +34 -34
- package/dist/api/settlements-api.d.ts +39 -39
- package/dist/api/settlements-api.js +29 -29
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ import { ListClaimPartnersResponseClass } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* This will create a claim partner.
|
|
25
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
26
26
|
* @summary Create the claim partner
|
|
27
27
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
28
28
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -32,7 +32,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
32
32
|
*/
|
|
33
33
|
createClaimPartner: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
34
|
/**
|
|
35
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
35
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
36
36
|
* @summary Delete the claim partner
|
|
37
37
|
* @param {number} id
|
|
38
38
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -41,7 +41,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
41
41
|
*/
|
|
42
42
|
deleteClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
43
|
/**
|
|
44
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
44
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
45
45
|
* @summary Retrieve the claim partner
|
|
46
46
|
* @param {number} id
|
|
47
47
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -50,11 +50,11 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
50
50
|
*/
|
|
51
51
|
getClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
54
54
|
* @summary List claim partners
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
|
-
* @param {
|
|
57
|
-
* @param {
|
|
56
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
57
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
58
58
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
59
59
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
60
60
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -63,7 +63,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
63
63
|
* @param {*} [options] Override http request option.
|
|
64
64
|
* @throws {RequiredError}
|
|
65
65
|
*/
|
|
66
|
-
listClaimPartners: (authorization?: string, pageSize?:
|
|
66
|
+
listClaimPartners: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
69
|
* ClaimPartnersApi - functional programming interface
|
|
@@ -71,7 +71,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
71
71
|
*/
|
|
72
72
|
export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
73
73
|
/**
|
|
74
|
-
* This will create a claim partner.
|
|
74
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
75
75
|
* @summary Create the claim partner
|
|
76
76
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
77
77
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -81,7 +81,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
81
81
|
*/
|
|
82
82
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
83
83
|
/**
|
|
84
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
84
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
85
85
|
* @summary Delete the claim partner
|
|
86
86
|
* @param {number} id
|
|
87
87
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
90
90
|
*/
|
|
91
91
|
deleteClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
92
92
|
/**
|
|
93
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
93
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
94
94
|
* @summary Retrieve the claim partner
|
|
95
95
|
* @param {number} id
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -99,11 +99,11 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
99
99
|
*/
|
|
100
100
|
getClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
101
101
|
/**
|
|
102
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
102
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
103
103
|
* @summary List claim partners
|
|
104
104
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
105
|
-
* @param {
|
|
106
|
-
* @param {
|
|
105
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
106
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
107
107
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
108
108
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
109
109
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -112,7 +112,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
112
112
|
* @param {*} [options] Override http request option.
|
|
113
113
|
* @throws {RequiredError}
|
|
114
114
|
*/
|
|
115
|
-
listClaimPartners(authorization?: string, pageSize?:
|
|
115
|
+
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>>;
|
|
116
116
|
};
|
|
117
117
|
/**
|
|
118
118
|
* ClaimPartnersApi - factory interface
|
|
@@ -120,7 +120,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
120
120
|
*/
|
|
121
121
|
export declare const ClaimPartnersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
122
|
/**
|
|
123
|
-
* This will create a claim partner.
|
|
123
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
124
124
|
* @summary Create the claim partner
|
|
125
125
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
126
126
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -130,7 +130,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
130
130
|
*/
|
|
131
131
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
132
132
|
/**
|
|
133
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
133
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
134
134
|
* @summary Delete the claim partner
|
|
135
135
|
* @param {number} id
|
|
136
136
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -139,7 +139,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
139
139
|
*/
|
|
140
140
|
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
141
141
|
/**
|
|
142
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
142
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
143
143
|
* @summary Retrieve the claim partner
|
|
144
144
|
* @param {number} id
|
|
145
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -148,11 +148,11 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
148
148
|
*/
|
|
149
149
|
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
150
150
|
/**
|
|
151
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
151
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
152
152
|
* @summary List claim partners
|
|
153
153
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
|
-
* @param {
|
|
155
|
-
* @param {
|
|
154
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
155
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
156
156
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
157
157
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
158
158
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -161,7 +161,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
164
|
-
listClaimPartners(authorization?: string, pageSize?:
|
|
164
|
+
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass>;
|
|
165
165
|
};
|
|
166
166
|
/**
|
|
167
167
|
* Request parameters for createClaimPartner operation in ClaimPartnersApi.
|
|
@@ -240,16 +240,16 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
240
240
|
readonly authorization?: string;
|
|
241
241
|
/**
|
|
242
242
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
243
|
-
* @type {
|
|
243
|
+
* @type {number}
|
|
244
244
|
* @memberof ClaimPartnersApiListClaimPartners
|
|
245
245
|
*/
|
|
246
|
-
readonly pageSize?:
|
|
246
|
+
readonly pageSize?: number;
|
|
247
247
|
/**
|
|
248
|
-
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1,
|
|
249
|
-
* @type {
|
|
248
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
249
|
+
* @type {string}
|
|
250
250
|
* @memberof ClaimPartnersApiListClaimPartners
|
|
251
251
|
*/
|
|
252
|
-
readonly pageToken?:
|
|
252
|
+
readonly pageToken?: string;
|
|
253
253
|
/**
|
|
254
254
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
255
255
|
* @type {string}
|
|
@@ -289,7 +289,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
289
289
|
*/
|
|
290
290
|
export declare class ClaimPartnersApi extends BaseAPI {
|
|
291
291
|
/**
|
|
292
|
-
* This will create a claim partner.
|
|
292
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
293
293
|
* @summary Create the claim partner
|
|
294
294
|
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
295
295
|
* @param {*} [options] Override http request option.
|
|
@@ -298,7 +298,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
298
298
|
*/
|
|
299
299
|
createClaimPartner(requestParameters: ClaimPartnersApiCreateClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any>>;
|
|
300
300
|
/**
|
|
301
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
301
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
302
302
|
* @summary Delete the claim partner
|
|
303
303
|
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
@@ -307,7 +307,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
307
307
|
*/
|
|
308
308
|
deleteClaimPartner(requestParameters: ClaimPartnersApiDeleteClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
309
|
/**
|
|
310
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
310
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
311
311
|
* @summary Retrieve the claim partner
|
|
312
312
|
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
@@ -316,7 +316,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
316
316
|
*/
|
|
317
317
|
getClaimPartner(requestParameters: ClaimPartnersApiGetClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any>>;
|
|
318
318
|
/**
|
|
319
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
319
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
320
320
|
* @summary List claim partners
|
|
321
321
|
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
322
322
|
* @param {*} [options] Override http request option.
|
|
@@ -93,7 +93,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This will create a claim partner.
|
|
96
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
97
97
|
* @summary Create the claim partner
|
|
98
98
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
99
99
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -146,7 +146,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
149
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
150
150
|
* @summary Delete the claim partner
|
|
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 ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
197
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
198
198
|
* @summary Retrieve the claim partner
|
|
199
199
|
* @param {number} id
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,11 +242,11 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
245
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
246
246
|
* @summary List claim partners
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
|
-
* @param {
|
|
249
|
-
* @param {
|
|
248
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
249
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
250
250
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
251
251
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
252
252
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -324,7 +324,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
324
324
|
var localVarAxiosParamCreator = (0, exports.ClaimPartnersApiAxiosParamCreator)(configuration);
|
|
325
325
|
return {
|
|
326
326
|
/**
|
|
327
|
-
* This will create a claim partner.
|
|
327
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
328
328
|
* @summary Create the claim partner
|
|
329
329
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
330
330
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -346,7 +346,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
346
346
|
});
|
|
347
347
|
},
|
|
348
348
|
/**
|
|
349
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
349
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
350
350
|
* @summary Delete the claim partner
|
|
351
351
|
* @param {number} id
|
|
352
352
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -367,7 +367,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
367
367
|
});
|
|
368
368
|
},
|
|
369
369
|
/**
|
|
370
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
370
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
371
371
|
* @summary Retrieve the claim partner
|
|
372
372
|
* @param {number} id
|
|
373
373
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -388,11 +388,11 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
388
388
|
});
|
|
389
389
|
},
|
|
390
390
|
/**
|
|
391
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
391
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
392
392
|
* @summary List claim partners
|
|
393
393
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
394
|
-
* @param {
|
|
395
|
-
* @param {
|
|
394
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
395
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
396
396
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
397
397
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
398
398
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -425,7 +425,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
425
425
|
var localVarFp = (0, exports.ClaimPartnersApiFp)(configuration);
|
|
426
426
|
return {
|
|
427
427
|
/**
|
|
428
|
-
* This will create a claim partner.
|
|
428
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
429
429
|
* @summary Create the claim partner
|
|
430
430
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
431
431
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -437,7 +437,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
437
437
|
return localVarFp.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
438
438
|
},
|
|
439
439
|
/**
|
|
440
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
440
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
441
441
|
* @summary Delete the claim partner
|
|
442
442
|
* @param {number} id
|
|
443
443
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -448,7 +448,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
448
448
|
return localVarFp.deleteClaimPartner(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
449
449
|
},
|
|
450
450
|
/**
|
|
451
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
451
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
452
452
|
* @summary Retrieve the claim partner
|
|
453
453
|
* @param {number} id
|
|
454
454
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -459,11 +459,11 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
459
459
|
return localVarFp.getClaimPartner(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
460
460
|
},
|
|
461
461
|
/**
|
|
462
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
462
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
463
463
|
* @summary List claim partners
|
|
464
464
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
465
|
-
* @param {
|
|
466
|
-
* @param {
|
|
465
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
466
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
467
467
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
468
468
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
469
469
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
@@ -490,7 +490,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
490
490
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
|
-
* This will create a claim partner.
|
|
493
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
494
494
|
* @summary Create the claim partner
|
|
495
495
|
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
496
496
|
* @param {*} [options] Override http request option.
|
|
@@ -502,7 +502,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
502
502
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).createClaimPartner(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
503
503
|
};
|
|
504
504
|
/**
|
|
505
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
505
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
506
506
|
* @summary Delete the claim partner
|
|
507
507
|
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
@@ -514,7 +514,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
514
514
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).deleteClaimPartner(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
515
515
|
};
|
|
516
516
|
/**
|
|
517
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
517
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
518
518
|
* @summary Retrieve the claim partner
|
|
519
519
|
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
520
520
|
* @param {*} [options] Override http request option.
|
|
@@ -526,7 +526,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
526
526
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).getClaimPartner(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
527
527
|
};
|
|
528
528
|
/**
|
|
529
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
529
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
530
530
|
* @summary List claim partners
|
|
531
531
|
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
532
532
|
* @param {*} [options] Override http request option.
|