@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250502.1 → 1.20250620.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 +40 -0
- package/api/adv-billing-api.ts +184 -0
- package/api/adv-care-management-api.ts +166 -0
- package/api/adv-claim-api.ts +204 -6
- package/api/adv-commission-api.ts +96 -0
- package/api/adv-enrollment-api.ts +88 -0
- package/api/adv-vbagateway-api.ts +168 -0
- package/api/authentication-api.ts +96 -0
- package/api/care-cases-api.ts +609 -0
- package/api/claim-offset-api.ts +685 -0
- package/api/claim-offset-detail-api.ts +694 -0
- package/api/claims-api.ts +25 -25
- package/api/company-data-api.ts +90 -0
- package/api/funding-reconciliations-api.ts +96 -0
- package/api/funding-request-claim-remove-api.ts +773 -0
- package/api/plans-api.ts +26 -8
- package/api/premium-invoices-api.ts +88 -0
- package/api/user-api.ts +22 -13
- package/api.ts +5 -0
- package/docs/AdjudicationSummary.md +34 -0
- package/docs/AdvBillingApi.md +109 -0
- package/docs/AdvCareManagementApi.md +63 -0
- package/docs/AdvClaimApi.md +117 -4
- package/docs/AdvCommissionApi.md +56 -0
- package/docs/AdvEnrollmentApi.md +53 -0
- package/docs/AdvVBAGatewayApi.md +64 -0
- package/docs/AuthenticationApi.md +56 -0
- package/docs/CareCasesApi.md +347 -0
- package/docs/ClaimOffset.md +30 -0
- package/docs/ClaimOffsetApi.md +354 -0
- package/docs/ClaimOffsetDetail.md +36 -0
- package/docs/ClaimOffsetDetailApi.md +357 -0
- package/docs/ClaimOffsetDetailListVBAResponse.md +24 -0
- package/docs/ClaimOffsetDetailVBAResponse.md +24 -0
- package/docs/ClaimOffsetListVBAResponse.md +24 -0
- package/docs/ClaimOffsetVBAResponse.md +24 -0
- package/docs/ClaimsApi.md +5 -5
- package/docs/CompanyData.md +2 -0
- package/docs/CompanyDataApi.md +53 -0
- package/docs/FundingReconciliationsApi.md +56 -0
- package/docs/FundingRequestClaimRemove.md +38 -0
- package/docs/FundingRequestClaimRemoveApi.md +387 -0
- package/docs/FundingRequestClaimRemoveListVBAResponse.md +24 -0
- package/docs/FundingRequestClaimRemoveVBAResponse.md +24 -0
- package/docs/MemberBeneficiary.md +1 -1
- package/docs/Members.md +4 -0
- package/docs/PlansApi.md +7 -1
- package/docs/PremiumInvoicesApi.md +53 -0
- package/docs/ReportSeriesProcess.md +2 -0
- package/docs/ReportSeriesStep.md +16 -0
- package/docs/UserApi.md +5 -2
- package/docs/VBAClaimBatchCopy.md +60 -0
- package/docs/VBAClaimBatchCopyVBAResponse.md +24 -0
- package/docs/VBAClientSummary.md +48 -0
- package/docs/VBAClientSummaryVBAResponse.md +24 -0
- package/docs/VBAProcessPaymentFile.md +9 -9
- package/docs/VBAVBAGatewayProcessRequest.md +32 -0
- package/models/adjudication-summary.ts +72 -0
- package/models/claim-offset-detail-list-vbaresponse.ts +51 -0
- package/models/claim-offset-detail-vbaresponse.ts +51 -0
- package/models/claim-offset-detail.ts +78 -0
- package/models/claim-offset-list-vbaresponse.ts +51 -0
- package/models/claim-offset-vbaresponse.ts +51 -0
- package/models/claim-offset.ts +60 -0
- package/models/company-data.ts +6 -0
- package/models/funding-request-claim-remove-list-vbaresponse.ts +51 -0
- package/models/funding-request-claim-remove-vbaresponse.ts +51 -0
- package/models/funding-request-claim-remove.ts +84 -0
- package/models/index.ts +15 -0
- package/models/member-beneficiary.ts +1 -1
- package/models/members.ts +12 -0
- package/models/report-series-process.ts +6 -0
- package/models/report-series-step.ts +48 -0
- package/models/vbaclaim-batch-copy-vbaresponse.ts +51 -0
- package/models/vbaclaim-batch-copy.ts +150 -0
- package/models/vbaclient-summary-vbaresponse.ts +51 -0
- package/models/vbaclient-summary.ts +117 -0
- package/models/vbaprocess-payment-file.ts +9 -9
- package/models/vbavbagateway-process-request.ts +66 -0
- package/package.json +1 -1
package/api/plans-api.ts
CHANGED
|
@@ -234,10 +234,12 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
234
234
|
* @summary List Plans
|
|
235
235
|
* @param {string} vbasoftwareDatabase Target database
|
|
236
236
|
* @param {string} [planType] Plan Type
|
|
237
|
+
* @param {number} [page] Page
|
|
238
|
+
* @param {number} [pageSize] Page Size
|
|
237
239
|
* @param {*} [options] Override http request option.
|
|
238
240
|
* @throws {RequiredError}
|
|
239
241
|
*/
|
|
240
|
-
listPlans: async (vbasoftwareDatabase: string, planType?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
242
|
+
listPlans: async (vbasoftwareDatabase: string, planType?: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
241
243
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
242
244
|
assertParamExists('listPlans', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
243
245
|
const localVarPath = `/plans`;
|
|
@@ -263,6 +265,14 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
263
265
|
localVarQueryParameter['planType'] = planType;
|
|
264
266
|
}
|
|
265
267
|
|
|
268
|
+
if (page !== undefined) {
|
|
269
|
+
localVarQueryParameter['page'] = page;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
if (pageSize !== undefined) {
|
|
273
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
274
|
+
}
|
|
275
|
+
|
|
266
276
|
|
|
267
277
|
|
|
268
278
|
if (vbasoftwareDatabase != null) {
|
|
@@ -450,11 +460,13 @@ export const PlansApiFp = function(configuration?: Configuration) {
|
|
|
450
460
|
* @summary List Plans
|
|
451
461
|
* @param {string} vbasoftwareDatabase Target database
|
|
452
462
|
* @param {string} [planType] Plan Type
|
|
463
|
+
* @param {number} [page] Page
|
|
464
|
+
* @param {number} [pageSize] Page Size
|
|
453
465
|
* @param {*} [options] Override http request option.
|
|
454
466
|
* @throws {RequiredError}
|
|
455
467
|
*/
|
|
456
|
-
async listPlans(vbasoftwareDatabase: string, planType?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlansListVBAResponse>> {
|
|
457
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlans(vbasoftwareDatabase, planType, options);
|
|
468
|
+
async listPlans(vbasoftwareDatabase: string, planType?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlansListVBAResponse>> {
|
|
469
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlans(vbasoftwareDatabase, planType, page, pageSize, options);
|
|
458
470
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
459
471
|
const localVarOperationServerBasePath = operationServerMap['PlansApi.listPlans']?.[localVarOperationServerIndex]?.url;
|
|
460
472
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -547,11 +559,13 @@ export const PlansApiFactory = function (configuration?: Configuration, basePath
|
|
|
547
559
|
* @summary List Plans
|
|
548
560
|
* @param {string} vbasoftwareDatabase Target database
|
|
549
561
|
* @param {string} [planType] Plan Type
|
|
562
|
+
* @param {number} [page] Page
|
|
563
|
+
* @param {number} [pageSize] Page Size
|
|
550
564
|
* @param {*} [options] Override http request option.
|
|
551
565
|
* @throws {RequiredError}
|
|
552
566
|
*/
|
|
553
|
-
listPlans(vbasoftwareDatabase: string, planType?: string, options?: RawAxiosRequestConfig): AxiosPromise<PlansListVBAResponse> {
|
|
554
|
-
return localVarFp.listPlans(vbasoftwareDatabase, planType, options).then((request) => request(axios, basePath));
|
|
567
|
+
listPlans(vbasoftwareDatabase: string, planType?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<PlansListVBAResponse> {
|
|
568
|
+
return localVarFp.listPlans(vbasoftwareDatabase, planType, page, pageSize, options).then((request) => request(axios, basePath));
|
|
555
569
|
},
|
|
556
570
|
/**
|
|
557
571
|
* Create or Update multiple Plans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -634,11 +648,13 @@ export interface PlansApiInterface {
|
|
|
634
648
|
* @summary List Plans
|
|
635
649
|
* @param {string} vbasoftwareDatabase Target database
|
|
636
650
|
* @param {string} [planType] Plan Type
|
|
651
|
+
* @param {number} [page] Page
|
|
652
|
+
* @param {number} [pageSize] Page Size
|
|
637
653
|
* @param {*} [options] Override http request option.
|
|
638
654
|
* @throws {RequiredError}
|
|
639
655
|
* @memberof PlansApiInterface
|
|
640
656
|
*/
|
|
641
|
-
listPlans(vbasoftwareDatabase: string, planType?: string, options?: RawAxiosRequestConfig): AxiosPromise<PlansListVBAResponse>;
|
|
657
|
+
listPlans(vbasoftwareDatabase: string, planType?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<PlansListVBAResponse>;
|
|
642
658
|
|
|
643
659
|
/**
|
|
644
660
|
* Create or Update multiple Plans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -729,12 +745,14 @@ export class PlansApi extends BaseAPI implements PlansApiInterface {
|
|
|
729
745
|
* @summary List Plans
|
|
730
746
|
* @param {string} vbasoftwareDatabase Target database
|
|
731
747
|
* @param {string} [planType] Plan Type
|
|
748
|
+
* @param {number} [page] Page
|
|
749
|
+
* @param {number} [pageSize] Page Size
|
|
732
750
|
* @param {*} [options] Override http request option.
|
|
733
751
|
* @throws {RequiredError}
|
|
734
752
|
* @memberof PlansApi
|
|
735
753
|
*/
|
|
736
|
-
public listPlans(vbasoftwareDatabase: string, planType?: string, options?: RawAxiosRequestConfig) {
|
|
737
|
-
return PlansApiFp(this.configuration).listPlans(vbasoftwareDatabase, planType, options).then((request) => request(this.axios, this.basePath));
|
|
754
|
+
public listPlans(vbasoftwareDatabase: string, planType?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
755
|
+
return PlansApiFp(this.configuration).listPlans(vbasoftwareDatabase, planType, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
738
756
|
}
|
|
739
757
|
|
|
740
758
|
/**
|
|
@@ -47,6 +47,49 @@ import type { PremInvoiceVBAResponse } from '../models';
|
|
|
47
47
|
*/
|
|
48
48
|
export const PremiumInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
49
49
|
return {
|
|
50
|
+
/**
|
|
51
|
+
* Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
52
|
+
* @summary Check Past Due settings and trigger Process Automation
|
|
53
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
54
|
+
* @param {*} [options] Override http request option.
|
|
55
|
+
* @throws {RequiredError}
|
|
56
|
+
*/
|
|
57
|
+
billingPastDueProcessAutomation: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
58
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
59
|
+
assertParamExists('billingPastDueProcessAutomation', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
60
|
+
const localVarPath = `/billing-past-due-process-automation`;
|
|
61
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
63
|
+
let baseOptions;
|
|
64
|
+
if (configuration) {
|
|
65
|
+
baseOptions = configuration.baseOptions;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
69
|
+
const localVarHeaderParameter = {} as any;
|
|
70
|
+
const localVarQueryParameter = {} as any;
|
|
71
|
+
|
|
72
|
+
// authentication apiKeyAuth required
|
|
73
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
74
|
+
|
|
75
|
+
// authentication bearerAuth required
|
|
76
|
+
// http bearer authentication required
|
|
77
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
if (vbasoftwareDatabase != null) {
|
|
82
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
83
|
+
}
|
|
84
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
85
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
87
|
+
|
|
88
|
+
return {
|
|
89
|
+
url: toPathString(localVarUrlObj),
|
|
90
|
+
options: localVarRequestOptions,
|
|
91
|
+
};
|
|
92
|
+
},
|
|
50
93
|
/**
|
|
51
94
|
* Creates a new PremInvoice
|
|
52
95
|
* @summary Create PremInvoice
|
|
@@ -1604,6 +1647,19 @@ export const PremiumInvoicesApiAxiosParamCreator = function (configuration?: Con
|
|
|
1604
1647
|
export const PremiumInvoicesApiFp = function(configuration?: Configuration) {
|
|
1605
1648
|
const localVarAxiosParamCreator = PremiumInvoicesApiAxiosParamCreator(configuration)
|
|
1606
1649
|
return {
|
|
1650
|
+
/**
|
|
1651
|
+
* Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
1652
|
+
* @summary Check Past Due settings and trigger Process Automation
|
|
1653
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1654
|
+
* @param {*} [options] Override http request option.
|
|
1655
|
+
* @throws {RequiredError}
|
|
1656
|
+
*/
|
|
1657
|
+
async billingPastDueProcessAutomation(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
1658
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.billingPastDueProcessAutomation(vbasoftwareDatabase, options);
|
|
1659
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1660
|
+
const localVarOperationServerBasePath = operationServerMap['PremiumInvoicesApi.billingPastDueProcessAutomation']?.[localVarOperationServerIndex]?.url;
|
|
1661
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1662
|
+
},
|
|
1607
1663
|
/**
|
|
1608
1664
|
* Creates a new PremInvoice
|
|
1609
1665
|
* @summary Create PremInvoice
|
|
@@ -2058,6 +2114,16 @@ export const PremiumInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
2058
2114
|
export const PremiumInvoicesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2059
2115
|
const localVarFp = PremiumInvoicesApiFp(configuration)
|
|
2060
2116
|
return {
|
|
2117
|
+
/**
|
|
2118
|
+
* Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
2119
|
+
* @summary Check Past Due settings and trigger Process Automation
|
|
2120
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2121
|
+
* @param {*} [options] Override http request option.
|
|
2122
|
+
* @throws {RequiredError}
|
|
2123
|
+
*/
|
|
2124
|
+
billingPastDueProcessAutomation(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
2125
|
+
return localVarFp.billingPastDueProcessAutomation(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
2126
|
+
},
|
|
2061
2127
|
/**
|
|
2062
2128
|
* Creates a new PremInvoice
|
|
2063
2129
|
* @summary Create PremInvoice
|
|
@@ -2418,6 +2484,16 @@ export const PremiumInvoicesApiFactory = function (configuration?: Configuration
|
|
|
2418
2484
|
* @interface PremiumInvoicesApi
|
|
2419
2485
|
*/
|
|
2420
2486
|
export interface PremiumInvoicesApiInterface {
|
|
2487
|
+
/**
|
|
2488
|
+
* Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
2489
|
+
* @summary Check Past Due settings and trigger Process Automation
|
|
2490
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2491
|
+
* @param {*} [options] Override http request option.
|
|
2492
|
+
* @throws {RequiredError}
|
|
2493
|
+
* @memberof PremiumInvoicesApiInterface
|
|
2494
|
+
*/
|
|
2495
|
+
billingPastDueProcessAutomation(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2496
|
+
|
|
2421
2497
|
/**
|
|
2422
2498
|
* Creates a new PremInvoice
|
|
2423
2499
|
* @summary Create PremInvoice
|
|
@@ -2778,6 +2854,18 @@ export interface PremiumInvoicesApiInterface {
|
|
|
2778
2854
|
* @extends {BaseAPI}
|
|
2779
2855
|
*/
|
|
2780
2856
|
export class PremiumInvoicesApi extends BaseAPI implements PremiumInvoicesApiInterface {
|
|
2857
|
+
/**
|
|
2858
|
+
* Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
2859
|
+
* @summary Check Past Due settings and trigger Process Automation
|
|
2860
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2861
|
+
* @param {*} [options] Override http request option.
|
|
2862
|
+
* @throws {RequiredError}
|
|
2863
|
+
* @memberof PremiumInvoicesApi
|
|
2864
|
+
*/
|
|
2865
|
+
public billingPastDueProcessAutomation(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
2866
|
+
return PremiumInvoicesApiFp(this.configuration).billingPastDueProcessAutomation(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2781
2869
|
/**
|
|
2782
2870
|
* Creates a new PremInvoice
|
|
2783
2871
|
* @summary Create PremInvoice
|
package/api/user-api.ts
CHANGED
|
@@ -501,13 +501,14 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
501
501
|
};
|
|
502
502
|
},
|
|
503
503
|
/**
|
|
504
|
-
* Lists all Users
|
|
504
|
+
* Lists all Users with an optional filter for login status. Login status values: 1=Logged In, 2=Logged Out, 3=Kicked.
|
|
505
505
|
* @summary List Users
|
|
506
506
|
* @param {string} vbasoftwareDatabase Target database
|
|
507
|
+
* @param {number} [loginStatus] Optional filter for login status (1=Logged In, 2=Logged Out, 3=Kicked)
|
|
507
508
|
* @param {*} [options] Override http request option.
|
|
508
509
|
* @throws {RequiredError}
|
|
509
510
|
*/
|
|
510
|
-
listUsers: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
511
|
+
listUsers: async (vbasoftwareDatabase: string, loginStatus?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
511
512
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
512
513
|
assertParamExists('listUsers', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
513
514
|
const localVarPath = `/users`;
|
|
@@ -529,6 +530,10 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
529
530
|
// http bearer authentication required
|
|
530
531
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
531
532
|
|
|
533
|
+
if (loginStatus !== undefined) {
|
|
534
|
+
localVarQueryParameter['loginStatus'] = loginStatus;
|
|
535
|
+
}
|
|
536
|
+
|
|
532
537
|
|
|
533
538
|
|
|
534
539
|
if (vbasoftwareDatabase != null) {
|
|
@@ -1126,14 +1131,15 @@ export const UserApiFp = function(configuration?: Configuration) {
|
|
|
1126
1131
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1127
1132
|
},
|
|
1128
1133
|
/**
|
|
1129
|
-
* Lists all Users
|
|
1134
|
+
* Lists all Users with an optional filter for login status. Login status values: 1=Logged In, 2=Logged Out, 3=Kicked.
|
|
1130
1135
|
* @summary List Users
|
|
1131
1136
|
* @param {string} vbasoftwareDatabase Target database
|
|
1137
|
+
* @param {number} [loginStatus] Optional filter for login status (1=Logged In, 2=Logged Out, 3=Kicked)
|
|
1132
1138
|
* @param {*} [options] Override http request option.
|
|
1133
1139
|
* @throws {RequiredError}
|
|
1134
1140
|
*/
|
|
1135
|
-
async listUsers(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsersListVBAResponse>> {
|
|
1136
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(vbasoftwareDatabase, options);
|
|
1141
|
+
async listUsers(vbasoftwareDatabase: string, loginStatus?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UsersListVBAResponse>> {
|
|
1142
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(vbasoftwareDatabase, loginStatus, options);
|
|
1137
1143
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1138
1144
|
const localVarOperationServerBasePath = operationServerMap['UserApi.listUsers']?.[localVarOperationServerIndex]?.url;
|
|
1139
1145
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1376,14 +1382,15 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1376
1382
|
return localVarFp.getUser(vbasoftwareDatabase, userID, options).then((request) => request(axios, basePath));
|
|
1377
1383
|
},
|
|
1378
1384
|
/**
|
|
1379
|
-
* Lists all Users
|
|
1385
|
+
* Lists all Users with an optional filter for login status. Login status values: 1=Logged In, 2=Logged Out, 3=Kicked.
|
|
1380
1386
|
* @summary List Users
|
|
1381
1387
|
* @param {string} vbasoftwareDatabase Target database
|
|
1388
|
+
* @param {number} [loginStatus] Optional filter for login status (1=Logged In, 2=Logged Out, 3=Kicked)
|
|
1382
1389
|
* @param {*} [options] Override http request option.
|
|
1383
1390
|
* @throws {RequiredError}
|
|
1384
1391
|
*/
|
|
1385
|
-
listUsers(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<UsersListVBAResponse> {
|
|
1386
|
-
return localVarFp.listUsers(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1392
|
+
listUsers(vbasoftwareDatabase: string, loginStatus?: number, options?: RawAxiosRequestConfig): AxiosPromise<UsersListVBAResponse> {
|
|
1393
|
+
return localVarFp.listUsers(vbasoftwareDatabase, loginStatus, options).then((request) => request(axios, basePath));
|
|
1387
1394
|
},
|
|
1388
1395
|
/**
|
|
1389
1396
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
@@ -1598,14 +1605,15 @@ export interface UserApiInterface {
|
|
|
1598
1605
|
getUser(vbasoftwareDatabase: string, userID: string, options?: RawAxiosRequestConfig): AxiosPromise<UsersVBAResponse>;
|
|
1599
1606
|
|
|
1600
1607
|
/**
|
|
1601
|
-
* Lists all Users
|
|
1608
|
+
* Lists all Users with an optional filter for login status. Login status values: 1=Logged In, 2=Logged Out, 3=Kicked.
|
|
1602
1609
|
* @summary List Users
|
|
1603
1610
|
* @param {string} vbasoftwareDatabase Target database
|
|
1611
|
+
* @param {number} [loginStatus] Optional filter for login status (1=Logged In, 2=Logged Out, 3=Kicked)
|
|
1604
1612
|
* @param {*} [options] Override http request option.
|
|
1605
1613
|
* @throws {RequiredError}
|
|
1606
1614
|
* @memberof UserApiInterface
|
|
1607
1615
|
*/
|
|
1608
|
-
listUsers(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<UsersListVBAResponse>;
|
|
1616
|
+
listUsers(vbasoftwareDatabase: string, loginStatus?: number, options?: RawAxiosRequestConfig): AxiosPromise<UsersListVBAResponse>;
|
|
1609
1617
|
|
|
1610
1618
|
/**
|
|
1611
1619
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
@@ -1838,15 +1846,16 @@ export class UserApi extends BaseAPI implements UserApiInterface {
|
|
|
1838
1846
|
}
|
|
1839
1847
|
|
|
1840
1848
|
/**
|
|
1841
|
-
* Lists all Users
|
|
1849
|
+
* Lists all Users with an optional filter for login status. Login status values: 1=Logged In, 2=Logged Out, 3=Kicked.
|
|
1842
1850
|
* @summary List Users
|
|
1843
1851
|
* @param {string} vbasoftwareDatabase Target database
|
|
1852
|
+
* @param {number} [loginStatus] Optional filter for login status (1=Logged In, 2=Logged Out, 3=Kicked)
|
|
1844
1853
|
* @param {*} [options] Override http request option.
|
|
1845
1854
|
* @throws {RequiredError}
|
|
1846
1855
|
* @memberof UserApi
|
|
1847
1856
|
*/
|
|
1848
|
-
public listUsers(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
1849
|
-
return UserApiFp(this.configuration).listUsers(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1857
|
+
public listUsers(vbasoftwareDatabase: string, loginStatus?: number, options?: RawAxiosRequestConfig) {
|
|
1858
|
+
return UserApiFp(this.configuration).listUsers(vbasoftwareDatabase, loginStatus, options).then((request) => request(this.axios, this.basePath));
|
|
1850
1859
|
}
|
|
1851
1860
|
|
|
1852
1861
|
/**
|
package/api.ts
CHANGED
|
@@ -24,6 +24,7 @@ export * from './api/adv-auth-api';
|
|
|
24
24
|
export * from './api/adv-benefits-api';
|
|
25
25
|
export * from './api/adv-billing-api';
|
|
26
26
|
export * from './api/adv-capitation-api';
|
|
27
|
+
export * from './api/adv-care-management-api';
|
|
27
28
|
export * from './api/adv-claim-api';
|
|
28
29
|
export * from './api/adv-commission-api';
|
|
29
30
|
export * from './api/adv-enrollment-api';
|
|
@@ -33,6 +34,7 @@ export * from './api/adv-group-contracts-api';
|
|
|
33
34
|
export * from './api/adv-group-divisions-api';
|
|
34
35
|
export * from './api/adv-groups-api';
|
|
35
36
|
export * from './api/adv-reinsurance-api';
|
|
37
|
+
export * from './api/adv-vbagateway-api';
|
|
36
38
|
export * from './api/adv-workflow-api';
|
|
37
39
|
export * from './api/age-settings-api';
|
|
38
40
|
export * from './api/agriculture-tax-returns-api';
|
|
@@ -207,6 +209,8 @@ export * from './api/claim-invoice-payments-api';
|
|
|
207
209
|
export * from './api/claim-invoice-received-api';
|
|
208
210
|
export * from './api/claim-lives-api';
|
|
209
211
|
export * from './api/claim-occurrence-codes-api';
|
|
212
|
+
export * from './api/claim-offset-api';
|
|
213
|
+
export * from './api/claim-offset-detail-api';
|
|
210
214
|
export * from './api/claim-payments-api';
|
|
211
215
|
export * from './api/claim-pre-batch-details-api';
|
|
212
216
|
export * from './api/claim-pre-batches-api';
|
|
@@ -404,6 +408,7 @@ export * from './api/funding-reconciliation-statuses-api';
|
|
|
404
408
|
export * from './api/funding-reconciliations-api';
|
|
405
409
|
export * from './api/funding-reconciliations-received-api';
|
|
406
410
|
export * from './api/funding-references-api';
|
|
411
|
+
export * from './api/funding-request-claim-remove-api';
|
|
407
412
|
export * from './api/funding-request-claims-api';
|
|
408
413
|
export * from './api/funding-request-statuses-api';
|
|
409
414
|
export * from './api/funding-request-types-api';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# AdjudicationSummary
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**received_Month** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**received_Year** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**received_Month_Name** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**claim_Count** | **number** | | [optional] [default to undefined]
|
|
12
|
+
**claim_Billed** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**claim_Paid** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**auto_Adjudicate_Rate** | **number** | | [optional] [default to undefined]
|
|
15
|
+
**average_Adjudicate_Duration** | **number** | | [optional] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { AdjudicationSummary } from './api';
|
|
21
|
+
|
|
22
|
+
const instance: AdjudicationSummary = {
|
|
23
|
+
received_Month,
|
|
24
|
+
received_Year,
|
|
25
|
+
received_Month_Name,
|
|
26
|
+
claim_Count,
|
|
27
|
+
claim_Billed,
|
|
28
|
+
claim_Paid,
|
|
29
|
+
auto_Adjudicate_Rate,
|
|
30
|
+
average_Adjudicate_Duration,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/AdvBillingApi.md
CHANGED
|
@@ -8,6 +8,8 @@ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
|
|
|
8
8
|
|[**billingApplyPaymentCategory**](#billingapplypaymentcategory) | **POST** /billing-apply-payment-category | Billing Apply Payment Category|
|
|
9
9
|
|[**billingApplyPaymentOnAccountCategory**](#billingapplypaymentonaccountcategory) | **POST** /billing-apply-payment-on-account-category | Billing Apply Payment On Account Category|
|
|
10
10
|
|[**billingAutoApply**](#billingautoapply) | **POST** /billing-auto-apply | Billing Auto-Apply|
|
|
11
|
+
|[**billingNegativePaymentProcessAutomation**](#billingnegativepaymentprocessautomation) | **POST** /billing-negative-payment-process-automation/{invoiceKey} | When a negative Payment is attached to an Invoice, trigger Process Automation.|
|
|
12
|
+
|[**billingPastDueProcessAutomation**](#billingpastdueprocessautomation) | **POST** /billing-past-due-process-automation | Check Past Due settings and trigger Process Automation|
|
|
11
13
|
|[**billingRateChange**](#billingratechange) | **POST** /billing-rate-change | Change Premium Rates|
|
|
12
14
|
|[**billingRateCopy**](#billingratecopy) | **POST** /billing-rate-copy | Copy Premium Rates|
|
|
13
15
|
|[**billingRefund**](#billingrefund) | **POST** /billing-refund | Billing Refund|
|
|
@@ -263,6 +265,113 @@ void (empty response body)
|
|
|
263
265
|
- **Accept**: Not defined
|
|
264
266
|
|
|
265
267
|
|
|
268
|
+
### HTTP response details
|
|
269
|
+
| Status code | Description | Response headers |
|
|
270
|
+
|-------------|-------------|------------------|
|
|
271
|
+
|**202** | Accepted for processing | - |
|
|
272
|
+
|**401** | Unauthorized | - |
|
|
273
|
+
|
|
274
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
275
|
+
|
|
276
|
+
# **billingNegativePaymentProcessAutomation**
|
|
277
|
+
> billingNegativePaymentProcessAutomation()
|
|
278
|
+
|
|
279
|
+
When the payment being attached to an Invoice is negative, you can optionally call this trigger to see if any process automation is configured to notify internal team members.
|
|
280
|
+
|
|
281
|
+
### Example
|
|
282
|
+
|
|
283
|
+
```typescript
|
|
284
|
+
import {
|
|
285
|
+
AdvBillingApi,
|
|
286
|
+
Configuration
|
|
287
|
+
} from './api';
|
|
288
|
+
|
|
289
|
+
const configuration = new Configuration();
|
|
290
|
+
const apiInstance = new AdvBillingApi(configuration);
|
|
291
|
+
|
|
292
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
293
|
+
let invoiceKey: number; //Invoice Key (default to undefined)
|
|
294
|
+
|
|
295
|
+
const { status, data } = await apiInstance.billingNegativePaymentProcessAutomation(
|
|
296
|
+
vbasoftwareDatabase,
|
|
297
|
+
invoiceKey
|
|
298
|
+
);
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
### Parameters
|
|
302
|
+
|
|
303
|
+
|Name | Type | Description | Notes|
|
|
304
|
+
|------------- | ------------- | ------------- | -------------|
|
|
305
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
306
|
+
| **invoiceKey** | [**number**] | Invoice Key | defaults to undefined|
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### Return type
|
|
310
|
+
|
|
311
|
+
void (empty response body)
|
|
312
|
+
|
|
313
|
+
### Authorization
|
|
314
|
+
|
|
315
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
316
|
+
|
|
317
|
+
### HTTP request headers
|
|
318
|
+
|
|
319
|
+
- **Content-Type**: Not defined
|
|
320
|
+
- **Accept**: Not defined
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### HTTP response details
|
|
324
|
+
| Status code | Description | Response headers |
|
|
325
|
+
|-------------|-------------|------------------|
|
|
326
|
+
|**202** | Accepted for processing | - |
|
|
327
|
+
|**401** | Unauthorized | - |
|
|
328
|
+
|
|
329
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
330
|
+
|
|
331
|
+
# **billingPastDueProcessAutomation**
|
|
332
|
+
> billingPastDueProcessAutomation()
|
|
333
|
+
|
|
334
|
+
Based on configured Past Due settings, interrogate Premium Billing invoices for past due invoices and fire configured process automation triggers.
|
|
335
|
+
|
|
336
|
+
### Example
|
|
337
|
+
|
|
338
|
+
```typescript
|
|
339
|
+
import {
|
|
340
|
+
AdvBillingApi,
|
|
341
|
+
Configuration
|
|
342
|
+
} from './api';
|
|
343
|
+
|
|
344
|
+
const configuration = new Configuration();
|
|
345
|
+
const apiInstance = new AdvBillingApi(configuration);
|
|
346
|
+
|
|
347
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
348
|
+
|
|
349
|
+
const { status, data } = await apiInstance.billingPastDueProcessAutomation(
|
|
350
|
+
vbasoftwareDatabase
|
|
351
|
+
);
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
### Parameters
|
|
355
|
+
|
|
356
|
+
|Name | Type | Description | Notes|
|
|
357
|
+
|------------- | ------------- | ------------- | -------------|
|
|
358
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Return type
|
|
362
|
+
|
|
363
|
+
void (empty response body)
|
|
364
|
+
|
|
365
|
+
### Authorization
|
|
366
|
+
|
|
367
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
368
|
+
|
|
369
|
+
### HTTP request headers
|
|
370
|
+
|
|
371
|
+
- **Content-Type**: Not defined
|
|
372
|
+
- **Accept**: Not defined
|
|
373
|
+
|
|
374
|
+
|
|
266
375
|
### HTTP response details
|
|
267
376
|
| Status code | Description | Response headers |
|
|
268
377
|
|-------------|-------------|------------------|
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# AdvCareManagementApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**careManagementAssign**](#caremanagementassign) | **POST** /care-management-assign | Assign a Selection of Cases to available Care Managers|
|
|
8
|
+
|
|
9
|
+
# **careManagementAssign**
|
|
10
|
+
> careManagementAssign(requestBody)
|
|
11
|
+
|
|
12
|
+
Submit a list of Cases and then, based on availability, weight, and other factors, determine what Care Managers should recive those cases.
|
|
13
|
+
|
|
14
|
+
### Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import {
|
|
18
|
+
AdvCareManagementApi,
|
|
19
|
+
Configuration
|
|
20
|
+
} from './api';
|
|
21
|
+
|
|
22
|
+
const configuration = new Configuration();
|
|
23
|
+
const apiInstance = new AdvCareManagementApi(configuration);
|
|
24
|
+
|
|
25
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
26
|
+
let requestBody: Array<number>; //
|
|
27
|
+
|
|
28
|
+
const { status, data } = await apiInstance.careManagementAssign(
|
|
29
|
+
vbasoftwareDatabase,
|
|
30
|
+
requestBody
|
|
31
|
+
);
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Parameters
|
|
35
|
+
|
|
36
|
+
|Name | Type | Description | Notes|
|
|
37
|
+
|------------- | ------------- | ------------- | -------------|
|
|
38
|
+
| **requestBody** | **Array<number>**| | |
|
|
39
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Return type
|
|
43
|
+
|
|
44
|
+
void (empty response body)
|
|
45
|
+
|
|
46
|
+
### Authorization
|
|
47
|
+
|
|
48
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
49
|
+
|
|
50
|
+
### HTTP request headers
|
|
51
|
+
|
|
52
|
+
- **Content-Type**: application/json, text/json, application/*+json
|
|
53
|
+
- **Accept**: Not defined
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### HTTP response details
|
|
57
|
+
| Status code | Description | Response headers |
|
|
58
|
+
|-------------|-------------|------------------|
|
|
59
|
+
|**202** | Accepted for processing | - |
|
|
60
|
+
|**401** | Unauthorized | - |
|
|
61
|
+
|
|
62
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
63
|
+
|