@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230403.1 → 1.20230512.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +20 -1
- package/api/capitation-plan-rates-api.ts +22 -13
- package/api/claim-adjudication-api.ts +404 -0
- package/api/commission-adjustments-api.ts +59 -107
- package/api/commission-rate-subscribers-api.ts +126 -0
- package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
- package/api/context4-health-cost-containment-options-api.ts +17 -8
- package/api/groups-api.ts +97 -0
- package/api/invoice-status-api.ts +155 -0
- package/api/invoice-types-api.ts +155 -0
- package/api/members-api.ts +323 -0
- package/api/plan-benefit-clusters-api.ts +17 -8
- package/api/plan-relationship-age-restrictions-api.ts +63 -148
- package/api/premium-invoice-subscribers-api.ts +123 -0
- package/api/process-logging-api.ts +105 -0
- package/api/security-area-user-groups-api.ts +100 -0
- package/api/security-area-users-api.ts +98 -0
- package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
- package/api/ucnetwork-api.ts +710 -0
- package/api.ts +3 -1
- package/models/auth-adjustment.ts +2 -2
- package/models/billing-cycle.ts +25 -1
- package/models/call-tracking.ts +25 -1
- package/models/check-batch.ts +27 -3
- package/models/commission-adjustment.ts +21 -15
- package/models/commission-rate.ts +90 -36
- package/models/company-data.ts +12 -0
- package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
- package/models/enrollment-pcpauto-assign-member.ts +96 -0
- package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
- package/models/enrollment-pcpauto-assign-provider.ts +90 -0
- package/models/enrollment-pcpauto-assign.ts +3 -3
- package/models/funding-request.ts +26 -2
- package/models/index.ts +17 -0
- package/models/payee.ts +29 -5
- package/models/plan-pre-ex.ts +54 -0
- package/models/plans.ts +6 -0
- package/models/prem-invoice.ts +27 -21
- package/models/prem-rate-type.ts +6 -0
- package/models/prem-rate.ts +6 -0
- package/models/state-interest.ts +72 -0
- package/models/state.ts +35 -5
- package/models/string-list-vbaresponse.ts +44 -0
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/sub-payment-method.ts +16 -10
- package/models/subscriber-forfeiture-status.ts +25 -1
- package/models/subscribers.ts +6 -0
- package/models/ucnetwork-list-vbaresponse.ts +45 -0
- package/models/ucnetwork-vbaresponse.ts +45 -0
- package/models/ucnetwork.ts +90 -0
- package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
- package/models/vbacommission-rate-subscriber.ts +48 -0
- package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
- package/models/vbagroup-enrollment-summary.ts +48 -0
- package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
- package/models/vbamembers-disability-tax-summary.ts +276 -0
- package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
- package/models/vbaprem-invoice-subscriber-history.ts +108 -0
- package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
- package/package.json +1 -1
- package/api/subscriber-plan-forfeitures-api.ts +0 -731
|
@@ -38,24 +38,16 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
38
38
|
* Creates a new PlanRelationshipAge
|
|
39
39
|
* @summary Create PlanRelationshipAge
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {string} planID Plan ID
|
|
42
|
-
* @param {string} relateCode Relate Code
|
|
43
41
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
44
42
|
* @param {*} [options] Override http request option.
|
|
45
43
|
* @throws {RequiredError}
|
|
46
44
|
*/
|
|
47
|
-
createPlanRelationshipAge: async (vbasoftwareDatabase: string,
|
|
45
|
+
createPlanRelationshipAge: async (vbasoftwareDatabase: string, planRelationshipAge: PlanRelationshipAge, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
49
47
|
assertParamExists('createPlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
50
|
-
// verify required parameter 'planID' is not null or undefined
|
|
51
|
-
assertParamExists('createPlanRelationshipAge', 'planID', planID)
|
|
52
|
-
// verify required parameter 'relateCode' is not null or undefined
|
|
53
|
-
assertParamExists('createPlanRelationshipAge', 'relateCode', relateCode)
|
|
54
48
|
// verify required parameter 'planRelationshipAge' is not null or undefined
|
|
55
49
|
assertParamExists('createPlanRelationshipAge', 'planRelationshipAge', planRelationshipAge)
|
|
56
|
-
const localVarPath = `/
|
|
57
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
58
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)));
|
|
50
|
+
const localVarPath = `/plan-relationship-age-restrictions`;
|
|
59
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
61
53
|
let baseOptions;
|
|
@@ -96,24 +88,16 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
96
88
|
* Deletes an PlanRelationshipAge
|
|
97
89
|
* @summary Delete PlanRelationshipAge
|
|
98
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
99
|
-
* @param {string} planID Plan ID
|
|
100
|
-
* @param {string} relateCode Relate Code
|
|
101
91
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
102
92
|
* @param {*} [options] Override http request option.
|
|
103
93
|
* @throws {RequiredError}
|
|
104
94
|
*/
|
|
105
|
-
deletePlanRelationshipAge: async (vbasoftwareDatabase: string,
|
|
95
|
+
deletePlanRelationshipAge: async (vbasoftwareDatabase: string, planRelationshipAgeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
106
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
107
97
|
assertParamExists('deletePlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
108
|
-
// verify required parameter 'planID' is not null or undefined
|
|
109
|
-
assertParamExists('deletePlanRelationshipAge', 'planID', planID)
|
|
110
|
-
// verify required parameter 'relateCode' is not null or undefined
|
|
111
|
-
assertParamExists('deletePlanRelationshipAge', 'relateCode', relateCode)
|
|
112
98
|
// verify required parameter 'planRelationshipAgeKey' is not null or undefined
|
|
113
99
|
assertParamExists('deletePlanRelationshipAge', 'planRelationshipAgeKey', planRelationshipAgeKey)
|
|
114
|
-
const localVarPath = `/
|
|
115
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
116
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)))
|
|
100
|
+
const localVarPath = `/plan-relationship-age-restrictions/{planRelationshipAgeKey}`
|
|
117
101
|
.replace(`{${"planRelationshipAgeKey"}}`, encodeURIComponent(String(planRelationshipAgeKey)));
|
|
118
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -152,24 +136,16 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
152
136
|
* Gets PlanRelationshipAge
|
|
153
137
|
* @summary Get PlanRelationshipAge
|
|
154
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
155
|
-
* @param {string} planID Plan ID
|
|
156
|
-
* @param {string} relateCode Relate Code
|
|
157
139
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
158
140
|
* @param {*} [options] Override http request option.
|
|
159
141
|
* @throws {RequiredError}
|
|
160
142
|
*/
|
|
161
|
-
getPlanRelationshipAge: async (vbasoftwareDatabase: string,
|
|
143
|
+
getPlanRelationshipAge: async (vbasoftwareDatabase: string, planRelationshipAgeKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
162
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
163
145
|
assertParamExists('getPlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
164
|
-
// verify required parameter 'planID' is not null or undefined
|
|
165
|
-
assertParamExists('getPlanRelationshipAge', 'planID', planID)
|
|
166
|
-
// verify required parameter 'relateCode' is not null or undefined
|
|
167
|
-
assertParamExists('getPlanRelationshipAge', 'relateCode', relateCode)
|
|
168
146
|
// verify required parameter 'planRelationshipAgeKey' is not null or undefined
|
|
169
147
|
assertParamExists('getPlanRelationshipAge', 'planRelationshipAgeKey', planRelationshipAgeKey)
|
|
170
|
-
const localVarPath = `/
|
|
171
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
172
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)))
|
|
148
|
+
const localVarPath = `/plan-relationship-age-restrictions/{planRelationshipAgeKey}`
|
|
173
149
|
.replace(`{${"planRelationshipAgeKey"}}`, encodeURIComponent(String(planRelationshipAgeKey)));
|
|
174
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
175
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -205,24 +181,19 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
205
181
|
};
|
|
206
182
|
},
|
|
207
183
|
/**
|
|
208
|
-
* Lists all PlanRelationshipAge for the given planID
|
|
184
|
+
* Lists all PlanRelationshipAge for the given planID
|
|
209
185
|
* @summary List PlanRelationshipAge
|
|
210
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
211
187
|
* @param {string} planID Plan ID
|
|
212
|
-
* @param {string} relateCode Relate Code
|
|
213
188
|
* @param {*} [options] Override http request option.
|
|
214
189
|
* @throws {RequiredError}
|
|
215
190
|
*/
|
|
216
|
-
listPlanRelationshipAge: async (vbasoftwareDatabase: string, planID: string,
|
|
191
|
+
listPlanRelationshipAge: async (vbasoftwareDatabase: string, planID: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
217
192
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
218
193
|
assertParamExists('listPlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
219
194
|
// verify required parameter 'planID' is not null or undefined
|
|
220
195
|
assertParamExists('listPlanRelationshipAge', 'planID', planID)
|
|
221
|
-
|
|
222
|
-
assertParamExists('listPlanRelationshipAge', 'relateCode', relateCode)
|
|
223
|
-
const localVarPath = `/plans/{planID}/relationships/{relateCode}/restrictions`
|
|
224
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
225
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)));
|
|
196
|
+
const localVarPath = `/plan-relationship-age-restrictions`;
|
|
226
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
227
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
228
199
|
let baseOptions;
|
|
@@ -241,6 +212,10 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
241
212
|
// http bearer authentication required
|
|
242
213
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
243
214
|
|
|
215
|
+
if (planID !== undefined) {
|
|
216
|
+
localVarQueryParameter['planID'] = planID;
|
|
217
|
+
}
|
|
218
|
+
|
|
244
219
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
245
220
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
246
221
|
}
|
|
@@ -260,24 +235,16 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
260
235
|
* Create or Update multiple PlanRelationshipAge at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
261
236
|
* @summary Create or Update Batch PlanRelationshipAge
|
|
262
237
|
* @param {string} vbasoftwareDatabase Target database
|
|
263
|
-
* @param {string} planID Plan ID
|
|
264
|
-
* @param {string} relateCode Relate Code
|
|
265
238
|
* @param {Array<PlanRelationshipAge>} planRelationshipAge
|
|
266
239
|
* @param {*} [options] Override http request option.
|
|
267
240
|
* @throws {RequiredError}
|
|
268
241
|
*/
|
|
269
|
-
updateBatchPlanRelationshipAge: async (vbasoftwareDatabase: string,
|
|
242
|
+
updateBatchPlanRelationshipAge: async (vbasoftwareDatabase: string, planRelationshipAge: Array<PlanRelationshipAge>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
270
243
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
271
244
|
assertParamExists('updateBatchPlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
272
|
-
// verify required parameter 'planID' is not null or undefined
|
|
273
|
-
assertParamExists('updateBatchPlanRelationshipAge', 'planID', planID)
|
|
274
|
-
// verify required parameter 'relateCode' is not null or undefined
|
|
275
|
-
assertParamExists('updateBatchPlanRelationshipAge', 'relateCode', relateCode)
|
|
276
245
|
// verify required parameter 'planRelationshipAge' is not null or undefined
|
|
277
246
|
assertParamExists('updateBatchPlanRelationshipAge', 'planRelationshipAge', planRelationshipAge)
|
|
278
|
-
const localVarPath = `/
|
|
279
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
280
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)));
|
|
247
|
+
const localVarPath = `/plan-relationship-age-restrictions-batch`;
|
|
281
248
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
282
249
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
283
250
|
let baseOptions;
|
|
@@ -318,27 +285,19 @@ export const PlanRelationshipAgeRestrictionsApiAxiosParamCreator = function (con
|
|
|
318
285
|
* Updates a specific PlanRelationshipAge.
|
|
319
286
|
* @summary Update PlanRelationshipAge
|
|
320
287
|
* @param {string} vbasoftwareDatabase Target database
|
|
321
|
-
* @param {string} planID Plan ID
|
|
322
|
-
* @param {string} relateCode Relate Code
|
|
323
288
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
324
289
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
325
290
|
* @param {*} [options] Override http request option.
|
|
326
291
|
* @throws {RequiredError}
|
|
327
292
|
*/
|
|
328
|
-
updatePlanRelationshipAge: async (vbasoftwareDatabase: string,
|
|
293
|
+
updatePlanRelationshipAge: async (vbasoftwareDatabase: string, planRelationshipAgeKey: number, planRelationshipAge: PlanRelationshipAge, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
329
294
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
330
295
|
assertParamExists('updatePlanRelationshipAge', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
331
|
-
// verify required parameter 'planID' is not null or undefined
|
|
332
|
-
assertParamExists('updatePlanRelationshipAge', 'planID', planID)
|
|
333
|
-
// verify required parameter 'relateCode' is not null or undefined
|
|
334
|
-
assertParamExists('updatePlanRelationshipAge', 'relateCode', relateCode)
|
|
335
296
|
// verify required parameter 'planRelationshipAgeKey' is not null or undefined
|
|
336
297
|
assertParamExists('updatePlanRelationshipAge', 'planRelationshipAgeKey', planRelationshipAgeKey)
|
|
337
298
|
// verify required parameter 'planRelationshipAge' is not null or undefined
|
|
338
299
|
assertParamExists('updatePlanRelationshipAge', 'planRelationshipAge', planRelationshipAge)
|
|
339
|
-
const localVarPath = `/
|
|
340
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
341
|
-
.replace(`{${"relateCode"}}`, encodeURIComponent(String(relateCode)))
|
|
300
|
+
const localVarPath = `/plan-relationship-age-restrictions/{planRelationshipAgeKey}`
|
|
342
301
|
.replace(`{${"planRelationshipAgeKey"}}`, encodeURIComponent(String(planRelationshipAgeKey)));
|
|
343
302
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
344
303
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -390,84 +349,73 @@ export const PlanRelationshipAgeRestrictionsApiFp = function(configuration?: Con
|
|
|
390
349
|
* Creates a new PlanRelationshipAge
|
|
391
350
|
* @summary Create PlanRelationshipAge
|
|
392
351
|
* @param {string} vbasoftwareDatabase Target database
|
|
393
|
-
* @param {string} planID Plan ID
|
|
394
|
-
* @param {string} relateCode Relate Code
|
|
395
352
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
396
353
|
* @param {*} [options] Override http request option.
|
|
397
354
|
* @throws {RequiredError}
|
|
398
355
|
*/
|
|
399
|
-
async createPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
400
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createPlanRelationshipAge(vbasoftwareDatabase,
|
|
356
|
+
async createPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanRelationshipAgeVBAResponse>> {
|
|
357
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options);
|
|
401
358
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
402
359
|
},
|
|
403
360
|
/**
|
|
404
361
|
* Deletes an PlanRelationshipAge
|
|
405
362
|
* @summary Delete PlanRelationshipAge
|
|
406
363
|
* @param {string} vbasoftwareDatabase Target database
|
|
407
|
-
* @param {string} planID Plan ID
|
|
408
|
-
* @param {string} relateCode Relate Code
|
|
409
364
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
410
365
|
* @param {*} [options] Override http request option.
|
|
411
366
|
* @throws {RequiredError}
|
|
412
367
|
*/
|
|
413
|
-
async deletePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
414
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deletePlanRelationshipAge(vbasoftwareDatabase,
|
|
368
|
+
async deletePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
369
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options);
|
|
415
370
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
416
371
|
},
|
|
417
372
|
/**
|
|
418
373
|
* Gets PlanRelationshipAge
|
|
419
374
|
* @summary Get PlanRelationshipAge
|
|
420
375
|
* @param {string} vbasoftwareDatabase Target database
|
|
421
|
-
* @param {string} planID Plan ID
|
|
422
|
-
* @param {string} relateCode Relate Code
|
|
423
376
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
424
377
|
* @param {*} [options] Override http request option.
|
|
425
378
|
* @throws {RequiredError}
|
|
426
379
|
*/
|
|
427
|
-
async getPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
428
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPlanRelationshipAge(vbasoftwareDatabase,
|
|
380
|
+
async getPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanRelationshipAgeVBAResponse>> {
|
|
381
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options);
|
|
429
382
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
430
383
|
},
|
|
431
384
|
/**
|
|
432
|
-
* Lists all PlanRelationshipAge for the given planID
|
|
385
|
+
* Lists all PlanRelationshipAge for the given planID
|
|
433
386
|
* @summary List PlanRelationshipAge
|
|
434
387
|
* @param {string} vbasoftwareDatabase Target database
|
|
435
388
|
* @param {string} planID Plan ID
|
|
436
|
-
* @param {string} relateCode Relate Code
|
|
437
389
|
* @param {*} [options] Override http request option.
|
|
438
390
|
* @throws {RequiredError}
|
|
439
391
|
*/
|
|
440
|
-
async listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string,
|
|
441
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanRelationshipAge(vbasoftwareDatabase, planID,
|
|
392
|
+
async listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanRelationshipAgeListVBAResponse>> {
|
|
393
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanRelationshipAge(vbasoftwareDatabase, planID, options);
|
|
442
394
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
443
395
|
},
|
|
444
396
|
/**
|
|
445
397
|
* Create or Update multiple PlanRelationshipAge at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
446
398
|
* @summary Create or Update Batch PlanRelationshipAge
|
|
447
399
|
* @param {string} vbasoftwareDatabase Target database
|
|
448
|
-
* @param {string} planID Plan ID
|
|
449
|
-
* @param {string} relateCode Relate Code
|
|
450
400
|
* @param {Array<PlanRelationshipAge>} planRelationshipAge
|
|
451
401
|
* @param {*} [options] Override http request option.
|
|
452
402
|
* @throws {RequiredError}
|
|
453
403
|
*/
|
|
454
|
-
async updateBatchPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
455
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchPlanRelationshipAge(vbasoftwareDatabase,
|
|
404
|
+
async updateBatchPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: Array<PlanRelationshipAge>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
405
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options);
|
|
456
406
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
457
407
|
},
|
|
458
408
|
/**
|
|
459
409
|
* Updates a specific PlanRelationshipAge.
|
|
460
410
|
* @summary Update PlanRelationshipAge
|
|
461
411
|
* @param {string} vbasoftwareDatabase Target database
|
|
462
|
-
* @param {string} planID Plan ID
|
|
463
|
-
* @param {string} relateCode Relate Code
|
|
464
412
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
465
413
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
466
414
|
* @param {*} [options] Override http request option.
|
|
467
415
|
* @throws {RequiredError}
|
|
468
416
|
*/
|
|
469
|
-
async updatePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
470
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updatePlanRelationshipAge(vbasoftwareDatabase,
|
|
417
|
+
async updatePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanRelationshipAgeVBAResponse>> {
|
|
418
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, planRelationshipAge, options);
|
|
471
419
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
472
420
|
},
|
|
473
421
|
}
|
|
@@ -484,79 +432,68 @@ export const PlanRelationshipAgeRestrictionsApiFactory = function (configuration
|
|
|
484
432
|
* Creates a new PlanRelationshipAge
|
|
485
433
|
* @summary Create PlanRelationshipAge
|
|
486
434
|
* @param {string} vbasoftwareDatabase Target database
|
|
487
|
-
* @param {string} planID Plan ID
|
|
488
|
-
* @param {string} relateCode Relate Code
|
|
489
435
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
490
436
|
* @param {*} [options] Override http request option.
|
|
491
437
|
* @throws {RequiredError}
|
|
492
438
|
*/
|
|
493
|
-
createPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
494
|
-
return localVarFp.createPlanRelationshipAge(vbasoftwareDatabase,
|
|
439
|
+
createPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: PlanRelationshipAge, options?: any): AxiosPromise<PlanRelationshipAgeVBAResponse> {
|
|
440
|
+
return localVarFp.createPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options).then((request) => request(axios, basePath));
|
|
495
441
|
},
|
|
496
442
|
/**
|
|
497
443
|
* Deletes an PlanRelationshipAge
|
|
498
444
|
* @summary Delete PlanRelationshipAge
|
|
499
445
|
* @param {string} vbasoftwareDatabase Target database
|
|
500
|
-
* @param {string} planID Plan ID
|
|
501
|
-
* @param {string} relateCode Relate Code
|
|
502
446
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
503
447
|
* @param {*} [options] Override http request option.
|
|
504
448
|
* @throws {RequiredError}
|
|
505
449
|
*/
|
|
506
|
-
deletePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
507
|
-
return localVarFp.deletePlanRelationshipAge(vbasoftwareDatabase,
|
|
450
|
+
deletePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: any): AxiosPromise<void> {
|
|
451
|
+
return localVarFp.deletePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options).then((request) => request(axios, basePath));
|
|
508
452
|
},
|
|
509
453
|
/**
|
|
510
454
|
* Gets PlanRelationshipAge
|
|
511
455
|
* @summary Get PlanRelationshipAge
|
|
512
456
|
* @param {string} vbasoftwareDatabase Target database
|
|
513
|
-
* @param {string} planID Plan ID
|
|
514
|
-
* @param {string} relateCode Relate Code
|
|
515
457
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
516
458
|
* @param {*} [options] Override http request option.
|
|
517
459
|
* @throws {RequiredError}
|
|
518
460
|
*/
|
|
519
|
-
getPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
520
|
-
return localVarFp.getPlanRelationshipAge(vbasoftwareDatabase,
|
|
461
|
+
getPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: any): AxiosPromise<PlanRelationshipAgeVBAResponse> {
|
|
462
|
+
return localVarFp.getPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options).then((request) => request(axios, basePath));
|
|
521
463
|
},
|
|
522
464
|
/**
|
|
523
|
-
* Lists all PlanRelationshipAge for the given planID
|
|
465
|
+
* Lists all PlanRelationshipAge for the given planID
|
|
524
466
|
* @summary List PlanRelationshipAge
|
|
525
467
|
* @param {string} vbasoftwareDatabase Target database
|
|
526
468
|
* @param {string} planID Plan ID
|
|
527
|
-
* @param {string} relateCode Relate Code
|
|
528
469
|
* @param {*} [options] Override http request option.
|
|
529
470
|
* @throws {RequiredError}
|
|
530
471
|
*/
|
|
531
|
-
listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string,
|
|
532
|
-
return localVarFp.listPlanRelationshipAge(vbasoftwareDatabase, planID,
|
|
472
|
+
listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string, options?: any): AxiosPromise<PlanRelationshipAgeListVBAResponse> {
|
|
473
|
+
return localVarFp.listPlanRelationshipAge(vbasoftwareDatabase, planID, options).then((request) => request(axios, basePath));
|
|
533
474
|
},
|
|
534
475
|
/**
|
|
535
476
|
* Create or Update multiple PlanRelationshipAge at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
536
477
|
* @summary Create or Update Batch PlanRelationshipAge
|
|
537
478
|
* @param {string} vbasoftwareDatabase Target database
|
|
538
|
-
* @param {string} planID Plan ID
|
|
539
|
-
* @param {string} relateCode Relate Code
|
|
540
479
|
* @param {Array<PlanRelationshipAge>} planRelationshipAge
|
|
541
480
|
* @param {*} [options] Override http request option.
|
|
542
481
|
* @throws {RequiredError}
|
|
543
482
|
*/
|
|
544
|
-
updateBatchPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
545
|
-
return localVarFp.updateBatchPlanRelationshipAge(vbasoftwareDatabase,
|
|
483
|
+
updateBatchPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: Array<PlanRelationshipAge>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
484
|
+
return localVarFp.updateBatchPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options).then((request) => request(axios, basePath));
|
|
546
485
|
},
|
|
547
486
|
/**
|
|
548
487
|
* Updates a specific PlanRelationshipAge.
|
|
549
488
|
* @summary Update PlanRelationshipAge
|
|
550
489
|
* @param {string} vbasoftwareDatabase Target database
|
|
551
|
-
* @param {string} planID Plan ID
|
|
552
|
-
* @param {string} relateCode Relate Code
|
|
553
490
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
554
491
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
555
492
|
* @param {*} [options] Override http request option.
|
|
556
493
|
* @throws {RequiredError}
|
|
557
494
|
*/
|
|
558
|
-
updatePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
559
|
-
return localVarFp.updatePlanRelationshipAge(vbasoftwareDatabase,
|
|
495
|
+
updatePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, planRelationshipAge: PlanRelationshipAge, options?: any): AxiosPromise<PlanRelationshipAgeVBAResponse> {
|
|
496
|
+
return localVarFp.updatePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, planRelationshipAge, options).then((request) => request(axios, basePath));
|
|
560
497
|
},
|
|
561
498
|
};
|
|
562
499
|
};
|
|
@@ -571,79 +508,68 @@ export interface PlanRelationshipAgeRestrictionsApiInterface {
|
|
|
571
508
|
* Creates a new PlanRelationshipAge
|
|
572
509
|
* @summary Create PlanRelationshipAge
|
|
573
510
|
* @param {string} vbasoftwareDatabase Target database
|
|
574
|
-
* @param {string} planID Plan ID
|
|
575
|
-
* @param {string} relateCode Relate Code
|
|
576
511
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
577
512
|
* @param {*} [options] Override http request option.
|
|
578
513
|
* @throws {RequiredError}
|
|
579
514
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
580
515
|
*/
|
|
581
|
-
createPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
516
|
+
createPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig): AxiosPromise<PlanRelationshipAgeVBAResponse>;
|
|
582
517
|
|
|
583
518
|
/**
|
|
584
519
|
* Deletes an PlanRelationshipAge
|
|
585
520
|
* @summary Delete PlanRelationshipAge
|
|
586
521
|
* @param {string} vbasoftwareDatabase Target database
|
|
587
|
-
* @param {string} planID Plan ID
|
|
588
|
-
* @param {string} relateCode Relate Code
|
|
589
522
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
590
523
|
* @param {*} [options] Override http request option.
|
|
591
524
|
* @throws {RequiredError}
|
|
592
525
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
593
526
|
*/
|
|
594
|
-
deletePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
527
|
+
deletePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
595
528
|
|
|
596
529
|
/**
|
|
597
530
|
* Gets PlanRelationshipAge
|
|
598
531
|
* @summary Get PlanRelationshipAge
|
|
599
532
|
* @param {string} vbasoftwareDatabase Target database
|
|
600
|
-
* @param {string} planID Plan ID
|
|
601
|
-
* @param {string} relateCode Relate Code
|
|
602
533
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
603
534
|
* @param {*} [options] Override http request option.
|
|
604
535
|
* @throws {RequiredError}
|
|
605
536
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
606
537
|
*/
|
|
607
|
-
getPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
538
|
+
getPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig): AxiosPromise<PlanRelationshipAgeVBAResponse>;
|
|
608
539
|
|
|
609
540
|
/**
|
|
610
|
-
* Lists all PlanRelationshipAge for the given planID
|
|
541
|
+
* Lists all PlanRelationshipAge for the given planID
|
|
611
542
|
* @summary List PlanRelationshipAge
|
|
612
543
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
544
|
* @param {string} planID Plan ID
|
|
614
|
-
* @param {string} relateCode Relate Code
|
|
615
545
|
* @param {*} [options] Override http request option.
|
|
616
546
|
* @throws {RequiredError}
|
|
617
547
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
618
548
|
*/
|
|
619
|
-
listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string,
|
|
549
|
+
listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig): AxiosPromise<PlanRelationshipAgeListVBAResponse>;
|
|
620
550
|
|
|
621
551
|
/**
|
|
622
552
|
* Create or Update multiple PlanRelationshipAge at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
623
553
|
* @summary Create or Update Batch PlanRelationshipAge
|
|
624
554
|
* @param {string} vbasoftwareDatabase Target database
|
|
625
|
-
* @param {string} planID Plan ID
|
|
626
|
-
* @param {string} relateCode Relate Code
|
|
627
555
|
* @param {Array<PlanRelationshipAge>} planRelationshipAge
|
|
628
556
|
* @param {*} [options] Override http request option.
|
|
629
557
|
* @throws {RequiredError}
|
|
630
558
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
631
559
|
*/
|
|
632
|
-
updateBatchPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
560
|
+
updateBatchPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: Array<PlanRelationshipAge>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
633
561
|
|
|
634
562
|
/**
|
|
635
563
|
* Updates a specific PlanRelationshipAge.
|
|
636
564
|
* @summary Update PlanRelationshipAge
|
|
637
565
|
* @param {string} vbasoftwareDatabase Target database
|
|
638
|
-
* @param {string} planID Plan ID
|
|
639
|
-
* @param {string} relateCode Relate Code
|
|
640
566
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
641
567
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
642
568
|
* @param {*} [options] Override http request option.
|
|
643
569
|
* @throws {RequiredError}
|
|
644
570
|
* @memberof PlanRelationshipAgeRestrictionsApiInterface
|
|
645
571
|
*/
|
|
646
|
-
updatePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
572
|
+
updatePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig): AxiosPromise<PlanRelationshipAgeVBAResponse>;
|
|
647
573
|
|
|
648
574
|
}
|
|
649
575
|
|
|
@@ -658,89 +584,78 @@ export class PlanRelationshipAgeRestrictionsApi extends BaseAPI implements PlanR
|
|
|
658
584
|
* Creates a new PlanRelationshipAge
|
|
659
585
|
* @summary Create PlanRelationshipAge
|
|
660
586
|
* @param {string} vbasoftwareDatabase Target database
|
|
661
|
-
* @param {string} planID Plan ID
|
|
662
|
-
* @param {string} relateCode Relate Code
|
|
663
587
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
664
588
|
* @param {*} [options] Override http request option.
|
|
665
589
|
* @throws {RequiredError}
|
|
666
590
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
667
591
|
*/
|
|
668
|
-
public createPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
669
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).createPlanRelationshipAge(vbasoftwareDatabase,
|
|
592
|
+
public createPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig) {
|
|
593
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).createPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options).then((request) => request(this.axios, this.basePath));
|
|
670
594
|
}
|
|
671
595
|
|
|
672
596
|
/**
|
|
673
597
|
* Deletes an PlanRelationshipAge
|
|
674
598
|
* @summary Delete PlanRelationshipAge
|
|
675
599
|
* @param {string} vbasoftwareDatabase Target database
|
|
676
|
-
* @param {string} planID Plan ID
|
|
677
|
-
* @param {string} relateCode Relate Code
|
|
678
600
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
679
601
|
* @param {*} [options] Override http request option.
|
|
680
602
|
* @throws {RequiredError}
|
|
681
603
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
682
604
|
*/
|
|
683
|
-
public deletePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
684
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).deletePlanRelationshipAge(vbasoftwareDatabase,
|
|
605
|
+
public deletePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig) {
|
|
606
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).deletePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options).then((request) => request(this.axios, this.basePath));
|
|
685
607
|
}
|
|
686
608
|
|
|
687
609
|
/**
|
|
688
610
|
* Gets PlanRelationshipAge
|
|
689
611
|
* @summary Get PlanRelationshipAge
|
|
690
612
|
* @param {string} vbasoftwareDatabase Target database
|
|
691
|
-
* @param {string} planID Plan ID
|
|
692
|
-
* @param {string} relateCode Relate Code
|
|
693
613
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
694
614
|
* @param {*} [options] Override http request option.
|
|
695
615
|
* @throws {RequiredError}
|
|
696
616
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
697
617
|
*/
|
|
698
|
-
public getPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
699
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).getPlanRelationshipAge(vbasoftwareDatabase,
|
|
618
|
+
public getPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, options?: AxiosRequestConfig) {
|
|
619
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).getPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, options).then((request) => request(this.axios, this.basePath));
|
|
700
620
|
}
|
|
701
621
|
|
|
702
622
|
/**
|
|
703
|
-
* Lists all PlanRelationshipAge for the given planID
|
|
623
|
+
* Lists all PlanRelationshipAge for the given planID
|
|
704
624
|
* @summary List PlanRelationshipAge
|
|
705
625
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
626
|
* @param {string} planID Plan ID
|
|
707
|
-
* @param {string} relateCode Relate Code
|
|
708
627
|
* @param {*} [options] Override http request option.
|
|
709
628
|
* @throws {RequiredError}
|
|
710
629
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
711
630
|
*/
|
|
712
|
-
public listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string,
|
|
713
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).listPlanRelationshipAge(vbasoftwareDatabase, planID,
|
|
631
|
+
public listPlanRelationshipAge(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig) {
|
|
632
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).listPlanRelationshipAge(vbasoftwareDatabase, planID, options).then((request) => request(this.axios, this.basePath));
|
|
714
633
|
}
|
|
715
634
|
|
|
716
635
|
/**
|
|
717
636
|
* Create or Update multiple PlanRelationshipAge at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
718
637
|
* @summary Create or Update Batch PlanRelationshipAge
|
|
719
638
|
* @param {string} vbasoftwareDatabase Target database
|
|
720
|
-
* @param {string} planID Plan ID
|
|
721
|
-
* @param {string} relateCode Relate Code
|
|
722
639
|
* @param {Array<PlanRelationshipAge>} planRelationshipAge
|
|
723
640
|
* @param {*} [options] Override http request option.
|
|
724
641
|
* @throws {RequiredError}
|
|
725
642
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
726
643
|
*/
|
|
727
|
-
public updateBatchPlanRelationshipAge(vbasoftwareDatabase: string,
|
|
728
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).updateBatchPlanRelationshipAge(vbasoftwareDatabase,
|
|
644
|
+
public updateBatchPlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAge: Array<PlanRelationshipAge>, options?: AxiosRequestConfig) {
|
|
645
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).updateBatchPlanRelationshipAge(vbasoftwareDatabase, planRelationshipAge, options).then((request) => request(this.axios, this.basePath));
|
|
729
646
|
}
|
|
730
647
|
|
|
731
648
|
/**
|
|
732
649
|
* Updates a specific PlanRelationshipAge.
|
|
733
650
|
* @summary Update PlanRelationshipAge
|
|
734
651
|
* @param {string} vbasoftwareDatabase Target database
|
|
735
|
-
* @param {string} planID Plan ID
|
|
736
|
-
* @param {string} relateCode Relate Code
|
|
737
652
|
* @param {number} planRelationshipAgeKey PlanRelationshipAge Key
|
|
738
653
|
* @param {PlanRelationshipAge} planRelationshipAge
|
|
739
654
|
* @param {*} [options] Override http request option.
|
|
740
655
|
* @throws {RequiredError}
|
|
741
656
|
* @memberof PlanRelationshipAgeRestrictionsApi
|
|
742
657
|
*/
|
|
743
|
-
public updatePlanRelationshipAge(vbasoftwareDatabase: string,
|
|
744
|
-
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).updatePlanRelationshipAge(vbasoftwareDatabase,
|
|
658
|
+
public updatePlanRelationshipAge(vbasoftwareDatabase: string, planRelationshipAgeKey: number, planRelationshipAge: PlanRelationshipAge, options?: AxiosRequestConfig) {
|
|
659
|
+
return PlanRelationshipAgeRestrictionsApiFp(this.configuration).updatePlanRelationshipAge(vbasoftwareDatabase, planRelationshipAgeKey, planRelationshipAge, options).then((request) => request(this.axios, this.basePath));
|
|
745
660
|
}
|
|
746
661
|
}
|