@emilgroup/claim-sdk-node 1.39.0 → 1.39.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.
Files changed (102) hide show
  1. package/.openapi-generator/FILES +15 -0
  2. package/README.md +2 -2
  3. package/api/claim-limit-usages-api.ts +648 -0
  4. package/api/claim-partner-roles-api.ts +627 -0
  5. package/api/claim-partners-api.ts +520 -0
  6. package/api/claim-positions-api.ts +1340 -0
  7. package/api/claim-regulations-api.ts +644 -3
  8. package/api/claim-statuses-api.ts +752 -5
  9. package/api/claims-api.ts +863 -11
  10. package/api/health-check-api.ts +66 -0
  11. package/api/settlements-api.ts +627 -0
  12. package/api.ts +4 -0
  13. package/dist/api/claim-limit-usages-api.d.ts +378 -0
  14. package/dist/api/claim-limit-usages-api.js +585 -0
  15. package/dist/api/claim-partner-roles-api.d.ts +358 -0
  16. package/dist/api/claim-partner-roles-api.js +525 -0
  17. package/dist/api/claim-partners-api.d.ts +299 -0
  18. package/dist/api/claim-partners-api.js +428 -0
  19. package/dist/api/claim-positions-api.d.ts +760 -0
  20. package/dist/api/claim-positions-api.js +1181 -0
  21. package/dist/api/claim-regulations-api.d.ts +367 -0
  22. package/dist/api/claim-regulations-api.js +531 -0
  23. package/dist/api/claim-statuses-api.d.ts +426 -0
  24. package/dist/api/claim-statuses-api.js +642 -14
  25. package/dist/api/claims-api.d.ts +493 -8
  26. package/dist/api/claims-api.js +734 -10
  27. package/dist/api/health-check-api.d.ts +33 -0
  28. package/dist/api/health-check-api.js +73 -0
  29. package/dist/api/settlements-api.d.ts +358 -0
  30. package/dist/api/settlements-api.js +525 -0
  31. package/dist/api.d.ts +2 -0
  32. package/dist/api.js +2 -0
  33. package/dist/models/calculation-step-result-class.d.ts +72 -0
  34. package/dist/models/calculation-step-result-class.js +21 -0
  35. package/dist/models/claim-applied-deductible-class.d.ts +95 -0
  36. package/dist/models/claim-applied-deductible-class.js +20 -0
  37. package/dist/models/claim-class.d.ts +25 -0
  38. package/dist/models/claim-limit-usage-class.d.ts +143 -0
  39. package/dist/models/claim-limit-usage-class.js +30 -0
  40. package/dist/models/claim-limit-usage-result-class.d.ts +48 -0
  41. package/dist/models/claim-limit-usage-result-class.js +21 -0
  42. package/dist/models/claim-position-class.d.ts +151 -0
  43. package/dist/models/claim-position-class.js +20 -0
  44. package/dist/models/create-claim-position-request-dto.d.ts +66 -0
  45. package/dist/models/create-claim-position-request-dto.js +15 -0
  46. package/dist/models/create-claim-position-response-class.d.ts +25 -0
  47. package/dist/models/create-claim-position-response-class.js +15 -0
  48. package/dist/models/create-claim-request-dto.d.ts +6 -0
  49. package/dist/models/create-regulation-item-request-dto.d.ts +26 -3
  50. package/dist/models/create-regulation-item-request-dto.js +5 -1
  51. package/dist/models/get-claim-limit-usage-response-class.d.ts +25 -0
  52. package/dist/models/get-claim-limit-usage-response-class.js +15 -0
  53. package/dist/models/get-claim-position-response-class.d.ts +25 -0
  54. package/dist/models/get-claim-position-response-class.js +15 -0
  55. package/dist/models/index.d.ts +13 -0
  56. package/dist/models/index.js +13 -0
  57. package/dist/models/list-claim-limit-usages-response-class.d.ts +43 -0
  58. package/dist/models/list-claim-limit-usages-response-class.js +15 -0
  59. package/dist/models/list-claim-partner-roles-response-class.d.ts +12 -0
  60. package/dist/models/list-claim-partners-response-class.d.ts +12 -0
  61. package/dist/models/list-claim-positions-response-class.d.ts +43 -0
  62. package/dist/models/list-claim-positions-response-class.js +15 -0
  63. package/dist/models/list-claim-statuses-response-class.d.ts +13 -1
  64. package/dist/models/list-claims-response-class.d.ts +12 -0
  65. package/dist/models/list-regulations-response-class.d.ts +12 -0
  66. package/dist/models/patch-claim-request-dto.d.ts +39 -33
  67. package/dist/models/regulation-item-class.d.ts +35 -0
  68. package/dist/models/regulation-item-class.js +10 -1
  69. package/dist/models/update-claim-position-request-dto.d.ts +60 -0
  70. package/dist/models/update-claim-position-request-dto.js +15 -0
  71. package/dist/models/update-claim-position-response-class.d.ts +25 -0
  72. package/dist/models/update-claim-position-response-class.js +15 -0
  73. package/dist/models/update-claim-request-dto.d.ts +39 -33
  74. package/dist/models/update-regulation-item-request-dto.d.ts +12 -0
  75. package/dist/models/update-regulation-item-request-dto.js +6 -1
  76. package/models/calculation-step-result-class.ts +81 -0
  77. package/models/claim-applied-deductible-class.ts +104 -0
  78. package/models/claim-class.ts +25 -0
  79. package/models/claim-limit-usage-class.ts +154 -0
  80. package/models/claim-limit-usage-result-class.ts +57 -0
  81. package/models/claim-position-class.ts +160 -0
  82. package/models/create-claim-position-request-dto.ts +72 -0
  83. package/models/create-claim-position-response-class.ts +31 -0
  84. package/models/create-claim-request-dto.ts +6 -0
  85. package/models/create-regulation-item-request-dto.ts +27 -3
  86. package/models/get-claim-limit-usage-response-class.ts +31 -0
  87. package/models/get-claim-position-response-class.ts +31 -0
  88. package/models/index.ts +13 -0
  89. package/models/list-claim-limit-usages-response-class.ts +49 -0
  90. package/models/list-claim-partner-roles-response-class.ts +12 -0
  91. package/models/list-claim-partners-response-class.ts +12 -0
  92. package/models/list-claim-positions-response-class.ts +49 -0
  93. package/models/list-claim-statuses-response-class.ts +13 -1
  94. package/models/list-claims-response-class.ts +12 -0
  95. package/models/list-regulations-response-class.ts +12 -0
  96. package/models/patch-claim-request-dto.ts +39 -33
  97. package/models/regulation-item-class.ts +37 -0
  98. package/models/update-claim-position-request-dto.ts +66 -0
  99. package/models/update-claim-position-response-class.ts +31 -0
  100. package/models/update-claim-request-dto.ts +39 -33
  101. package/models/update-regulation-item-request-dto.ts +13 -0
  102. package/package.json +1 -1
@@ -0,0 +1,760 @@
1
+ /**
2
+ * EMIL ClaimService
3
+ * The EMIL ClaimService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateClaimPositionRequestDto } from '../models';
16
+ import { CreateClaimPositionResponseClass } from '../models';
17
+ import { GetClaimPositionResponseClass } from '../models';
18
+ import { ListClaimPositionsResponseClass } from '../models';
19
+ import { UpdateClaimPositionRequestDto } from '../models';
20
+ import { UpdateClaimPositionResponseClass } from '../models';
21
+ /**
22
+ * ClaimPositionsApi - axios parameter creator
23
+ * @export
24
+ */
25
+ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Configuration) => {
26
+ /**
27
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
28
+ * @summary Create the claim position
29
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
30
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
31
+ * @param {*} [options] Override http request option.
32
+ * @throws {RequiredError}
33
+ */
34
+ createClaimPosition: (createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
35
+ /**
36
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
37
+ * @summary Create the claim position
38
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
39
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
40
+ * @param {*} [options] Override http request option.
41
+ * @deprecated
42
+ * @throws {RequiredError}
43
+ */
44
+ createClaimPosition1: (createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
45
+ /**
46
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
47
+ * @summary Delete the claim position
48
+ * @param {string} code Unique identifier for the object.
49
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
50
+ * @param {*} [options] Override http request option.
51
+ * @throws {RequiredError}
52
+ */
53
+ deleteClaimPosition: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
+ /**
55
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
56
+ * @summary Delete the claim position
57
+ * @param {string} code Unique identifier for the object.
58
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
59
+ * @param {*} [options] Override http request option.
60
+ * @deprecated
61
+ * @throws {RequiredError}
62
+ */
63
+ deleteClaimPosition1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
64
+ /**
65
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\"
66
+ * @summary Retrieve the claim position
67
+ * @param {string} code
68
+ * @param {string} expand
69
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
70
+ * @param {*} [options] Override http request option.
71
+ * @throws {RequiredError}
72
+ */
73
+ getClaimPosition: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
74
+ /**
75
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
76
+ * @summary Retrieve the claim position
77
+ * @param {string} code
78
+ * @param {string} expand
79
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
80
+ * @param {*} [options] Override http request option.
81
+ * @deprecated
82
+ * @throws {RequiredError}
83
+ */
84
+ getClaimPosition1: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
85
+ /**
86
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
87
+ * @summary List claim positions
88
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
89
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
90
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
91
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
92
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
93
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
94
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
95
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
96
+ * @param {*} [options] Override http request option.
97
+ * @throws {RequiredError}
98
+ */
99
+ listClaimPositions: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
100
+ /**
101
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
102
+ * @summary List claim positions
103
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
104
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
105
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
106
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
107
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
108
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
109
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
110
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
111
+ * @param {*} [options] Override http request option.
112
+ * @deprecated
113
+ * @throws {RequiredError}
114
+ */
115
+ listClaimPositions1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
116
+ /**
117
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\"
118
+ * @summary Update the claim position
119
+ * @param {string} code
120
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
121
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
122
+ * @param {*} [options] Override http request option.
123
+ * @throws {RequiredError}
124
+ */
125
+ updateClaimPosition: (code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
126
+ /**
127
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
128
+ * @summary Update the claim position
129
+ * @param {string} code
130
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
131
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
132
+ * @param {*} [options] Override http request option.
133
+ * @deprecated
134
+ * @throws {RequiredError}
135
+ */
136
+ updateClaimPosition1: (code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
137
+ };
138
+ /**
139
+ * ClaimPositionsApi - functional programming interface
140
+ * @export
141
+ */
142
+ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
143
+ /**
144
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
145
+ * @summary Create the claim position
146
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
147
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
148
+ * @param {*} [options] Override http request option.
149
+ * @throws {RequiredError}
150
+ */
151
+ createClaimPosition(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPositionResponseClass>>;
152
+ /**
153
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
154
+ * @summary Create the claim position
155
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
156
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
157
+ * @param {*} [options] Override http request option.
158
+ * @deprecated
159
+ * @throws {RequiredError}
160
+ */
161
+ createClaimPosition1(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPositionResponseClass>>;
162
+ /**
163
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
164
+ * @summary Delete the claim position
165
+ * @param {string} code Unique identifier for the object.
166
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
167
+ * @param {*} [options] Override http request option.
168
+ * @throws {RequiredError}
169
+ */
170
+ deleteClaimPosition(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
171
+ /**
172
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
173
+ * @summary Delete the claim position
174
+ * @param {string} code Unique identifier for the object.
175
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
176
+ * @param {*} [options] Override http request option.
177
+ * @deprecated
178
+ * @throws {RequiredError}
179
+ */
180
+ deleteClaimPosition1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
181
+ /**
182
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\"
183
+ * @summary Retrieve the claim position
184
+ * @param {string} code
185
+ * @param {string} expand
186
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ getClaimPosition(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPositionResponseClass>>;
191
+ /**
192
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
193
+ * @summary Retrieve the claim position
194
+ * @param {string} code
195
+ * @param {string} expand
196
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
197
+ * @param {*} [options] Override http request option.
198
+ * @deprecated
199
+ * @throws {RequiredError}
200
+ */
201
+ getClaimPosition1(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPositionResponseClass>>;
202
+ /**
203
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
204
+ * @summary List claim positions
205
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
206
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
207
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
208
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
209
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
210
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
211
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
212
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
213
+ * @param {*} [options] Override http request option.
214
+ * @throws {RequiredError}
215
+ */
216
+ listClaimPositions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPositionsResponseClass>>;
217
+ /**
218
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
219
+ * @summary List claim positions
220
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
221
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
222
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
223
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
224
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
225
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
226
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
227
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
228
+ * @param {*} [options] Override http request option.
229
+ * @deprecated
230
+ * @throws {RequiredError}
231
+ */
232
+ listClaimPositions1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPositionsResponseClass>>;
233
+ /**
234
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\"
235
+ * @summary Update the claim position
236
+ * @param {string} code
237
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
238
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
239
+ * @param {*} [options] Override http request option.
240
+ * @throws {RequiredError}
241
+ */
242
+ updateClaimPosition(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPositionResponseClass>>;
243
+ /**
244
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
245
+ * @summary Update the claim position
246
+ * @param {string} code
247
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
248
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
249
+ * @param {*} [options] Override http request option.
250
+ * @deprecated
251
+ * @throws {RequiredError}
252
+ */
253
+ updateClaimPosition1(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPositionResponseClass>>;
254
+ };
255
+ /**
256
+ * ClaimPositionsApi - factory interface
257
+ * @export
258
+ */
259
+ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
260
+ /**
261
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
262
+ * @summary Create the claim position
263
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
264
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
265
+ * @param {*} [options] Override http request option.
266
+ * @throws {RequiredError}
267
+ */
268
+ createClaimPosition(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPositionResponseClass>;
269
+ /**
270
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
271
+ * @summary Create the claim position
272
+ * @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
273
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
274
+ * @param {*} [options] Override http request option.
275
+ * @deprecated
276
+ * @throws {RequiredError}
277
+ */
278
+ createClaimPosition1(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPositionResponseClass>;
279
+ /**
280
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
281
+ * @summary Delete the claim position
282
+ * @param {string} code Unique identifier for the object.
283
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
284
+ * @param {*} [options] Override http request option.
285
+ * @throws {RequiredError}
286
+ */
287
+ deleteClaimPosition(code: string, authorization?: string, options?: any): AxiosPromise<void>;
288
+ /**
289
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
290
+ * @summary Delete the claim position
291
+ * @param {string} code Unique identifier for the object.
292
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
293
+ * @param {*} [options] Override http request option.
294
+ * @deprecated
295
+ * @throws {RequiredError}
296
+ */
297
+ deleteClaimPosition1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
298
+ /**
299
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\"
300
+ * @summary Retrieve the claim position
301
+ * @param {string} code
302
+ * @param {string} expand
303
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
304
+ * @param {*} [options] Override http request option.
305
+ * @throws {RequiredError}
306
+ */
307
+ getClaimPosition(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetClaimPositionResponseClass>;
308
+ /**
309
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
310
+ * @summary Retrieve the claim position
311
+ * @param {string} code
312
+ * @param {string} expand
313
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
314
+ * @param {*} [options] Override http request option.
315
+ * @deprecated
316
+ * @throws {RequiredError}
317
+ */
318
+ getClaimPosition1(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetClaimPositionResponseClass>;
319
+ /**
320
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
321
+ * @summary List claim positions
322
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
323
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
324
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
325
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
326
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
327
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
328
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
329
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
330
+ * @param {*} [options] Override http request option.
331
+ * @throws {RequiredError}
332
+ */
333
+ listClaimPositions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPositionsResponseClass>;
334
+ /**
335
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
336
+ * @summary List claim positions
337
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
338
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
339
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
340
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
341
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
342
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
343
+ * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
344
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
345
+ * @param {*} [options] Override http request option.
346
+ * @deprecated
347
+ * @throws {RequiredError}
348
+ */
349
+ listClaimPositions1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPositionsResponseClass>;
350
+ /**
351
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\"
352
+ * @summary Update the claim position
353
+ * @param {string} code
354
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
355
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
356
+ * @param {*} [options] Override http request option.
357
+ * @throws {RequiredError}
358
+ */
359
+ updateClaimPosition(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPositionResponseClass>;
360
+ /**
361
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
362
+ * @summary Update the claim position
363
+ * @param {string} code
364
+ * @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
365
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
366
+ * @param {*} [options] Override http request option.
367
+ * @deprecated
368
+ * @throws {RequiredError}
369
+ */
370
+ updateClaimPosition1(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPositionResponseClass>;
371
+ };
372
+ /**
373
+ * Request parameters for createClaimPosition operation in ClaimPositionsApi.
374
+ * @export
375
+ * @interface ClaimPositionsApiCreateClaimPositionRequest
376
+ */
377
+ export interface ClaimPositionsApiCreateClaimPositionRequest {
378
+ /**
379
+ *
380
+ * @type {CreateClaimPositionRequestDto}
381
+ * @memberof ClaimPositionsApiCreateClaimPosition
382
+ */
383
+ readonly createClaimPositionRequestDto: CreateClaimPositionRequestDto;
384
+ /**
385
+ * Bearer Token: provided by the login endpoint under the name accessToken.
386
+ * @type {string}
387
+ * @memberof ClaimPositionsApiCreateClaimPosition
388
+ */
389
+ readonly authorization?: string;
390
+ }
391
+ /**
392
+ * Request parameters for createClaimPosition1 operation in ClaimPositionsApi.
393
+ * @export
394
+ * @interface ClaimPositionsApiCreateClaimPosition1Request
395
+ */
396
+ export interface ClaimPositionsApiCreateClaimPosition1Request {
397
+ /**
398
+ *
399
+ * @type {CreateClaimPositionRequestDto}
400
+ * @memberof ClaimPositionsApiCreateClaimPosition1
401
+ */
402
+ readonly createClaimPositionRequestDto: CreateClaimPositionRequestDto;
403
+ /**
404
+ * Bearer Token: provided by the login endpoint under the name accessToken.
405
+ * @type {string}
406
+ * @memberof ClaimPositionsApiCreateClaimPosition1
407
+ */
408
+ readonly authorization?: string;
409
+ }
410
+ /**
411
+ * Request parameters for deleteClaimPosition operation in ClaimPositionsApi.
412
+ * @export
413
+ * @interface ClaimPositionsApiDeleteClaimPositionRequest
414
+ */
415
+ export interface ClaimPositionsApiDeleteClaimPositionRequest {
416
+ /**
417
+ * Unique identifier for the object.
418
+ * @type {string}
419
+ * @memberof ClaimPositionsApiDeleteClaimPosition
420
+ */
421
+ readonly code: string;
422
+ /**
423
+ * Bearer Token: provided by the login endpoint under the name accessToken.
424
+ * @type {string}
425
+ * @memberof ClaimPositionsApiDeleteClaimPosition
426
+ */
427
+ readonly authorization?: string;
428
+ }
429
+ /**
430
+ * Request parameters for deleteClaimPosition1 operation in ClaimPositionsApi.
431
+ * @export
432
+ * @interface ClaimPositionsApiDeleteClaimPosition1Request
433
+ */
434
+ export interface ClaimPositionsApiDeleteClaimPosition1Request {
435
+ /**
436
+ * Unique identifier for the object.
437
+ * @type {string}
438
+ * @memberof ClaimPositionsApiDeleteClaimPosition1
439
+ */
440
+ readonly code: string;
441
+ /**
442
+ * Bearer Token: provided by the login endpoint under the name accessToken.
443
+ * @type {string}
444
+ * @memberof ClaimPositionsApiDeleteClaimPosition1
445
+ */
446
+ readonly authorization?: string;
447
+ }
448
+ /**
449
+ * Request parameters for getClaimPosition operation in ClaimPositionsApi.
450
+ * @export
451
+ * @interface ClaimPositionsApiGetClaimPositionRequest
452
+ */
453
+ export interface ClaimPositionsApiGetClaimPositionRequest {
454
+ /**
455
+ *
456
+ * @type {string}
457
+ * @memberof ClaimPositionsApiGetClaimPosition
458
+ */
459
+ readonly code: string;
460
+ /**
461
+ *
462
+ * @type {string}
463
+ * @memberof ClaimPositionsApiGetClaimPosition
464
+ */
465
+ readonly expand: string;
466
+ /**
467
+ * Bearer Token: provided by the login endpoint under the name accessToken.
468
+ * @type {string}
469
+ * @memberof ClaimPositionsApiGetClaimPosition
470
+ */
471
+ readonly authorization?: string;
472
+ }
473
+ /**
474
+ * Request parameters for getClaimPosition1 operation in ClaimPositionsApi.
475
+ * @export
476
+ * @interface ClaimPositionsApiGetClaimPosition1Request
477
+ */
478
+ export interface ClaimPositionsApiGetClaimPosition1Request {
479
+ /**
480
+ *
481
+ * @type {string}
482
+ * @memberof ClaimPositionsApiGetClaimPosition1
483
+ */
484
+ readonly code: string;
485
+ /**
486
+ *
487
+ * @type {string}
488
+ * @memberof ClaimPositionsApiGetClaimPosition1
489
+ */
490
+ readonly expand: string;
491
+ /**
492
+ * Bearer Token: provided by the login endpoint under the name accessToken.
493
+ * @type {string}
494
+ * @memberof ClaimPositionsApiGetClaimPosition1
495
+ */
496
+ readonly authorization?: string;
497
+ }
498
+ /**
499
+ * Request parameters for listClaimPositions operation in ClaimPositionsApi.
500
+ * @export
501
+ * @interface ClaimPositionsApiListClaimPositionsRequest
502
+ */
503
+ export interface ClaimPositionsApiListClaimPositionsRequest {
504
+ /**
505
+ * Bearer Token: provided by the login endpoint under the name accessToken.
506
+ * @type {string}
507
+ * @memberof ClaimPositionsApiListClaimPositions
508
+ */
509
+ readonly authorization?: string;
510
+ /**
511
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
512
+ * @type {number}
513
+ * @memberof ClaimPositionsApiListClaimPositions
514
+ */
515
+ readonly pageSize?: number;
516
+ /**
517
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
518
+ * @type {string}
519
+ * @memberof ClaimPositionsApiListClaimPositions
520
+ */
521
+ readonly pageToken?: string;
522
+ /**
523
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
524
+ * @type {string}
525
+ * @memberof ClaimPositionsApiListClaimPositions
526
+ */
527
+ readonly filter?: string;
528
+ /**
529
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
530
+ * @type {string}
531
+ * @memberof ClaimPositionsApiListClaimPositions
532
+ */
533
+ readonly search?: string;
534
+ /**
535
+ * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
536
+ * @type {string}
537
+ * @memberof ClaimPositionsApiListClaimPositions
538
+ */
539
+ readonly order?: string;
540
+ /**
541
+ * Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
542
+ * @type {string}
543
+ * @memberof ClaimPositionsApiListClaimPositions
544
+ */
545
+ readonly expand?: string;
546
+ /**
547
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
548
+ * @type {string}
549
+ * @memberof ClaimPositionsApiListClaimPositions
550
+ */
551
+ readonly filters?: string;
552
+ }
553
+ /**
554
+ * Request parameters for listClaimPositions1 operation in ClaimPositionsApi.
555
+ * @export
556
+ * @interface ClaimPositionsApiListClaimPositions1Request
557
+ */
558
+ export interface ClaimPositionsApiListClaimPositions1Request {
559
+ /**
560
+ * Bearer Token: provided by the login endpoint under the name accessToken.
561
+ * @type {string}
562
+ * @memberof ClaimPositionsApiListClaimPositions1
563
+ */
564
+ readonly authorization?: string;
565
+ /**
566
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
567
+ * @type {number}
568
+ * @memberof ClaimPositionsApiListClaimPositions1
569
+ */
570
+ readonly pageSize?: number;
571
+ /**
572
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
573
+ * @type {string}
574
+ * @memberof ClaimPositionsApiListClaimPositions1
575
+ */
576
+ readonly pageToken?: string;
577
+ /**
578
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
579
+ * @type {string}
580
+ * @memberof ClaimPositionsApiListClaimPositions1
581
+ */
582
+ readonly filter?: string;
583
+ /**
584
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
585
+ * @type {string}
586
+ * @memberof ClaimPositionsApiListClaimPositions1
587
+ */
588
+ readonly search?: string;
589
+ /**
590
+ * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
591
+ * @type {string}
592
+ * @memberof ClaimPositionsApiListClaimPositions1
593
+ */
594
+ readonly order?: string;
595
+ /**
596
+ * Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
597
+ * @type {string}
598
+ * @memberof ClaimPositionsApiListClaimPositions1
599
+ */
600
+ readonly expand?: string;
601
+ /**
602
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
603
+ * @type {string}
604
+ * @memberof ClaimPositionsApiListClaimPositions1
605
+ */
606
+ readonly filters?: string;
607
+ }
608
+ /**
609
+ * Request parameters for updateClaimPosition operation in ClaimPositionsApi.
610
+ * @export
611
+ * @interface ClaimPositionsApiUpdateClaimPositionRequest
612
+ */
613
+ export interface ClaimPositionsApiUpdateClaimPositionRequest {
614
+ /**
615
+ *
616
+ * @type {string}
617
+ * @memberof ClaimPositionsApiUpdateClaimPosition
618
+ */
619
+ readonly code: string;
620
+ /**
621
+ *
622
+ * @type {UpdateClaimPositionRequestDto}
623
+ * @memberof ClaimPositionsApiUpdateClaimPosition
624
+ */
625
+ readonly updateClaimPositionRequestDto: UpdateClaimPositionRequestDto;
626
+ /**
627
+ * Bearer Token: provided by the login endpoint under the name accessToken.
628
+ * @type {string}
629
+ * @memberof ClaimPositionsApiUpdateClaimPosition
630
+ */
631
+ readonly authorization?: string;
632
+ }
633
+ /**
634
+ * Request parameters for updateClaimPosition1 operation in ClaimPositionsApi.
635
+ * @export
636
+ * @interface ClaimPositionsApiUpdateClaimPosition1Request
637
+ */
638
+ export interface ClaimPositionsApiUpdateClaimPosition1Request {
639
+ /**
640
+ *
641
+ * @type {string}
642
+ * @memberof ClaimPositionsApiUpdateClaimPosition1
643
+ */
644
+ readonly code: string;
645
+ /**
646
+ *
647
+ * @type {UpdateClaimPositionRequestDto}
648
+ * @memberof ClaimPositionsApiUpdateClaimPosition1
649
+ */
650
+ readonly updateClaimPositionRequestDto: UpdateClaimPositionRequestDto;
651
+ /**
652
+ * Bearer Token: provided by the login endpoint under the name accessToken.
653
+ * @type {string}
654
+ * @memberof ClaimPositionsApiUpdateClaimPosition1
655
+ */
656
+ readonly authorization?: string;
657
+ }
658
+ /**
659
+ * ClaimPositionsApi - object-oriented interface
660
+ * @export
661
+ * @class ClaimPositionsApi
662
+ * @extends {BaseAPI}
663
+ */
664
+ export declare class ClaimPositionsApi extends BaseAPI {
665
+ /**
666
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
667
+ * @summary Create the claim position
668
+ * @param {ClaimPositionsApiCreateClaimPositionRequest} requestParameters Request parameters.
669
+ * @param {*} [options] Override http request option.
670
+ * @throws {RequiredError}
671
+ * @memberof ClaimPositionsApi
672
+ */
673
+ createClaimPosition(requestParameters: ClaimPositionsApiCreateClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPositionResponseClass, any, {}>>;
674
+ /**
675
+ * This will create claim position. **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
676
+ * @summary Create the claim position
677
+ * @param {ClaimPositionsApiCreateClaimPosition1Request} requestParameters Request parameters.
678
+ * @param {*} [options] Override http request option.
679
+ * @deprecated
680
+ * @throws {RequiredError}
681
+ * @memberof ClaimPositionsApi
682
+ */
683
+ createClaimPosition1(requestParameters: ClaimPositionsApiCreateClaimPosition1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPositionResponseClass, any, {}>>;
684
+ /**
685
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
686
+ * @summary Delete the claim position
687
+ * @param {ClaimPositionsApiDeleteClaimPositionRequest} requestParameters Request parameters.
688
+ * @param {*} [options] Override http request option.
689
+ * @throws {RequiredError}
690
+ * @memberof ClaimPositionsApi
691
+ */
692
+ deleteClaimPosition(requestParameters: ClaimPositionsApiDeleteClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
693
+ /**
694
+ * This will delete claim position. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
695
+ * @summary Delete the claim position
696
+ * @param {ClaimPositionsApiDeleteClaimPosition1Request} requestParameters Request parameters.
697
+ * @param {*} [options] Override http request option.
698
+ * @deprecated
699
+ * @throws {RequiredError}
700
+ * @memberof ClaimPositionsApi
701
+ */
702
+ deleteClaimPosition1(requestParameters: ClaimPositionsApiDeleteClaimPosition1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
703
+ /**
704
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\"
705
+ * @summary Retrieve the claim position
706
+ * @param {ClaimPositionsApiGetClaimPositionRequest} requestParameters Request parameters.
707
+ * @param {*} [options] Override http request option.
708
+ * @throws {RequiredError}
709
+ * @memberof ClaimPositionsApi
710
+ */
711
+ getClaimPosition(requestParameters: ClaimPositionsApiGetClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPositionResponseClass, any, {}>>;
712
+ /**
713
+ * This will get claim position. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
714
+ * @summary Retrieve the claim position
715
+ * @param {ClaimPositionsApiGetClaimPosition1Request} requestParameters Request parameters.
716
+ * @param {*} [options] Override http request option.
717
+ * @deprecated
718
+ * @throws {RequiredError}
719
+ * @memberof ClaimPositionsApi
720
+ */
721
+ getClaimPosition1(requestParameters: ClaimPositionsApiGetClaimPosition1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPositionResponseClass, any, {}>>;
722
+ /**
723
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
724
+ * @summary List claim positions
725
+ * @param {ClaimPositionsApiListClaimPositionsRequest} requestParameters Request parameters.
726
+ * @param {*} [options] Override http request option.
727
+ * @throws {RequiredError}
728
+ * @memberof ClaimPositionsApi
729
+ */
730
+ listClaimPositions(requestParameters?: ClaimPositionsApiListClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPositionsResponseClass, any, {}>>;
731
+ /**
732
+ * Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
733
+ * @summary List claim positions
734
+ * @param {ClaimPositionsApiListClaimPositions1Request} requestParameters Request parameters.
735
+ * @param {*} [options] Override http request option.
736
+ * @deprecated
737
+ * @throws {RequiredError}
738
+ * @memberof ClaimPositionsApi
739
+ */
740
+ listClaimPositions1(requestParameters?: ClaimPositionsApiListClaimPositions1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPositionsResponseClass, any, {}>>;
741
+ /**
742
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\"
743
+ * @summary Update the claim position
744
+ * @param {ClaimPositionsApiUpdateClaimPositionRequest} requestParameters Request parameters.
745
+ * @param {*} [options] Override http request option.
746
+ * @throws {RequiredError}
747
+ * @memberof ClaimPositionsApi
748
+ */
749
+ updateClaimPosition(requestParameters: ClaimPositionsApiUpdateClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPositionResponseClass, any, {}>>;
750
+ /**
751
+ * This will update claim position. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
752
+ * @summary Update the claim position
753
+ * @param {ClaimPositionsApiUpdateClaimPosition1Request} requestParameters Request parameters.
754
+ * @param {*} [options] Override http request option.
755
+ * @deprecated
756
+ * @throws {RequiredError}
757
+ * @memberof ClaimPositionsApi
758
+ */
759
+ updateClaimPosition1(requestParameters: ClaimPositionsApiUpdateClaimPosition1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPositionResponseClass, any, {}>>;
760
+ }