@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.
- package/.openapi-generator/FILES +18 -3
- package/api/adv-accounting-api.ts +10 -26
- package/api/commission-rates-api.ts +98 -0
- package/api/event-args-api.ts +15 -15
- package/api/group-contract-plans-api.ts +105 -0
- package/api/group-contracts-api.ts +105 -0
- package/api/group-divisions-api.ts +115 -0
- package/api/group-volumes-api.ts +15 -14
- package/api/payor-accounts-api.ts +75 -130
- package/api/plan-auth-penalty-benefits-api.ts +232 -91
- package/api/plan-benefit-cascades-api.ts +15 -23
- package/api/premium-rates-api.ts +107 -0
- package/models/commission-rate-division-config.ts +43 -0
- package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
- package/models/commission-rate-nested.ts +43 -0
- package/models/commission-rate-plan-config.ts +43 -0
- package/models/commission-rate-rate.ts +36 -0
- package/models/copy-group-division.ts +132 -0
- package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
- package/models/group-volume-division-config.ts +43 -0
- package/models/group-volume-nested.ts +3 -3
- package/models/group-volume-plan-config.ts +43 -0
- package/models/index.ts +18 -3
- package/models/member-prior-accum.ts +28 -28
- package/models/plan-auth-penalty-benefit.ts +24 -0
- package/models/prem-rate-basis-config.ts +43 -0
- package/models/prem-rate-category-config.ts +43 -0
- package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
- package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
- package/models/prem-rate-nested.ts +43 -0
- package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
- package/models/prem-rate-rate.ts +36 -0
- package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract.ts +55 -0
- package/package.json +1 -1
|
@@ -209,24 +209,20 @@ export const PlanBenefitCascadesApiAxiosParamCreator = function (configuration?:
|
|
|
209
209
|
};
|
|
210
210
|
},
|
|
211
211
|
/**
|
|
212
|
-
* Lists all PlanBenefitCascade for the given planID
|
|
212
|
+
* Lists all PlanBenefitCascade for the given planID
|
|
213
213
|
* @summary List PlanBenefitCascade
|
|
214
214
|
* @param {string} vbasoftwareDatabase Target database
|
|
215
215
|
* @param {string} planID Plan ID
|
|
216
|
-
* @param {string} parentBenefitCode Parent Benefit Code
|
|
217
216
|
* @param {*} [options] Override http request option.
|
|
218
217
|
* @throws {RequiredError}
|
|
219
218
|
*/
|
|
220
|
-
listPlanBenefitCascade: async (vbasoftwareDatabase: string, planID: string,
|
|
219
|
+
listPlanBenefitCascade: async (vbasoftwareDatabase: string, planID: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
221
220
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
222
221
|
assertParamExists('listPlanBenefitCascade', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
223
222
|
// verify required parameter 'planID' is not null or undefined
|
|
224
223
|
assertParamExists('listPlanBenefitCascade', 'planID', planID)
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
const localVarPath = `/plans/{planID}/parent-benefits/{parentBenefitCode}/cascade-benefits`
|
|
228
|
-
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)))
|
|
229
|
-
.replace(`{${"parentBenefitCode"}}`, encodeURIComponent(String(parentBenefitCode)));
|
|
224
|
+
const localVarPath = `/plans/{planID}/cascade-benefits`
|
|
225
|
+
.replace(`{${"planID"}}`, encodeURIComponent(String(planID)));
|
|
230
226
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
231
227
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
232
228
|
let baseOptions;
|
|
@@ -372,16 +368,15 @@ export const PlanBenefitCascadesApiFp = function(configuration?: Configuration)
|
|
|
372
368
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
373
369
|
},
|
|
374
370
|
/**
|
|
375
|
-
* Lists all PlanBenefitCascade for the given planID
|
|
371
|
+
* Lists all PlanBenefitCascade for the given planID
|
|
376
372
|
* @summary List PlanBenefitCascade
|
|
377
373
|
* @param {string} vbasoftwareDatabase Target database
|
|
378
374
|
* @param {string} planID Plan ID
|
|
379
|
-
* @param {string} parentBenefitCode Parent Benefit Code
|
|
380
375
|
* @param {*} [options] Override http request option.
|
|
381
376
|
* @throws {RequiredError}
|
|
382
377
|
*/
|
|
383
|
-
async listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string,
|
|
384
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanBenefitCascade(vbasoftwareDatabase, planID,
|
|
378
|
+
async listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanBenefitCascadeListVBAResponse>> {
|
|
379
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanBenefitCascade(vbasoftwareDatabase, planID, options);
|
|
385
380
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
386
381
|
},
|
|
387
382
|
/**
|
|
@@ -449,16 +444,15 @@ export const PlanBenefitCascadesApiFactory = function (configuration?: Configura
|
|
|
449
444
|
return localVarFp.getPlanBenefitCascade(vbasoftwareDatabase, planID, parentBenefitCode, cascadeBenefitCode, options).then((request) => request(axios, basePath));
|
|
450
445
|
},
|
|
451
446
|
/**
|
|
452
|
-
* Lists all PlanBenefitCascade for the given planID
|
|
447
|
+
* Lists all PlanBenefitCascade for the given planID
|
|
453
448
|
* @summary List PlanBenefitCascade
|
|
454
449
|
* @param {string} vbasoftwareDatabase Target database
|
|
455
450
|
* @param {string} planID Plan ID
|
|
456
|
-
* @param {string} parentBenefitCode Parent Benefit Code
|
|
457
451
|
* @param {*} [options] Override http request option.
|
|
458
452
|
* @throws {RequiredError}
|
|
459
453
|
*/
|
|
460
|
-
listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string,
|
|
461
|
-
return localVarFp.listPlanBenefitCascade(vbasoftwareDatabase, planID,
|
|
454
|
+
listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string, options?: any): AxiosPromise<PlanBenefitCascadeListVBAResponse> {
|
|
455
|
+
return localVarFp.listPlanBenefitCascade(vbasoftwareDatabase, planID, options).then((request) => request(axios, basePath));
|
|
462
456
|
},
|
|
463
457
|
/**
|
|
464
458
|
* Create or Update multiple PlanBenefitCascade at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -523,16 +517,15 @@ export interface PlanBenefitCascadesApiInterface {
|
|
|
523
517
|
getPlanBenefitCascade(vbasoftwareDatabase: string, planID: string, parentBenefitCode: string, cascadeBenefitCode: string, options?: AxiosRequestConfig): AxiosPromise<PlanBenefitCascadeVBAResponse>;
|
|
524
518
|
|
|
525
519
|
/**
|
|
526
|
-
* Lists all PlanBenefitCascade for the given planID
|
|
520
|
+
* Lists all PlanBenefitCascade for the given planID
|
|
527
521
|
* @summary List PlanBenefitCascade
|
|
528
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
529
523
|
* @param {string} planID Plan ID
|
|
530
|
-
* @param {string} parentBenefitCode Parent Benefit Code
|
|
531
524
|
* @param {*} [options] Override http request option.
|
|
532
525
|
* @throws {RequiredError}
|
|
533
526
|
* @memberof PlanBenefitCascadesApiInterface
|
|
534
527
|
*/
|
|
535
|
-
listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string,
|
|
528
|
+
listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig): AxiosPromise<PlanBenefitCascadeListVBAResponse>;
|
|
536
529
|
|
|
537
530
|
/**
|
|
538
531
|
* Create or Update multiple PlanBenefitCascade at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -603,17 +596,16 @@ export class PlanBenefitCascadesApi extends BaseAPI implements PlanBenefitCascad
|
|
|
603
596
|
}
|
|
604
597
|
|
|
605
598
|
/**
|
|
606
|
-
* Lists all PlanBenefitCascade for the given planID
|
|
599
|
+
* Lists all PlanBenefitCascade for the given planID
|
|
607
600
|
* @summary List PlanBenefitCascade
|
|
608
601
|
* @param {string} vbasoftwareDatabase Target database
|
|
609
602
|
* @param {string} planID Plan ID
|
|
610
|
-
* @param {string} parentBenefitCode Parent Benefit Code
|
|
611
603
|
* @param {*} [options] Override http request option.
|
|
612
604
|
* @throws {RequiredError}
|
|
613
605
|
* @memberof PlanBenefitCascadesApi
|
|
614
606
|
*/
|
|
615
|
-
public listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string,
|
|
616
|
-
return PlanBenefitCascadesApiFp(this.configuration).listPlanBenefitCascade(vbasoftwareDatabase, planID,
|
|
607
|
+
public listPlanBenefitCascade(vbasoftwareDatabase: string, planID: string, options?: AxiosRequestConfig) {
|
|
608
|
+
return PlanBenefitCascadesApiFp(this.configuration).listPlanBenefitCascade(vbasoftwareDatabase, planID, options).then((request) => request(this.axios, this.basePath));
|
|
617
609
|
}
|
|
618
610
|
|
|
619
611
|
/**
|
package/api/premium-rates-api.ts
CHANGED
|
@@ -27,6 +27,8 @@ import { PremRate } from '../models';
|
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { PremRateListVBAResponse } from '../models';
|
|
29
29
|
// @ts-ignore
|
|
30
|
+
import { PremRateNestedListVBAResponse } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
30
32
|
import { PremRateVBAResponse } from '../models';
|
|
31
33
|
/**
|
|
32
34
|
* PremiumRatesApi - axios parameter creator
|
|
@@ -296,6 +298,60 @@ export const PremiumRatesApiAxiosParamCreator = function (configuration?: Config
|
|
|
296
298
|
|
|
297
299
|
|
|
298
300
|
|
|
301
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
302
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
303
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
304
|
+
|
|
305
|
+
return {
|
|
306
|
+
url: toPathString(localVarUrlObj),
|
|
307
|
+
options: localVarRequestOptions,
|
|
308
|
+
};
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Lists all Premium Rates for the given groupID and have it nested by Division, then by Plan, then by Rate Category, then by Rate Basis.
|
|
312
|
+
* @summary List Premium Rates nested by Division/Plan/Category/Basis
|
|
313
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
314
|
+
* @param {string} [premRateType] PremRate_Type
|
|
315
|
+
* @param {string} [groupID] Group ID
|
|
316
|
+
* @param {*} [options] Override http request option.
|
|
317
|
+
* @throws {RequiredError}
|
|
318
|
+
*/
|
|
319
|
+
listPremRateNested: async (vbasoftwareDatabase: string, premRateType?: string, groupID?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
320
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
321
|
+
assertParamExists('listPremRateNested', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
322
|
+
const localVarPath = `/premium-rates-nested`;
|
|
323
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
324
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
325
|
+
let baseOptions;
|
|
326
|
+
if (configuration) {
|
|
327
|
+
baseOptions = configuration.baseOptions;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
331
|
+
const localVarHeaderParameter = {} as any;
|
|
332
|
+
const localVarQueryParameter = {} as any;
|
|
333
|
+
|
|
334
|
+
// authentication apiKeyAuth required
|
|
335
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
336
|
+
|
|
337
|
+
// authentication bearerAuth required
|
|
338
|
+
// http bearer authentication required
|
|
339
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
340
|
+
|
|
341
|
+
if (premRateType !== undefined) {
|
|
342
|
+
localVarQueryParameter['premRateType'] = premRateType;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
if (groupID !== undefined) {
|
|
346
|
+
localVarQueryParameter['groupID'] = groupID;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
350
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
299
355
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
300
356
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
301
357
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -484,6 +540,19 @@ export const PremiumRatesApiFp = function(configuration?: Configuration) {
|
|
|
484
540
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPremRate(vbasoftwareDatabase, premRateType, page, pageSize, options);
|
|
485
541
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
486
542
|
},
|
|
543
|
+
/**
|
|
544
|
+
* Lists all Premium Rates for the given groupID and have it nested by Division, then by Plan, then by Rate Category, then by Rate Basis.
|
|
545
|
+
* @summary List Premium Rates nested by Division/Plan/Category/Basis
|
|
546
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
547
|
+
* @param {string} [premRateType] PremRate_Type
|
|
548
|
+
* @param {string} [groupID] Group ID
|
|
549
|
+
* @param {*} [options] Override http request option.
|
|
550
|
+
* @throws {RequiredError}
|
|
551
|
+
*/
|
|
552
|
+
async listPremRateNested(vbasoftwareDatabase: string, premRateType?: string, groupID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PremRateNestedListVBAResponse>> {
|
|
553
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPremRateNested(vbasoftwareDatabase, premRateType, groupID, options);
|
|
554
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
555
|
+
},
|
|
487
556
|
/**
|
|
488
557
|
* Create or Update multiple PremRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
489
558
|
* @summary Create or Update Batch PremRate
|
|
@@ -579,6 +648,18 @@ export const PremiumRatesApiFactory = function (configuration?: Configuration, b
|
|
|
579
648
|
listPremRate(vbasoftwareDatabase: string, premRateType?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<PremRateListVBAResponse> {
|
|
580
649
|
return localVarFp.listPremRate(vbasoftwareDatabase, premRateType, page, pageSize, options).then((request) => request(axios, basePath));
|
|
581
650
|
},
|
|
651
|
+
/**
|
|
652
|
+
* Lists all Premium Rates for the given groupID and have it nested by Division, then by Plan, then by Rate Category, then by Rate Basis.
|
|
653
|
+
* @summary List Premium Rates nested by Division/Plan/Category/Basis
|
|
654
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
655
|
+
* @param {string} [premRateType] PremRate_Type
|
|
656
|
+
* @param {string} [groupID] Group ID
|
|
657
|
+
* @param {*} [options] Override http request option.
|
|
658
|
+
* @throws {RequiredError}
|
|
659
|
+
*/
|
|
660
|
+
listPremRateNested(vbasoftwareDatabase: string, premRateType?: string, groupID?: string, options?: any): AxiosPromise<PremRateNestedListVBAResponse> {
|
|
661
|
+
return localVarFp.listPremRateNested(vbasoftwareDatabase, premRateType, groupID, options).then((request) => request(axios, basePath));
|
|
662
|
+
},
|
|
582
663
|
/**
|
|
583
664
|
* Create or Update multiple PremRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
584
665
|
* @summary Create or Update Batch PremRate
|
|
@@ -671,6 +752,18 @@ export interface PremiumRatesApiInterface {
|
|
|
671
752
|
*/
|
|
672
753
|
listPremRate(vbasoftwareDatabase: string, premRateType?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<PremRateListVBAResponse>;
|
|
673
754
|
|
|
755
|
+
/**
|
|
756
|
+
* Lists all Premium Rates for the given groupID and have it nested by Division, then by Plan, then by Rate Category, then by Rate Basis.
|
|
757
|
+
* @summary List Premium Rates nested by Division/Plan/Category/Basis
|
|
758
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
759
|
+
* @param {string} [premRateType] PremRate_Type
|
|
760
|
+
* @param {string} [groupID] Group ID
|
|
761
|
+
* @param {*} [options] Override http request option.
|
|
762
|
+
* @throws {RequiredError}
|
|
763
|
+
* @memberof PremiumRatesApiInterface
|
|
764
|
+
*/
|
|
765
|
+
listPremRateNested(vbasoftwareDatabase: string, premRateType?: string, groupID?: string, options?: AxiosRequestConfig): AxiosPromise<PremRateNestedListVBAResponse>;
|
|
766
|
+
|
|
674
767
|
/**
|
|
675
768
|
* Create or Update multiple PremRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
676
769
|
* @summary Create or Update Batch PremRate
|
|
@@ -773,6 +866,20 @@ export class PremiumRatesApi extends BaseAPI implements PremiumRatesApiInterface
|
|
|
773
866
|
return PremiumRatesApiFp(this.configuration).listPremRate(vbasoftwareDatabase, premRateType, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
774
867
|
}
|
|
775
868
|
|
|
869
|
+
/**
|
|
870
|
+
* Lists all Premium Rates for the given groupID and have it nested by Division, then by Plan, then by Rate Category, then by Rate Basis.
|
|
871
|
+
* @summary List Premium Rates nested by Division/Plan/Category/Basis
|
|
872
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
873
|
+
* @param {string} [premRateType] PremRate_Type
|
|
874
|
+
* @param {string} [groupID] Group ID
|
|
875
|
+
* @param {*} [options] Override http request option.
|
|
876
|
+
* @throws {RequiredError}
|
|
877
|
+
* @memberof PremiumRatesApi
|
|
878
|
+
*/
|
|
879
|
+
public listPremRateNested(vbasoftwareDatabase: string, premRateType?: string, groupID?: string, options?: AxiosRequestConfig) {
|
|
880
|
+
return PremiumRatesApiFp(this.configuration).listPremRateNested(vbasoftwareDatabase, premRateType, groupID, options).then((request) => request(this.axios, this.basePath));
|
|
881
|
+
}
|
|
882
|
+
|
|
776
883
|
/**
|
|
777
884
|
* Create or Update multiple PremRate at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
778
885
|
* @summary Create or Update Batch PremRate
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRatePlanConfig } from './commission-rate-plan-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionRateDivisionConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionRateDivisionConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CommissionRateDivisionConfig
|
|
28
|
+
*/
|
|
29
|
+
'division_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CommissionRateDivisionConfig
|
|
34
|
+
*/
|
|
35
|
+
'division_Name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<CommissionRatePlanConfig>}
|
|
39
|
+
* @memberof CommissionRateDivisionConfig
|
|
40
|
+
*/
|
|
41
|
+
'planConfigs'?: Array<CommissionRatePlanConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRateNested } from './commission-rate-nested';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CommissionRateNestedListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CommissionRateNestedListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CommissionRateNested>}
|
|
29
|
+
* @memberof CommissionRateNestedListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<CommissionRateNested> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CommissionRateNestedListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CommissionRateNestedListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRateDivisionConfig } from './commission-rate-division-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionRateNested
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionRateNested {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CommissionRateNested
|
|
28
|
+
*/
|
|
29
|
+
'group_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CommissionRateNested
|
|
34
|
+
*/
|
|
35
|
+
'group_Name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<CommissionRateDivisionConfig>}
|
|
39
|
+
* @memberof CommissionRateNested
|
|
40
|
+
*/
|
|
41
|
+
'divisionConfigs'?: Array<CommissionRateDivisionConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionRateRate } from './commission-rate-rate';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionRatePlanConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionRatePlanConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CommissionRatePlanConfig
|
|
28
|
+
*/
|
|
29
|
+
'plan_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CommissionRatePlanConfig
|
|
34
|
+
*/
|
|
35
|
+
'plan_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<CommissionRateRate>}
|
|
39
|
+
* @memberof CommissionRatePlanConfig
|
|
40
|
+
*/
|
|
41
|
+
'rates'?: Array<CommissionRateRate> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CommissionRateRate
|
|
21
|
+
*/
|
|
22
|
+
export interface CommissionRateRate {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CommissionRateRate
|
|
27
|
+
*/
|
|
28
|
+
'commissionRate_Key'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CommissionRateRate
|
|
33
|
+
*/
|
|
34
|
+
'rate_Description'?: string | null;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CopyGroupDivision
|
|
21
|
+
*/
|
|
22
|
+
export interface CopyGroupDivision {
|
|
23
|
+
/**
|
|
24
|
+
* The owning Group
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CopyGroupDivision
|
|
27
|
+
*/
|
|
28
|
+
'groupID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The division from which values will be copied.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CopyGroupDivision
|
|
33
|
+
*/
|
|
34
|
+
'sourceDivisionID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the new divion
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CopyGroupDivision
|
|
39
|
+
*/
|
|
40
|
+
'destinationDivisionID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CopyGroupDivision
|
|
45
|
+
*/
|
|
46
|
+
'copyContracts'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CopyGroupDivision
|
|
51
|
+
*/
|
|
52
|
+
'copyPlans'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CopyGroupDivision
|
|
57
|
+
*/
|
|
58
|
+
'copyRiders'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CopyGroupDivision
|
|
63
|
+
*/
|
|
64
|
+
'copyAdditional'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CopyGroupDivision
|
|
69
|
+
*/
|
|
70
|
+
'copyClassOptions'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CopyGroupDivision
|
|
75
|
+
*/
|
|
76
|
+
'copyCommissions'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CopyGroupDivision
|
|
81
|
+
*/
|
|
82
|
+
'copyDisabilityOptions'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CopyGroupDivision
|
|
87
|
+
*/
|
|
88
|
+
'copyNetworksTiers'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof CopyGroupDivision
|
|
93
|
+
*/
|
|
94
|
+
'copyPlanYears'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof CopyGroupDivision
|
|
99
|
+
*/
|
|
100
|
+
'copyPremiums'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof CopyGroupDivision
|
|
105
|
+
*/
|
|
106
|
+
'copySelfAdmin'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof CopyGroupDivision
|
|
111
|
+
*/
|
|
112
|
+
'copyStudentAge'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof CopyGroupDivision
|
|
117
|
+
*/
|
|
118
|
+
'copyVolumeDetails'?: string | null;
|
|
119
|
+
/**
|
|
120
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof CopyGroupDivision
|
|
123
|
+
*/
|
|
124
|
+
'copyIDCodes'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
* The requesting user id.
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof CopyGroupDivision
|
|
129
|
+
*/
|
|
130
|
+
'userID'?: string | null;
|
|
131
|
+
}
|
|
132
|
+
|
|
@@ -18,25 +18,25 @@ import { Volume } from './volume';
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
20
|
* @export
|
|
21
|
-
* @interface
|
|
21
|
+
* @interface GroupVolumeBenefitConfig
|
|
22
22
|
*/
|
|
23
|
-
export interface
|
|
23
|
+
export interface GroupVolumeBenefitConfig {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
27
|
-
* @memberof
|
|
27
|
+
* @memberof GroupVolumeBenefitConfig
|
|
28
28
|
*/
|
|
29
29
|
'benefit_Code'?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof GroupVolumeBenefitConfig
|
|
34
34
|
*/
|
|
35
35
|
'benefit_Description'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {Array<Volume>}
|
|
39
|
-
* @memberof
|
|
39
|
+
* @memberof GroupVolumeBenefitConfig
|
|
40
40
|
*/
|
|
41
41
|
'volumes'?: Array<Volume> | null;
|
|
42
42
|
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { GroupVolumePlanConfig } from './group-volume-plan-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GroupVolumeDivisionConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface GroupVolumeDivisionConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GroupVolumeDivisionConfig
|
|
28
|
+
*/
|
|
29
|
+
'division_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GroupVolumeDivisionConfig
|
|
34
|
+
*/
|
|
35
|
+
'division_Name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<GroupVolumePlanConfig>}
|
|
39
|
+
* @memberof GroupVolumeDivisionConfig
|
|
40
|
+
*/
|
|
41
|
+
'planConfigs'?: Array<GroupVolumePlanConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|