@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.2 → 1.20230208.2

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 (35) hide show
  1. package/.openapi-generator/FILES +18 -3
  2. package/api/adv-accounting-api.ts +10 -26
  3. package/api/commission-rates-api.ts +98 -0
  4. package/api/event-args-api.ts +15 -15
  5. package/api/group-contract-plans-api.ts +105 -0
  6. package/api/group-contracts-api.ts +105 -0
  7. package/api/group-divisions-api.ts +115 -0
  8. package/api/group-volumes-api.ts +15 -14
  9. package/api/payor-accounts-api.ts +75 -130
  10. package/api/plan-auth-penalty-benefits-api.ts +232 -91
  11. package/api/plan-benefit-cascades-api.ts +15 -23
  12. package/api/premium-rates-api.ts +107 -0
  13. package/models/commission-rate-division-config.ts +43 -0
  14. package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
  15. package/models/commission-rate-nested.ts +43 -0
  16. package/models/commission-rate-plan-config.ts +43 -0
  17. package/models/commission-rate-rate.ts +36 -0
  18. package/models/copy-group-division.ts +132 -0
  19. package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
  20. package/models/group-volume-division-config.ts +43 -0
  21. package/models/group-volume-nested.ts +3 -3
  22. package/models/group-volume-plan-config.ts +43 -0
  23. package/models/index.ts +18 -3
  24. package/models/member-prior-accum.ts +28 -28
  25. package/models/plan-auth-penalty-benefit.ts +24 -0
  26. package/models/prem-rate-basis-config.ts +43 -0
  27. package/models/prem-rate-category-config.ts +43 -0
  28. package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
  29. package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
  30. package/models/prem-rate-nested.ts +43 -0
  31. package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
  32. package/models/prem-rate-rate.ts +36 -0
  33. package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
  34. package/models/vbagroup-contract.ts +55 -0
  35. package/package.json +1 -1
@@ -39,23 +39,22 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
39
39
  * @summary Create PlanAuthPenaltyBenefit
40
40
  * @param {string} vbasoftwareDatabase Target database
41
41
  * @param {string} planID Plan ID
42
- * @param {string} benefitCode Benefit Code
43
42
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
43
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
44
44
  * @param {*} [options] Override http request option.
45
45
  * @throws {RequiredError}
46
46
  */
47
- createPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
47
+ createPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
48
48
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
49
49
  assertParamExists('createPlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
50
50
  // verify required parameter 'planID' is not null or undefined
51
51
  assertParamExists('createPlanAuthPenaltyBenefit', 'planID', planID)
52
- // verify required parameter 'benefitCode' is not null or undefined
53
- assertParamExists('createPlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
54
52
  // verify required parameter 'planAuthPenaltyKey' is not null or undefined
55
53
  assertParamExists('createPlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
56
- const localVarPath = `/plans/{planID}/benefits/{benefitCode}/auth-penalties/{planAuthPenaltyKey}`
54
+ // verify required parameter 'planAuthPenaltyBenefit' is not null or undefined
55
+ assertParamExists('createPlanAuthPenaltyBenefit', 'planAuthPenaltyBenefit', planAuthPenaltyBenefit)
56
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits`
57
57
  .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
58
- .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
59
58
  .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)));
60
59
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
61
60
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -81,9 +80,12 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
81
80
 
82
81
 
83
82
 
83
+ localVarHeaderParameter['Content-Type'] = 'application/json';
84
+
84
85
  setSearchParams(localVarUrlObj, localVarQueryParameter);
85
86
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
86
87
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
88
+ localVarRequestOptions.data = serializeDataIfNeeded(planAuthPenaltyBenefit, localVarRequestOptions, configuration)
87
89
 
88
90
  return {
89
91
  url: toPathString(localVarUrlObj),
@@ -95,24 +97,24 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
95
97
  * @summary Delete PlanAuthPenaltyBenefit
96
98
  * @param {string} vbasoftwareDatabase Target database
97
99
  * @param {string} planID Plan ID
98
- * @param {string} benefitCode Benefit Code
99
100
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
101
+ * @param {string} benefitCode Benefit Code
100
102
  * @param {*} [options] Override http request option.
101
103
  * @throws {RequiredError}
102
104
  */
103
- deletePlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
105
+ deletePlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
104
106
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
105
107
  assertParamExists('deletePlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
106
108
  // verify required parameter 'planID' is not null or undefined
107
109
  assertParamExists('deletePlanAuthPenaltyBenefit', 'planID', planID)
108
- // verify required parameter 'benefitCode' is not null or undefined
109
- assertParamExists('deletePlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
110
110
  // verify required parameter 'planAuthPenaltyKey' is not null or undefined
111
111
  assertParamExists('deletePlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
112
- const localVarPath = `/plans/{planID}/benefits/{benefitCode}/auth-penalties/{planAuthPenaltyKey}`
112
+ // verify required parameter 'benefitCode' is not null or undefined
113
+ assertParamExists('deletePlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
114
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits/{benefitCode}`
113
115
  .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
114
- .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
115
- .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)));
116
+ .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)))
117
+ .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
116
118
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
117
119
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
118
120
  let baseOptions;
@@ -151,24 +153,24 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
151
153
  * @summary Get PlanAuthPenaltyBenefit
152
154
  * @param {string} vbasoftwareDatabase Target database
153
155
  * @param {string} planID Plan ID
154
- * @param {string} benefitCode Benefit Code
155
156
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
157
+ * @param {string} benefitCode Benefit Code
156
158
  * @param {*} [options] Override http request option.
157
159
  * @throws {RequiredError}
158
160
  */
159
- getPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
161
+ getPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
160
162
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
161
163
  assertParamExists('getPlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
162
164
  // verify required parameter 'planID' is not null or undefined
163
165
  assertParamExists('getPlanAuthPenaltyBenefit', 'planID', planID)
164
- // verify required parameter 'benefitCode' is not null or undefined
165
- assertParamExists('getPlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
166
166
  // verify required parameter 'planAuthPenaltyKey' is not null or undefined
167
167
  assertParamExists('getPlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
168
- const localVarPath = `/plans/{planID}/benefits/{benefitCode}/auth-penalties/{planAuthPenaltyKey}`
168
+ // verify required parameter 'benefitCode' is not null or undefined
169
+ assertParamExists('getPlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
170
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits/{benefitCode}`
169
171
  .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
170
- .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)))
171
- .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)));
172
+ .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)))
173
+ .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
172
174
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
173
175
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
174
176
  let baseOptions;
@@ -203,24 +205,26 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
203
205
  };
204
206
  },
205
207
  /**
206
- * Lists all PlanAuthPenaltyBenefit for the given benefitCode
208
+ * Lists all PlanAuthPenaltyBenefit for the given planAuthPenaltyKey
207
209
  * @summary List PlanAuthPenaltyBenefit
208
210
  * @param {string} vbasoftwareDatabase Target database
209
211
  * @param {string} planID Plan ID
210
- * @param {string} benefitCode Benefit Code
212
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
213
+ * @param {number} [page] Page
214
+ * @param {number} [pageSize] Page Size
211
215
  * @param {*} [options] Override http request option.
212
216
  * @throws {RequiredError}
213
217
  */
214
- listPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, benefitCode: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
218
+ listPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
215
219
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
216
220
  assertParamExists('listPlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
217
221
  // verify required parameter 'planID' is not null or undefined
218
222
  assertParamExists('listPlanAuthPenaltyBenefit', 'planID', planID)
219
- // verify required parameter 'benefitCode' is not null or undefined
220
- assertParamExists('listPlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
221
- const localVarPath = `/plans/{planID}/benefits/{benefitCode}/auth-penalties`
223
+ // verify required parameter 'planAuthPenaltyKey' is not null or undefined
224
+ assertParamExists('listPlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
225
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits`
222
226
  .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
223
- .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
227
+ .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)));
224
228
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
225
229
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
226
230
  let baseOptions;
@@ -239,6 +243,14 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
239
243
  // http bearer authentication required
240
244
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
241
245
 
246
+ if (page !== undefined) {
247
+ localVarQueryParameter['page'] = page;
248
+ }
249
+
250
+ if (pageSize !== undefined) {
251
+ localVarQueryParameter['pageSize'] = pageSize;
252
+ }
253
+
242
254
  if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
243
255
  localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
244
256
  }
@@ -259,22 +271,84 @@ export const PlanAuthPenaltyBenefitsApiAxiosParamCreator = function (configurati
259
271
  * @summary Create or Update Batch PlanAuthPenaltyBenefit
260
272
  * @param {string} vbasoftwareDatabase Target database
261
273
  * @param {string} planID Plan ID
262
- * @param {string} benefitCode Benefit Code
274
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
263
275
  * @param {Array<PlanAuthPenaltyBenefit>} planAuthPenaltyBenefit
264
276
  * @param {*} [options] Override http request option.
265
277
  * @throws {RequiredError}
266
278
  */
267
- updateBatchPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
279
+ updateBatchPlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
268
280
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
269
281
  assertParamExists('updateBatchPlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
270
282
  // verify required parameter 'planID' is not null or undefined
271
283
  assertParamExists('updateBatchPlanAuthPenaltyBenefit', 'planID', planID)
272
- // verify required parameter 'benefitCode' is not null or undefined
273
- assertParamExists('updateBatchPlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
284
+ // verify required parameter 'planAuthPenaltyKey' is not null or undefined
285
+ assertParamExists('updateBatchPlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
274
286
  // verify required parameter 'planAuthPenaltyBenefit' is not null or undefined
275
287
  assertParamExists('updateBatchPlanAuthPenaltyBenefit', 'planAuthPenaltyBenefit', planAuthPenaltyBenefit)
276
- const localVarPath = `/plans/{planID}/benefits/{benefitCode}/auth-penalties-batch`
288
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits-batch`
277
289
  .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
290
+ .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)));
291
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
292
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
293
+ let baseOptions;
294
+ if (configuration) {
295
+ baseOptions = configuration.baseOptions;
296
+ }
297
+
298
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
299
+ const localVarHeaderParameter = {} as any;
300
+ const localVarQueryParameter = {} as any;
301
+
302
+ // authentication apiKeyAuth required
303
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
304
+
305
+ // authentication bearerAuth required
306
+ // http bearer authentication required
307
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
308
+
309
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
310
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
311
+ }
312
+
313
+
314
+
315
+ localVarHeaderParameter['Content-Type'] = 'application/json';
316
+
317
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
318
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
319
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
320
+ localVarRequestOptions.data = serializeDataIfNeeded(planAuthPenaltyBenefit, localVarRequestOptions, configuration)
321
+
322
+ return {
323
+ url: toPathString(localVarUrlObj),
324
+ options: localVarRequestOptions,
325
+ };
326
+ },
327
+ /**
328
+ * Updates a specific PlanAuthPenaltyBenefit.
329
+ * @summary Update PlanAuthPenaltyBenefit
330
+ * @param {string} vbasoftwareDatabase Target database
331
+ * @param {string} planID Plan ID
332
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
333
+ * @param {string} benefitCode Benefit Code
334
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
335
+ * @param {*} [options] Override http request option.
336
+ * @throws {RequiredError}
337
+ */
338
+ updatePlanAuthPenaltyBenefit: async (vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
339
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
340
+ assertParamExists('updatePlanAuthPenaltyBenefit', 'vbasoftwareDatabase', vbasoftwareDatabase)
341
+ // verify required parameter 'planID' is not null or undefined
342
+ assertParamExists('updatePlanAuthPenaltyBenefit', 'planID', planID)
343
+ // verify required parameter 'planAuthPenaltyKey' is not null or undefined
344
+ assertParamExists('updatePlanAuthPenaltyBenefit', 'planAuthPenaltyKey', planAuthPenaltyKey)
345
+ // verify required parameter 'benefitCode' is not null or undefined
346
+ assertParamExists('updatePlanAuthPenaltyBenefit', 'benefitCode', benefitCode)
347
+ // verify required parameter 'planAuthPenaltyBenefit' is not null or undefined
348
+ assertParamExists('updatePlanAuthPenaltyBenefit', 'planAuthPenaltyBenefit', planAuthPenaltyBenefit)
349
+ const localVarPath = `/plans/{planID}/auth-penalties/{planAuthPenaltyKey}/benefits/{benefitCode}`
350
+ .replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
351
+ .replace(`{${"planAuthPenaltyKey"}}`, encodeURIComponent(String(planAuthPenaltyKey)))
278
352
  .replace(`{${"benefitCode"}}`, encodeURIComponent(String(benefitCode)));
279
353
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
280
354
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -327,13 +401,13 @@ export const PlanAuthPenaltyBenefitsApiFp = function(configuration?: Configurati
327
401
  * @summary Create PlanAuthPenaltyBenefit
328
402
  * @param {string} vbasoftwareDatabase Target database
329
403
  * @param {string} planID Plan ID
330
- * @param {string} benefitCode Benefit Code
331
404
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
405
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
332
406
  * @param {*} [options] Override http request option.
333
407
  * @throws {RequiredError}
334
408
  */
335
- async createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>> {
336
- const localVarAxiosArgs = await localVarAxiosParamCreator.createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options);
409
+ async createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>> {
410
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options);
337
411
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
338
412
  },
339
413
  /**
@@ -341,13 +415,13 @@ export const PlanAuthPenaltyBenefitsApiFp = function(configuration?: Configurati
341
415
  * @summary Delete PlanAuthPenaltyBenefit
342
416
  * @param {string} vbasoftwareDatabase Target database
343
417
  * @param {string} planID Plan ID
344
- * @param {string} benefitCode Benefit Code
345
418
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
419
+ * @param {string} benefitCode Benefit Code
346
420
  * @param {*} [options] Override http request option.
347
421
  * @throws {RequiredError}
348
422
  */
349
- async deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
350
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options);
423
+ async deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
424
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options);
351
425
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
352
426
  },
353
427
  /**
@@ -355,26 +429,28 @@ export const PlanAuthPenaltyBenefitsApiFp = function(configuration?: Configurati
355
429
  * @summary Get PlanAuthPenaltyBenefit
356
430
  * @param {string} vbasoftwareDatabase Target database
357
431
  * @param {string} planID Plan ID
358
- * @param {string} benefitCode Benefit Code
359
432
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
433
+ * @param {string} benefitCode Benefit Code
360
434
  * @param {*} [options] Override http request option.
361
435
  * @throws {RequiredError}
362
436
  */
363
- async getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>> {
364
- const localVarAxiosArgs = await localVarAxiosParamCreator.getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options);
437
+ async getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>> {
438
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options);
365
439
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
366
440
  },
367
441
  /**
368
- * Lists all PlanAuthPenaltyBenefit for the given benefitCode
442
+ * Lists all PlanAuthPenaltyBenefit for the given planAuthPenaltyKey
369
443
  * @summary List PlanAuthPenaltyBenefit
370
444
  * @param {string} vbasoftwareDatabase Target database
371
445
  * @param {string} planID Plan ID
372
- * @param {string} benefitCode Benefit Code
446
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
447
+ * @param {number} [page] Page
448
+ * @param {number} [pageSize] Page Size
373
449
  * @param {*} [options] Override http request option.
374
450
  * @throws {RequiredError}
375
451
  */
376
- async listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse>> {
377
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, options);
452
+ async listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse>> {
453
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, page, pageSize, options);
378
454
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
379
455
  },
380
456
  /**
@@ -382,13 +458,28 @@ export const PlanAuthPenaltyBenefitsApiFp = function(configuration?: Configurati
382
458
  * @summary Create or Update Batch PlanAuthPenaltyBenefit
383
459
  * @param {string} vbasoftwareDatabase Target database
384
460
  * @param {string} planID Plan ID
385
- * @param {string} benefitCode Benefit Code
461
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
386
462
  * @param {Array<PlanAuthPenaltyBenefit>} planAuthPenaltyBenefit
387
463
  * @param {*} [options] Override http request option.
388
464
  * @throws {RequiredError}
389
465
  */
390
- async updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
391
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyBenefit, options);
466
+ async updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
467
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options);
468
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
469
+ },
470
+ /**
471
+ * Updates a specific PlanAuthPenaltyBenefit.
472
+ * @summary Update PlanAuthPenaltyBenefit
473
+ * @param {string} vbasoftwareDatabase Target database
474
+ * @param {string} planID Plan ID
475
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
476
+ * @param {string} benefitCode Benefit Code
477
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
478
+ * @param {*} [options] Override http request option.
479
+ * @throws {RequiredError}
480
+ */
481
+ async updatePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>> {
482
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, planAuthPenaltyBenefit, options);
392
483
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
393
484
  },
394
485
  }
@@ -406,64 +497,80 @@ export const PlanAuthPenaltyBenefitsApiFactory = function (configuration?: Confi
406
497
  * @summary Create PlanAuthPenaltyBenefit
407
498
  * @param {string} vbasoftwareDatabase Target database
408
499
  * @param {string} planID Plan ID
409
- * @param {string} benefitCode Benefit Code
410
500
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
501
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
411
502
  * @param {*} [options] Override http request option.
412
503
  * @throws {RequiredError}
413
504
  */
414
- createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: any): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse> {
415
- return localVarFp.createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(axios, basePath));
505
+ createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: any): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse> {
506
+ return localVarFp.createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options).then((request) => request(axios, basePath));
416
507
  },
417
508
  /**
418
509
  * Deletes an PlanAuthPenaltyBenefit
419
510
  * @summary Delete PlanAuthPenaltyBenefit
420
511
  * @param {string} vbasoftwareDatabase Target database
421
512
  * @param {string} planID Plan ID
422
- * @param {string} benefitCode Benefit Code
423
513
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
514
+ * @param {string} benefitCode Benefit Code
424
515
  * @param {*} [options] Override http request option.
425
516
  * @throws {RequiredError}
426
517
  */
427
- deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: any): AxiosPromise<void> {
428
- return localVarFp.deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(axios, basePath));
518
+ deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: any): AxiosPromise<void> {
519
+ return localVarFp.deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options).then((request) => request(axios, basePath));
429
520
  },
430
521
  /**
431
522
  * Gets PlanAuthPenaltyBenefit
432
523
  * @summary Get PlanAuthPenaltyBenefit
433
524
  * @param {string} vbasoftwareDatabase Target database
434
525
  * @param {string} planID Plan ID
435
- * @param {string} benefitCode Benefit Code
436
526
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
527
+ * @param {string} benefitCode Benefit Code
437
528
  * @param {*} [options] Override http request option.
438
529
  * @throws {RequiredError}
439
530
  */
440
- getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: any): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse> {
441
- return localVarFp.getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(axios, basePath));
531
+ getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: any): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse> {
532
+ return localVarFp.getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options).then((request) => request(axios, basePath));
442
533
  },
443
534
  /**
444
- * Lists all PlanAuthPenaltyBenefit for the given benefitCode
535
+ * Lists all PlanAuthPenaltyBenefit for the given planAuthPenaltyKey
445
536
  * @summary List PlanAuthPenaltyBenefit
446
537
  * @param {string} vbasoftwareDatabase Target database
447
538
  * @param {string} planID Plan ID
448
- * @param {string} benefitCode Benefit Code
539
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
540
+ * @param {number} [page] Page
541
+ * @param {number} [pageSize] Page Size
449
542
  * @param {*} [options] Override http request option.
450
543
  * @throws {RequiredError}
451
544
  */
452
- listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, options?: any): AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse> {
453
- return localVarFp.listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, options).then((request) => request(axios, basePath));
545
+ listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, page?: number, pageSize?: number, options?: any): AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse> {
546
+ return localVarFp.listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, page, pageSize, options).then((request) => request(axios, basePath));
454
547
  },
455
548
  /**
456
549
  * Create or Update multiple PlanAuthPenaltyBenefit at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
457
550
  * @summary Create or Update Batch PlanAuthPenaltyBenefit
458
551
  * @param {string} vbasoftwareDatabase Target database
459
552
  * @param {string} planID Plan ID
460
- * @param {string} benefitCode Benefit Code
553
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
461
554
  * @param {Array<PlanAuthPenaltyBenefit>} planAuthPenaltyBenefit
462
555
  * @param {*} [options] Override http request option.
463
556
  * @throws {RequiredError}
464
557
  */
465
- updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
466
- return localVarFp.updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyBenefit, options).then((request) => request(axios, basePath));
558
+ updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
559
+ return localVarFp.updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options).then((request) => request(axios, basePath));
560
+ },
561
+ /**
562
+ * Updates a specific PlanAuthPenaltyBenefit.
563
+ * @summary Update PlanAuthPenaltyBenefit
564
+ * @param {string} vbasoftwareDatabase Target database
565
+ * @param {string} planID Plan ID
566
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
567
+ * @param {string} benefitCode Benefit Code
568
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
569
+ * @param {*} [options] Override http request option.
570
+ * @throws {RequiredError}
571
+ */
572
+ updatePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: any): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse> {
573
+ return localVarFp.updatePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, planAuthPenaltyBenefit, options).then((request) => request(axios, basePath));
467
574
  },
468
575
  };
469
576
  };
@@ -479,64 +586,80 @@ export interface PlanAuthPenaltyBenefitsApiInterface {
479
586
  * @summary Create PlanAuthPenaltyBenefit
480
587
  * @param {string} vbasoftwareDatabase Target database
481
588
  * @param {string} planID Plan ID
482
- * @param {string} benefitCode Benefit Code
483
589
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
590
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
484
591
  * @param {*} [options] Override http request option.
485
592
  * @throws {RequiredError}
486
593
  * @memberof PlanAuthPenaltyBenefitsApiInterface
487
594
  */
488
- createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>;
595
+ createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>;
489
596
 
490
597
  /**
491
598
  * Deletes an PlanAuthPenaltyBenefit
492
599
  * @summary Delete PlanAuthPenaltyBenefit
493
600
  * @param {string} vbasoftwareDatabase Target database
494
601
  * @param {string} planID Plan ID
495
- * @param {string} benefitCode Benefit Code
496
602
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
603
+ * @param {string} benefitCode Benefit Code
497
604
  * @param {*} [options] Override http request option.
498
605
  * @throws {RequiredError}
499
606
  * @memberof PlanAuthPenaltyBenefitsApiInterface
500
607
  */
501
- deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
608
+ deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig): AxiosPromise<void>;
502
609
 
503
610
  /**
504
611
  * Gets PlanAuthPenaltyBenefit
505
612
  * @summary Get PlanAuthPenaltyBenefit
506
613
  * @param {string} vbasoftwareDatabase Target database
507
614
  * @param {string} planID Plan ID
508
- * @param {string} benefitCode Benefit Code
509
615
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
616
+ * @param {string} benefitCode Benefit Code
510
617
  * @param {*} [options] Override http request option.
511
618
  * @throws {RequiredError}
512
619
  * @memberof PlanAuthPenaltyBenefitsApiInterface
513
620
  */
514
- getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>;
621
+ getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>;
515
622
 
516
623
  /**
517
- * Lists all PlanAuthPenaltyBenefit for the given benefitCode
624
+ * Lists all PlanAuthPenaltyBenefit for the given planAuthPenaltyKey
518
625
  * @summary List PlanAuthPenaltyBenefit
519
626
  * @param {string} vbasoftwareDatabase Target database
520
627
  * @param {string} planID Plan ID
521
- * @param {string} benefitCode Benefit Code
628
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
629
+ * @param {number} [page] Page
630
+ * @param {number} [pageSize] Page Size
522
631
  * @param {*} [options] Override http request option.
523
632
  * @throws {RequiredError}
524
633
  * @memberof PlanAuthPenaltyBenefitsApiInterface
525
634
  */
526
- listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse>;
635
+ listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitListVBAResponse>;
527
636
 
528
637
  /**
529
638
  * Create or Update multiple PlanAuthPenaltyBenefit at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
530
639
  * @summary Create or Update Batch PlanAuthPenaltyBenefit
531
640
  * @param {string} vbasoftwareDatabase Target database
532
641
  * @param {string} planID Plan ID
533
- * @param {string} benefitCode Benefit Code
642
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
534
643
  * @param {Array<PlanAuthPenaltyBenefit>} planAuthPenaltyBenefit
535
644
  * @param {*} [options] Override http request option.
536
645
  * @throws {RequiredError}
537
646
  * @memberof PlanAuthPenaltyBenefitsApiInterface
538
647
  */
539
- updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
648
+ updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
649
+
650
+ /**
651
+ * Updates a specific PlanAuthPenaltyBenefit.
652
+ * @summary Update PlanAuthPenaltyBenefit
653
+ * @param {string} vbasoftwareDatabase Target database
654
+ * @param {string} planID Plan ID
655
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
656
+ * @param {string} benefitCode Benefit Code
657
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
658
+ * @param {*} [options] Override http request option.
659
+ * @throws {RequiredError}
660
+ * @memberof PlanAuthPenaltyBenefitsApiInterface
661
+ */
662
+ updatePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig): AxiosPromise<PlanAuthPenaltyBenefitVBAResponse>;
540
663
 
541
664
  }
542
665
 
@@ -552,14 +675,14 @@ export class PlanAuthPenaltyBenefitsApi extends BaseAPI implements PlanAuthPenal
552
675
  * @summary Create PlanAuthPenaltyBenefit
553
676
  * @param {string} vbasoftwareDatabase Target database
554
677
  * @param {string} planID Plan ID
555
- * @param {string} benefitCode Benefit Code
556
678
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
679
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
557
680
  * @param {*} [options] Override http request option.
558
681
  * @throws {RequiredError}
559
682
  * @memberof PlanAuthPenaltyBenefitsApi
560
683
  */
561
- public createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig) {
562
- return PlanAuthPenaltyBenefitsApiFp(this.configuration).createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(this.axios, this.basePath));
684
+ public createPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig) {
685
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).createPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options).then((request) => request(this.axios, this.basePath));
563
686
  }
564
687
 
565
688
  /**
@@ -567,14 +690,14 @@ export class PlanAuthPenaltyBenefitsApi extends BaseAPI implements PlanAuthPenal
567
690
  * @summary Delete PlanAuthPenaltyBenefit
568
691
  * @param {string} vbasoftwareDatabase Target database
569
692
  * @param {string} planID Plan ID
570
- * @param {string} benefitCode Benefit Code
571
693
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
694
+ * @param {string} benefitCode Benefit Code
572
695
  * @param {*} [options] Override http request option.
573
696
  * @throws {RequiredError}
574
697
  * @memberof PlanAuthPenaltyBenefitsApi
575
698
  */
576
- public deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig) {
577
- return PlanAuthPenaltyBenefitsApiFp(this.configuration).deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(this.axios, this.basePath));
699
+ public deletePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig) {
700
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).deletePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options).then((request) => request(this.axios, this.basePath));
578
701
  }
579
702
 
580
703
  /**
@@ -582,28 +705,30 @@ export class PlanAuthPenaltyBenefitsApi extends BaseAPI implements PlanAuthPenal
582
705
  * @summary Get PlanAuthPenaltyBenefit
583
706
  * @param {string} vbasoftwareDatabase Target database
584
707
  * @param {string} planID Plan ID
585
- * @param {string} benefitCode Benefit Code
586
708
  * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
709
+ * @param {string} benefitCode Benefit Code
587
710
  * @param {*} [options] Override http request option.
588
711
  * @throws {RequiredError}
589
712
  * @memberof PlanAuthPenaltyBenefitsApi
590
713
  */
591
- public getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyKey: number, options?: AxiosRequestConfig) {
592
- return PlanAuthPenaltyBenefitsApiFp(this.configuration).getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyKey, options).then((request) => request(this.axios, this.basePath));
714
+ public getPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, options?: AxiosRequestConfig) {
715
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).getPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, options).then((request) => request(this.axios, this.basePath));
593
716
  }
594
717
 
595
718
  /**
596
- * Lists all PlanAuthPenaltyBenefit for the given benefitCode
719
+ * Lists all PlanAuthPenaltyBenefit for the given planAuthPenaltyKey
597
720
  * @summary List PlanAuthPenaltyBenefit
598
721
  * @param {string} vbasoftwareDatabase Target database
599
722
  * @param {string} planID Plan ID
600
- * @param {string} benefitCode Benefit Code
723
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
724
+ * @param {number} [page] Page
725
+ * @param {number} [pageSize] Page Size
601
726
  * @param {*} [options] Override http request option.
602
727
  * @throws {RequiredError}
603
728
  * @memberof PlanAuthPenaltyBenefitsApi
604
729
  */
605
- public listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, options?: AxiosRequestConfig) {
606
- return PlanAuthPenaltyBenefitsApiFp(this.configuration).listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, options).then((request) => request(this.axios, this.basePath));
730
+ public listPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
731
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).listPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
607
732
  }
608
733
 
609
734
  /**
@@ -611,13 +736,29 @@ export class PlanAuthPenaltyBenefitsApi extends BaseAPI implements PlanAuthPenal
611
736
  * @summary Create or Update Batch PlanAuthPenaltyBenefit
612
737
  * @param {string} vbasoftwareDatabase Target database
613
738
  * @param {string} planID Plan ID
614
- * @param {string} benefitCode Benefit Code
739
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
615
740
  * @param {Array<PlanAuthPenaltyBenefit>} planAuthPenaltyBenefit
616
741
  * @param {*} [options] Override http request option.
617
742
  * @throws {RequiredError}
618
743
  * @memberof PlanAuthPenaltyBenefitsApi
619
744
  */
620
- public updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, benefitCode: string, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig) {
621
- return PlanAuthPenaltyBenefitsApiFp(this.configuration).updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, benefitCode, planAuthPenaltyBenefit, options).then((request) => request(this.axios, this.basePath));
745
+ public updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, planAuthPenaltyBenefit: Array<PlanAuthPenaltyBenefit>, options?: AxiosRequestConfig) {
746
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).updateBatchPlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, planAuthPenaltyBenefit, options).then((request) => request(this.axios, this.basePath));
747
+ }
748
+
749
+ /**
750
+ * Updates a specific PlanAuthPenaltyBenefit.
751
+ * @summary Update PlanAuthPenaltyBenefit
752
+ * @param {string} vbasoftwareDatabase Target database
753
+ * @param {string} planID Plan ID
754
+ * @param {number} planAuthPenaltyKey PlanAuthPenalty Key
755
+ * @param {string} benefitCode Benefit Code
756
+ * @param {PlanAuthPenaltyBenefit} planAuthPenaltyBenefit
757
+ * @param {*} [options] Override http request option.
758
+ * @throws {RequiredError}
759
+ * @memberof PlanAuthPenaltyBenefitsApi
760
+ */
761
+ public updatePlanAuthPenaltyBenefit(vbasoftwareDatabase: string, planID: string, planAuthPenaltyKey: number, benefitCode: string, planAuthPenaltyBenefit: PlanAuthPenaltyBenefit, options?: AxiosRequestConfig) {
762
+ return PlanAuthPenaltyBenefitsApiFp(this.configuration).updatePlanAuthPenaltyBenefit(vbasoftwareDatabase, planID, planAuthPenaltyKey, benefitCode, planAuthPenaltyBenefit, options).then((request) => request(this.axios, this.basePath));
622
763
  }
623
764
  }