@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240120.1 → 1.20240302.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 +30 -0
- package/api/adv-workflow-api.ts +456 -0
- package/api/benefits-api.ts +122 -0
- package/api/client-config-api.ts +869 -0
- package/api/commission-rates-api.ts +8 -18
- package/api/group-ucpercent-criterias-api.ts +677 -0
- package/api/process-automation-api.ts +365 -0
- package/api/support-api.ts +532 -0
- package/api/user-api.ts +0 -96
- package/api/vbareports-api.ts +155 -0
- package/api.ts +6 -0
- package/models/auth.ts +29 -5
- package/models/callback-dto.ts +43 -0
- package/models/company-data.ts +14 -2
- package/models/database-connection.ts +36 -0
- package/models/email-report-dto.ts +103 -0
- package/models/fax-report-dto.ts +85 -0
- package/models/group-ucpercent-criteria-list-vbaresponse.ts +45 -0
- package/models/group-ucpercent-criteria-vbaresponse.ts +45 -0
- package/models/group-ucpercent-criteria.ts +84 -0
- package/models/groups.ts +6 -0
- package/models/index.ts +24 -0
- package/models/json-node-options.ts +30 -0
- package/models/json-node.ts +43 -0
- package/models/json-value.ts +44 -0
- package/models/report-series-step.ts +6 -0
- package/models/smsdto.ts +67 -0
- package/models/ssoconfig-list-vbaresponse.ts +45 -0
- package/models/ssoconfig-vbaresponse.ts +45 -0
- package/models/ssoconfig.ts +84 -0
- package/models/users.ts +13 -1
- package/models/vbaclient-environment-list-vbaresponse.ts +45 -0
- package/models/vbaclient-environment.ts +37 -0
- package/models/vbaclient-list-vbaresponse.ts +45 -0
- package/models/vbaclient-vbaresponse.ts +45 -0
- package/models/vbaclient.ts +55 -0
- package/models/vbareport-list-vbaresponse.ts +45 -0
- package/models/vbareport.ts +60 -0
- package/models/vbassologin-config.ts +42 -0
- package/models/workflow-claim.ts +60 -0
- package/models/workflow-processing.ts +49 -0
- package/package.json +1 -1
package/api/benefits-api.ts
CHANGED
|
@@ -437,6 +437,69 @@ export const BenefitsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
437
437
|
|
|
438
438
|
|
|
439
439
|
|
|
440
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
441
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
442
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
443
|
+
|
|
444
|
+
return {
|
|
445
|
+
url: toPathString(localVarUrlObj),
|
|
446
|
+
options: localVarRequestOptions,
|
|
447
|
+
};
|
|
448
|
+
},
|
|
449
|
+
/**
|
|
450
|
+
* Lists all Benefits that are Riders on a specific Plan
|
|
451
|
+
* @summary List Benefit Riders
|
|
452
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
453
|
+
* @param {string} planId PlanId
|
|
454
|
+
* @param {number} [page] Page
|
|
455
|
+
* @param {number} [pageSize] Page Size
|
|
456
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
457
|
+
* @param {*} [options] Override http request option.
|
|
458
|
+
* @throws {RequiredError}
|
|
459
|
+
*/
|
|
460
|
+
listBenefitPlanRiders: async (vbasoftwareDatabase: string, planId: string, page?: number, pageSize?: number, sortBy?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
461
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
462
|
+
assertParamExists('listBenefitPlanRiders', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
463
|
+
// verify required parameter 'planId' is not null or undefined
|
|
464
|
+
assertParamExists('listBenefitPlanRiders', 'planId', planId)
|
|
465
|
+
const localVarPath = `/plans/{planId}/benefits/riders`
|
|
466
|
+
.replace(`{${"planId"}}`, encodeURIComponent(String(planId)));
|
|
467
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
468
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
469
|
+
let baseOptions;
|
|
470
|
+
if (configuration) {
|
|
471
|
+
baseOptions = configuration.baseOptions;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
475
|
+
const localVarHeaderParameter = {} as any;
|
|
476
|
+
const localVarQueryParameter = {} as any;
|
|
477
|
+
|
|
478
|
+
// authentication apiKeyAuth required
|
|
479
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
480
|
+
|
|
481
|
+
// authentication bearerAuth required
|
|
482
|
+
// http bearer authentication required
|
|
483
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
484
|
+
|
|
485
|
+
if (page !== undefined) {
|
|
486
|
+
localVarQueryParameter['page'] = page;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
if (pageSize !== undefined) {
|
|
490
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
if (sortBy !== undefined) {
|
|
494
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
498
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
440
503
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
441
504
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
442
505
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -990,6 +1053,21 @@ export const BenefitsApiFp = function(configuration?: Configuration) {
|
|
|
990
1053
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listBenefitPlanMaximumTypes(vbasoftwareDatabase, options);
|
|
991
1054
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
992
1055
|
},
|
|
1056
|
+
/**
|
|
1057
|
+
* Lists all Benefits that are Riders on a specific Plan
|
|
1058
|
+
* @summary List Benefit Riders
|
|
1059
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1060
|
+
* @param {string} planId PlanId
|
|
1061
|
+
* @param {number} [page] Page
|
|
1062
|
+
* @param {number} [pageSize] Page Size
|
|
1063
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
1064
|
+
* @param {*} [options] Override http request option.
|
|
1065
|
+
* @throws {RequiredError}
|
|
1066
|
+
*/
|
|
1067
|
+
async listBenefitPlanRiders(vbasoftwareDatabase: string, planId: string, page?: number, pageSize?: number, sortBy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BenefitCodesListVBAResponse>> {
|
|
1068
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listBenefitPlanRiders(vbasoftwareDatabase, planId, page, pageSize, sortBy, options);
|
|
1069
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1070
|
+
},
|
|
993
1071
|
/**
|
|
994
1072
|
* List all Benefit Rate Max Types
|
|
995
1073
|
* @summary List Benefit Rate Max Types
|
|
@@ -1199,6 +1277,20 @@ export const BenefitsApiFactory = function (configuration?: Configuration, baseP
|
|
|
1199
1277
|
listBenefitPlanMaximumTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
1200
1278
|
return localVarFp.listBenefitPlanMaximumTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1201
1279
|
},
|
|
1280
|
+
/**
|
|
1281
|
+
* Lists all Benefits that are Riders on a specific Plan
|
|
1282
|
+
* @summary List Benefit Riders
|
|
1283
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1284
|
+
* @param {string} planId PlanId
|
|
1285
|
+
* @param {number} [page] Page
|
|
1286
|
+
* @param {number} [pageSize] Page Size
|
|
1287
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
1288
|
+
* @param {*} [options] Override http request option.
|
|
1289
|
+
* @throws {RequiredError}
|
|
1290
|
+
*/
|
|
1291
|
+
listBenefitPlanRiders(vbasoftwareDatabase: string, planId: string, page?: number, pageSize?: number, sortBy?: string, options?: any): AxiosPromise<BenefitCodesListVBAResponse> {
|
|
1292
|
+
return localVarFp.listBenefitPlanRiders(vbasoftwareDatabase, planId, page, pageSize, sortBy, options).then((request) => request(axios, basePath));
|
|
1293
|
+
},
|
|
1202
1294
|
/**
|
|
1203
1295
|
* List all Benefit Rate Max Types
|
|
1204
1296
|
* @summary List Benefit Rate Max Types
|
|
@@ -1398,6 +1490,20 @@ export interface BenefitsApiInterface {
|
|
|
1398
1490
|
*/
|
|
1399
1491
|
listBenefitPlanMaximumTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
1400
1492
|
|
|
1493
|
+
/**
|
|
1494
|
+
* Lists all Benefits that are Riders on a specific Plan
|
|
1495
|
+
* @summary List Benefit Riders
|
|
1496
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1497
|
+
* @param {string} planId PlanId
|
|
1498
|
+
* @param {number} [page] Page
|
|
1499
|
+
* @param {number} [pageSize] Page Size
|
|
1500
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
1501
|
+
* @param {*} [options] Override http request option.
|
|
1502
|
+
* @throws {RequiredError}
|
|
1503
|
+
* @memberof BenefitsApiInterface
|
|
1504
|
+
*/
|
|
1505
|
+
listBenefitPlanRiders(vbasoftwareDatabase: string, planId: string, page?: number, pageSize?: number, sortBy?: string, options?: AxiosRequestConfig): AxiosPromise<BenefitCodesListVBAResponse>;
|
|
1506
|
+
|
|
1401
1507
|
/**
|
|
1402
1508
|
* List all Benefit Rate Max Types
|
|
1403
1509
|
* @summary List Benefit Rate Max Types
|
|
@@ -1615,6 +1721,22 @@ export class BenefitsApi extends BaseAPI implements BenefitsApiInterface {
|
|
|
1615
1721
|
return BenefitsApiFp(this.configuration).listBenefitPlanMaximumTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1616
1722
|
}
|
|
1617
1723
|
|
|
1724
|
+
/**
|
|
1725
|
+
* Lists all Benefits that are Riders on a specific Plan
|
|
1726
|
+
* @summary List Benefit Riders
|
|
1727
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1728
|
+
* @param {string} planId PlanId
|
|
1729
|
+
* @param {number} [page] Page
|
|
1730
|
+
* @param {number} [pageSize] Page Size
|
|
1731
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
1732
|
+
* @param {*} [options] Override http request option.
|
|
1733
|
+
* @throws {RequiredError}
|
|
1734
|
+
* @memberof BenefitsApi
|
|
1735
|
+
*/
|
|
1736
|
+
public listBenefitPlanRiders(vbasoftwareDatabase: string, planId: string, page?: number, pageSize?: number, sortBy?: string, options?: AxiosRequestConfig) {
|
|
1737
|
+
return BenefitsApiFp(this.configuration).listBenefitPlanRiders(vbasoftwareDatabase, planId, page, pageSize, sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1618
1740
|
/**
|
|
1619
1741
|
* List all Benefit Rate Max Types
|
|
1620
1742
|
* @summary List Benefit Rate Max Types
|