@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230912.1 → 1.20230917.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 +5 -1
- package/api/{adv-group-api.ts → adv-group-contracts-api.ts} +23 -237
- package/api/adv-group-divisions-api.ts +288 -0
- package/api/adv-groups-api.ts +379 -0
- package/api/group-divisions-api.ts +105 -0
- package/api.ts +3 -1
- package/models/index.ts +2 -0
- package/models/vbagroup-contract-enrollment-summary-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract-enrollment-summary.ts +72 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -11,7 +11,9 @@ api/adv-commission-api.ts
|
|
|
11
11
|
api/adv-enrollment-api.ts
|
|
12
12
|
api/adv-fee-schedule-api.ts
|
|
13
13
|
api/adv-grievance-api.ts
|
|
14
|
-
api/adv-group-api.ts
|
|
14
|
+
api/adv-group-contracts-api.ts
|
|
15
|
+
api/adv-group-divisions-api.ts
|
|
16
|
+
api/adv-groups-api.ts
|
|
15
17
|
api/adv-reinsurance-api.ts
|
|
16
18
|
api/age-settings-api.ts
|
|
17
19
|
api/agriculture-tax-returns-api.ts
|
|
@@ -3066,6 +3068,8 @@ models/vbagateway-subscription-detail.ts
|
|
|
3066
3068
|
models/vbagateway-subscription-list-vbaresponse.ts
|
|
3067
3069
|
models/vbagateway-subscription-vbaresponse.ts
|
|
3068
3070
|
models/vbagateway-subscription.ts
|
|
3071
|
+
models/vbagroup-contract-enrollment-summary-list-vbaresponse.ts
|
|
3072
|
+
models/vbagroup-contract-enrollment-summary.ts
|
|
3069
3073
|
models/vbagroup-contract-list-vbaresponse.ts
|
|
3070
3074
|
models/vbagroup-contract.ts
|
|
3071
3075
|
models/vbagroup-enrollment-summary-vbaresponse.ts
|
|
@@ -21,10 +21,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import { EnrollmentDisenrollGroup } from '../models';
|
|
25
|
-
// @ts-ignore
|
|
26
|
-
import { EnrollmentReenroll } from '../models';
|
|
27
|
-
// @ts-ignore
|
|
28
24
|
import { GroupAddContract } from '../models';
|
|
29
25
|
// @ts-ignore
|
|
30
26
|
import { GroupChangeCoverageStart } from '../models';
|
|
@@ -33,10 +29,10 @@ import { GroupContract } from '../models';
|
|
|
33
29
|
// @ts-ignore
|
|
34
30
|
import { VBAProcessVBAResponse } from '../models';
|
|
35
31
|
/**
|
|
36
|
-
*
|
|
32
|
+
* AdvGroupContractsApi - axios parameter creator
|
|
37
33
|
* @export
|
|
38
34
|
*/
|
|
39
|
-
export const
|
|
35
|
+
export const AdvGroupContractsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
36
|
return {
|
|
41
37
|
/**
|
|
42
38
|
* Adds the next GroupContract, starting the day after that existing contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -154,114 +150,6 @@ export const AdvGroupApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
154
150
|
options: localVarRequestOptions,
|
|
155
151
|
};
|
|
156
152
|
},
|
|
157
|
-
/**
|
|
158
|
-
* Disenrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
159
|
-
* @summary Group Disenroll
|
|
160
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
161
|
-
* @param {string} groupID Group ID
|
|
162
|
-
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
163
|
-
* @param {*} [options] Override http request option.
|
|
164
|
-
* @throws {RequiredError}
|
|
165
|
-
*/
|
|
166
|
-
groupDisenroll: async (vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
167
|
-
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
168
|
-
assertParamExists('groupDisenroll', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
169
|
-
// verify required parameter 'groupID' is not null or undefined
|
|
170
|
-
assertParamExists('groupDisenroll', 'groupID', groupID)
|
|
171
|
-
// verify required parameter 'enrollmentDisenrollGroup' is not null or undefined
|
|
172
|
-
assertParamExists('groupDisenroll', 'enrollmentDisenrollGroup', enrollmentDisenrollGroup)
|
|
173
|
-
const localVarPath = `/groups/{groupID}/disenroll`
|
|
174
|
-
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
|
|
175
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
176
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
177
|
-
let baseOptions;
|
|
178
|
-
if (configuration) {
|
|
179
|
-
baseOptions = configuration.baseOptions;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
183
|
-
const localVarHeaderParameter = {} as any;
|
|
184
|
-
const localVarQueryParameter = {} as any;
|
|
185
|
-
|
|
186
|
-
// authentication apiKeyAuth required
|
|
187
|
-
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
188
|
-
|
|
189
|
-
// authentication bearerAuth required
|
|
190
|
-
// http bearer authentication required
|
|
191
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
192
|
-
|
|
193
|
-
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
194
|
-
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
200
|
-
|
|
201
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
202
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
203
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
204
|
-
localVarRequestOptions.data = serializeDataIfNeeded(enrollmentDisenrollGroup, localVarRequestOptions, configuration)
|
|
205
|
-
|
|
206
|
-
return {
|
|
207
|
-
url: toPathString(localVarUrlObj),
|
|
208
|
-
options: localVarRequestOptions,
|
|
209
|
-
};
|
|
210
|
-
},
|
|
211
|
-
/**
|
|
212
|
-
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
213
|
-
* @summary Group Reenroll
|
|
214
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
215
|
-
* @param {string} groupID Group ID
|
|
216
|
-
* @param {EnrollmentReenroll} enrollmentReenroll
|
|
217
|
-
* @param {*} [options] Override http request option.
|
|
218
|
-
* @throws {RequiredError}
|
|
219
|
-
*/
|
|
220
|
-
groupReenroll: async (vbasoftwareDatabase: string, groupID: string, enrollmentReenroll: EnrollmentReenroll, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
221
|
-
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
222
|
-
assertParamExists('groupReenroll', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
223
|
-
// verify required parameter 'groupID' is not null or undefined
|
|
224
|
-
assertParamExists('groupReenroll', 'groupID', groupID)
|
|
225
|
-
// verify required parameter 'enrollmentReenroll' is not null or undefined
|
|
226
|
-
assertParamExists('groupReenroll', 'enrollmentReenroll', enrollmentReenroll)
|
|
227
|
-
const localVarPath = `/groups/{groupID}/reenroll`
|
|
228
|
-
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
|
|
229
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
230
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
231
|
-
let baseOptions;
|
|
232
|
-
if (configuration) {
|
|
233
|
-
baseOptions = configuration.baseOptions;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
237
|
-
const localVarHeaderParameter = {} as any;
|
|
238
|
-
const localVarQueryParameter = {} as any;
|
|
239
|
-
|
|
240
|
-
// authentication apiKeyAuth required
|
|
241
|
-
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
242
|
-
|
|
243
|
-
// authentication bearerAuth required
|
|
244
|
-
// http bearer authentication required
|
|
245
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
246
|
-
|
|
247
|
-
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
248
|
-
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
254
|
-
|
|
255
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
256
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
257
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
258
|
-
localVarRequestOptions.data = serializeDataIfNeeded(enrollmentReenroll, localVarRequestOptions, configuration)
|
|
259
|
-
|
|
260
|
-
return {
|
|
261
|
-
url: toPathString(localVarUrlObj),
|
|
262
|
-
options: localVarRequestOptions,
|
|
263
|
-
};
|
|
264
|
-
},
|
|
265
153
|
/**
|
|
266
154
|
* Changes the Coverage End for a contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
267
155
|
* @summary Set GroupContract Coverage End
|
|
@@ -324,11 +212,11 @@ export const AdvGroupApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
324
212
|
};
|
|
325
213
|
|
|
326
214
|
/**
|
|
327
|
-
*
|
|
215
|
+
* AdvGroupContractsApi - functional programming interface
|
|
328
216
|
* @export
|
|
329
217
|
*/
|
|
330
|
-
export const
|
|
331
|
-
const localVarAxiosParamCreator =
|
|
218
|
+
export const AdvGroupContractsApiFp = function(configuration?: Configuration) {
|
|
219
|
+
const localVarAxiosParamCreator = AdvGroupContractsApiAxiosParamCreator(configuration)
|
|
332
220
|
return {
|
|
333
221
|
/**
|
|
334
222
|
* Adds the next GroupContract, starting the day after that existing contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -358,32 +246,6 @@ export const AdvGroupApiFp = function(configuration?: Configuration) {
|
|
|
358
246
|
const localVarAxiosArgs = await localVarAxiosParamCreator.changeCoverageStartGroupContract(vbasoftwareDatabase, groupID, divisionID, groupChangeCoverageStart, options);
|
|
359
247
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
360
248
|
},
|
|
361
|
-
/**
|
|
362
|
-
* Disenrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
363
|
-
* @summary Group Disenroll
|
|
364
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
365
|
-
* @param {string} groupID Group ID
|
|
366
|
-
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
367
|
-
* @param {*} [options] Override http request option.
|
|
368
|
-
* @throws {RequiredError}
|
|
369
|
-
*/
|
|
370
|
-
async groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessVBAResponse>> {
|
|
371
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options);
|
|
372
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
373
|
-
},
|
|
374
|
-
/**
|
|
375
|
-
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
376
|
-
* @summary Group Reenroll
|
|
377
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
378
|
-
* @param {string} groupID Group ID
|
|
379
|
-
* @param {EnrollmentReenroll} enrollmentReenroll
|
|
380
|
-
* @param {*} [options] Override http request option.
|
|
381
|
-
* @throws {RequiredError}
|
|
382
|
-
*/
|
|
383
|
-
async groupReenroll(vbasoftwareDatabase: string, groupID: string, enrollmentReenroll: EnrollmentReenroll, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessVBAResponse>> {
|
|
384
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.groupReenroll(vbasoftwareDatabase, groupID, enrollmentReenroll, options);
|
|
385
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
386
|
-
},
|
|
387
249
|
/**
|
|
388
250
|
* Changes the Coverage End for a contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
389
251
|
* @summary Set GroupContract Coverage End
|
|
@@ -402,11 +264,11 @@ export const AdvGroupApiFp = function(configuration?: Configuration) {
|
|
|
402
264
|
};
|
|
403
265
|
|
|
404
266
|
/**
|
|
405
|
-
*
|
|
267
|
+
* AdvGroupContractsApi - factory interface
|
|
406
268
|
* @export
|
|
407
269
|
*/
|
|
408
|
-
export const
|
|
409
|
-
const localVarFp =
|
|
270
|
+
export const AdvGroupContractsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
271
|
+
const localVarFp = AdvGroupContractsApiFp(configuration)
|
|
410
272
|
return {
|
|
411
273
|
/**
|
|
412
274
|
* Adds the next GroupContract, starting the day after that existing contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
@@ -434,30 +296,6 @@ export const AdvGroupApiFactory = function (configuration?: Configuration, baseP
|
|
|
434
296
|
changeCoverageStartGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupChangeCoverageStart: GroupChangeCoverageStart, options?: any): AxiosPromise<VBAProcessVBAResponse> {
|
|
435
297
|
return localVarFp.changeCoverageStartGroupContract(vbasoftwareDatabase, groupID, divisionID, groupChangeCoverageStart, options).then((request) => request(axios, basePath));
|
|
436
298
|
},
|
|
437
|
-
/**
|
|
438
|
-
* Disenrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
439
|
-
* @summary Group Disenroll
|
|
440
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
441
|
-
* @param {string} groupID Group ID
|
|
442
|
-
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
443
|
-
* @param {*} [options] Override http request option.
|
|
444
|
-
* @throws {RequiredError}
|
|
445
|
-
*/
|
|
446
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: any): AxiosPromise<VBAProcessVBAResponse> {
|
|
447
|
-
return localVarFp.groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(axios, basePath));
|
|
448
|
-
},
|
|
449
|
-
/**
|
|
450
|
-
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
451
|
-
* @summary Group Reenroll
|
|
452
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
453
|
-
* @param {string} groupID Group ID
|
|
454
|
-
* @param {EnrollmentReenroll} enrollmentReenroll
|
|
455
|
-
* @param {*} [options] Override http request option.
|
|
456
|
-
* @throws {RequiredError}
|
|
457
|
-
*/
|
|
458
|
-
groupReenroll(vbasoftwareDatabase: string, groupID: string, enrollmentReenroll: EnrollmentReenroll, options?: any): AxiosPromise<VBAProcessVBAResponse> {
|
|
459
|
-
return localVarFp.groupReenroll(vbasoftwareDatabase, groupID, enrollmentReenroll, options).then((request) => request(axios, basePath));
|
|
460
|
-
},
|
|
461
299
|
/**
|
|
462
300
|
* Changes the Coverage End for a contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
463
301
|
* @summary Set GroupContract Coverage End
|
|
@@ -475,11 +313,11 @@ export const AdvGroupApiFactory = function (configuration?: Configuration, baseP
|
|
|
475
313
|
};
|
|
476
314
|
|
|
477
315
|
/**
|
|
478
|
-
*
|
|
316
|
+
* AdvGroupContractsApi - interface
|
|
479
317
|
* @export
|
|
480
|
-
* @interface
|
|
318
|
+
* @interface AdvGroupContractsApi
|
|
481
319
|
*/
|
|
482
|
-
export interface
|
|
320
|
+
export interface AdvGroupContractsApiInterface {
|
|
483
321
|
/**
|
|
484
322
|
* Adds the next GroupContract, starting the day after that existing contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
485
323
|
* @summary Add Next GroupContract
|
|
@@ -489,7 +327,7 @@ export interface AdvGroupApiInterface {
|
|
|
489
327
|
* @param {GroupAddContract} groupAddContract
|
|
490
328
|
* @param {*} [options] Override http request option.
|
|
491
329
|
* @throws {RequiredError}
|
|
492
|
-
* @memberof
|
|
330
|
+
* @memberof AdvGroupContractsApiInterface
|
|
493
331
|
*/
|
|
494
332
|
addNextGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupAddContract: GroupAddContract, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
495
333
|
|
|
@@ -502,34 +340,10 @@ export interface AdvGroupApiInterface {
|
|
|
502
340
|
* @param {GroupChangeCoverageStart} groupChangeCoverageStart
|
|
503
341
|
* @param {*} [options] Override http request option.
|
|
504
342
|
* @throws {RequiredError}
|
|
505
|
-
* @memberof
|
|
343
|
+
* @memberof AdvGroupContractsApiInterface
|
|
506
344
|
*/
|
|
507
345
|
changeCoverageStartGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupChangeCoverageStart: GroupChangeCoverageStart, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
508
346
|
|
|
509
|
-
/**
|
|
510
|
-
* Disenrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
511
|
-
* @summary Group Disenroll
|
|
512
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
513
|
-
* @param {string} groupID Group ID
|
|
514
|
-
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
515
|
-
* @param {*} [options] Override http request option.
|
|
516
|
-
* @throws {RequiredError}
|
|
517
|
-
* @memberof AdvGroupApiInterface
|
|
518
|
-
*/
|
|
519
|
-
groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
520
|
-
|
|
521
|
-
/**
|
|
522
|
-
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
523
|
-
* @summary Group Reenroll
|
|
524
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
525
|
-
* @param {string} groupID Group ID
|
|
526
|
-
* @param {EnrollmentReenroll} enrollmentReenroll
|
|
527
|
-
* @param {*} [options] Override http request option.
|
|
528
|
-
* @throws {RequiredError}
|
|
529
|
-
* @memberof AdvGroupApiInterface
|
|
530
|
-
*/
|
|
531
|
-
groupReenroll(vbasoftwareDatabase: string, groupID: string, enrollmentReenroll: EnrollmentReenroll, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
532
|
-
|
|
533
347
|
/**
|
|
534
348
|
* Changes the Coverage End for a contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
535
349
|
* @summary Set GroupContract Coverage End
|
|
@@ -539,19 +353,19 @@ export interface AdvGroupApiInterface {
|
|
|
539
353
|
* @param {GroupContract} groupContract
|
|
540
354
|
* @param {*} [options] Override http request option.
|
|
541
355
|
* @throws {RequiredError}
|
|
542
|
-
* @memberof
|
|
356
|
+
* @memberof AdvGroupContractsApiInterface
|
|
543
357
|
*/
|
|
544
358
|
setCoverageGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupContract: GroupContract, options?: AxiosRequestConfig): AxiosPromise<VBAProcessVBAResponse>;
|
|
545
359
|
|
|
546
360
|
}
|
|
547
361
|
|
|
548
362
|
/**
|
|
549
|
-
*
|
|
363
|
+
* AdvGroupContractsApi - object-oriented interface
|
|
550
364
|
* @export
|
|
551
|
-
* @class
|
|
365
|
+
* @class AdvGroupContractsApi
|
|
552
366
|
* @extends {BaseAPI}
|
|
553
367
|
*/
|
|
554
|
-
export class
|
|
368
|
+
export class AdvGroupContractsApi extends BaseAPI implements AdvGroupContractsApiInterface {
|
|
555
369
|
/**
|
|
556
370
|
* Adds the next GroupContract, starting the day after that existing contract. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
557
371
|
* @summary Add Next GroupContract
|
|
@@ -561,10 +375,10 @@ export class AdvGroupApi extends BaseAPI implements AdvGroupApiInterface {
|
|
|
561
375
|
* @param {GroupAddContract} groupAddContract
|
|
562
376
|
* @param {*} [options] Override http request option.
|
|
563
377
|
* @throws {RequiredError}
|
|
564
|
-
* @memberof
|
|
378
|
+
* @memberof AdvGroupContractsApi
|
|
565
379
|
*/
|
|
566
380
|
public addNextGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupAddContract: GroupAddContract, options?: AxiosRequestConfig) {
|
|
567
|
-
return
|
|
381
|
+
return AdvGroupContractsApiFp(this.configuration).addNextGroupContract(vbasoftwareDatabase, groupID, divisionID, groupAddContract, options).then((request) => request(this.axios, this.basePath));
|
|
568
382
|
}
|
|
569
383
|
|
|
570
384
|
/**
|
|
@@ -576,38 +390,10 @@ export class AdvGroupApi extends BaseAPI implements AdvGroupApiInterface {
|
|
|
576
390
|
* @param {GroupChangeCoverageStart} groupChangeCoverageStart
|
|
577
391
|
* @param {*} [options] Override http request option.
|
|
578
392
|
* @throws {RequiredError}
|
|
579
|
-
* @memberof
|
|
393
|
+
* @memberof AdvGroupContractsApi
|
|
580
394
|
*/
|
|
581
395
|
public changeCoverageStartGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupChangeCoverageStart: GroupChangeCoverageStart, options?: AxiosRequestConfig) {
|
|
582
|
-
return
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
/**
|
|
586
|
-
* Disenrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
587
|
-
* @summary Group Disenroll
|
|
588
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
589
|
-
* @param {string} groupID Group ID
|
|
590
|
-
* @param {EnrollmentDisenrollGroup} enrollmentDisenrollGroup
|
|
591
|
-
* @param {*} [options] Override http request option.
|
|
592
|
-
* @throws {RequiredError}
|
|
593
|
-
* @memberof AdvGroupApi
|
|
594
|
-
*/
|
|
595
|
-
public groupDisenroll(vbasoftwareDatabase: string, groupID: string, enrollmentDisenrollGroup: EnrollmentDisenrollGroup, options?: AxiosRequestConfig) {
|
|
596
|
-
return AdvGroupApiFp(this.configuration).groupDisenroll(vbasoftwareDatabase, groupID, enrollmentDisenrollGroup, options).then((request) => request(this.axios, this.basePath));
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
/**
|
|
600
|
-
* Re-enrolls a Group and/or Division. A VBAProcess object is returned representing the process state. See VBAProcess area for more information.
|
|
601
|
-
* @summary Group Reenroll
|
|
602
|
-
* @param {string} vbasoftwareDatabase Target database
|
|
603
|
-
* @param {string} groupID Group ID
|
|
604
|
-
* @param {EnrollmentReenroll} enrollmentReenroll
|
|
605
|
-
* @param {*} [options] Override http request option.
|
|
606
|
-
* @throws {RequiredError}
|
|
607
|
-
* @memberof AdvGroupApi
|
|
608
|
-
*/
|
|
609
|
-
public groupReenroll(vbasoftwareDatabase: string, groupID: string, enrollmentReenroll: EnrollmentReenroll, options?: AxiosRequestConfig) {
|
|
610
|
-
return AdvGroupApiFp(this.configuration).groupReenroll(vbasoftwareDatabase, groupID, enrollmentReenroll, options).then((request) => request(this.axios, this.basePath));
|
|
396
|
+
return AdvGroupContractsApiFp(this.configuration).changeCoverageStartGroupContract(vbasoftwareDatabase, groupID, divisionID, groupChangeCoverageStart, options).then((request) => request(this.axios, this.basePath));
|
|
611
397
|
}
|
|
612
398
|
|
|
613
399
|
/**
|
|
@@ -619,9 +405,9 @@ export class AdvGroupApi extends BaseAPI implements AdvGroupApiInterface {
|
|
|
619
405
|
* @param {GroupContract} groupContract
|
|
620
406
|
* @param {*} [options] Override http request option.
|
|
621
407
|
* @throws {RequiredError}
|
|
622
|
-
* @memberof
|
|
408
|
+
* @memberof AdvGroupContractsApi
|
|
623
409
|
*/
|
|
624
410
|
public setCoverageGroupContract(vbasoftwareDatabase: string, groupID: string, divisionID: string, groupContract: GroupContract, options?: AxiosRequestConfig) {
|
|
625
|
-
return
|
|
411
|
+
return AdvGroupContractsApiFp(this.configuration).setCoverageGroupContract(vbasoftwareDatabase, groupID, divisionID, groupContract, options).then((request) => request(this.axios, this.basePath));
|
|
626
412
|
}
|
|
627
413
|
}
|