@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230518.1 → 1.20230616.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 +29 -1
- package/api/claim-batch-logs-api.ts +668 -0
- package/api/claim-batch-references-api.ts +764 -0
- package/api/claim-batches-api.ts +17 -8
- package/api/error-category-api.ts +668 -0
- package/api/error-category-types-api.ts +725 -0
- package/api/error-severity-api.ts +668 -0
- package/api/error-type-api.ts +668 -0
- package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
- package/api/fee-schedule-details-api.ts +68 -107
- package/api/fee-schedule-modifier-discounts-api.ts +68 -107
- package/api/fee-schedule-modifier-excludes-api.ts +68 -107
- package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
- package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
- package/api/funding-request-claims-api.ts +8 -26
- package/api/member-account-plans-api.ts +10 -10
- package/api/payor-accounts-api.ts +105 -0
- package/api/reinsurance-contract-transactions-api.ts +97 -0
- package/api/user-api.ts +98 -0
- package/api.ts +7 -1
- package/models/claim-batch-log-list-vbaresponse.ts +45 -0
- package/models/claim-batch-log-vbaresponse.ts +45 -0
- package/models/claim-batch-log.ts +96 -0
- package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
- package/models/claim-batch-reference-vbaresponse.ts +45 -0
- package/models/claim-batch-reference.ts +84 -0
- package/models/company-data.ts +24 -0
- package/models/error-category-list-vbaresponse.ts +45 -0
- package/models/error-category-type-list-vbaresponse.ts +45 -0
- package/models/error-category-type-vbaresponse.ts +45 -0
- package/models/error-category-type.ts +78 -0
- package/models/error-category-vbaresponse.ts +45 -0
- package/models/error-category.ts +60 -0
- package/models/error-severity-list-vbaresponse.ts +45 -0
- package/models/error-severity-vbaresponse.ts +45 -0
- package/models/error-severity.ts +60 -0
- package/models/error-type-list-vbaresponse.ts +45 -0
- package/models/error-type-vbaresponse.ts +45 -0
- package/models/error-type.ts +60 -0
- package/models/fee-sched-anesthesia.ts +25 -1
- package/models/fee-sched-detail.ts +28 -4
- package/models/fee-sched-modifier-discount.ts +27 -3
- package/models/fee-sched-modifier-exclude.ts +25 -1
- package/models/fee-sched-procedure-group-adjust.ts +30 -6
- package/models/fee-sched-provider-type-discount.ts +27 -3
- package/models/idcode-value.ts +25 -1
- package/models/index.ts +22 -0
- package/models/prem-payment-file-format.ts +14 -8
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
- package/models/vbafunding-account-claim-info.ts +276 -0
- package/models/vbareins-contract-transaction-summary-list-vbaresponse.ts +45 -0
- package/models/vbareins-contract-transaction-summary.ts +108 -0
- package/package.json +1 -1
|
@@ -265,12 +265,10 @@ export const FundingRequestClaimsApiAxiosParamCreator = function (configuration?
|
|
|
265
265
|
* @summary List FundingRequestClaim Summary
|
|
266
266
|
* @param {string} vbasoftwareDatabase Target database
|
|
267
267
|
* @param {number} requestKey Request Key
|
|
268
|
-
* @param {number} [page] Page
|
|
269
|
-
* @param {number} [pageSize] Page Size
|
|
270
268
|
* @param {*} [options] Override http request option.
|
|
271
269
|
* @throws {RequiredError}
|
|
272
270
|
*/
|
|
273
|
-
listFundingRequestClaimSummary: async (vbasoftwareDatabase: string, requestKey: number,
|
|
271
|
+
listFundingRequestClaimSummary: async (vbasoftwareDatabase: string, requestKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
274
272
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
275
273
|
assertParamExists('listFundingRequestClaimSummary', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
276
274
|
// verify required parameter 'requestKey' is not null or undefined
|
|
@@ -295,14 +293,6 @@ export const FundingRequestClaimsApiAxiosParamCreator = function (configuration?
|
|
|
295
293
|
// http bearer authentication required
|
|
296
294
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
297
295
|
|
|
298
|
-
if (page !== undefined) {
|
|
299
|
-
localVarQueryParameter['page'] = page;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
if (pageSize !== undefined) {
|
|
303
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
296
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
307
297
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
308
298
|
}
|
|
@@ -504,13 +494,11 @@ export const FundingRequestClaimsApiFp = function(configuration?: Configuration)
|
|
|
504
494
|
* @summary List FundingRequestClaim Summary
|
|
505
495
|
* @param {string} vbasoftwareDatabase Target database
|
|
506
496
|
* @param {number} requestKey Request Key
|
|
507
|
-
* @param {number} [page] Page
|
|
508
|
-
* @param {number} [pageSize] Page Size
|
|
509
497
|
* @param {*} [options] Override http request option.
|
|
510
498
|
* @throws {RequiredError}
|
|
511
499
|
*/
|
|
512
|
-
async listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number,
|
|
513
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey,
|
|
500
|
+
async listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAFundingRequestClaimSummaryListVBAResponse>> {
|
|
501
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey, options);
|
|
514
502
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
515
503
|
},
|
|
516
504
|
/**
|
|
@@ -607,13 +595,11 @@ export const FundingRequestClaimsApiFactory = function (configuration?: Configur
|
|
|
607
595
|
* @summary List FundingRequestClaim Summary
|
|
608
596
|
* @param {string} vbasoftwareDatabase Target database
|
|
609
597
|
* @param {number} requestKey Request Key
|
|
610
|
-
* @param {number} [page] Page
|
|
611
|
-
* @param {number} [pageSize] Page Size
|
|
612
598
|
* @param {*} [options] Override http request option.
|
|
613
599
|
* @throws {RequiredError}
|
|
614
600
|
*/
|
|
615
|
-
listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number,
|
|
616
|
-
return localVarFp.listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey,
|
|
601
|
+
listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number, options?: any): AxiosPromise<VBAFundingRequestClaimSummaryListVBAResponse> {
|
|
602
|
+
return localVarFp.listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey, options).then((request) => request(axios, basePath));
|
|
617
603
|
},
|
|
618
604
|
/**
|
|
619
605
|
* Create or Update multiple FundingRequestClaim at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -706,13 +692,11 @@ export interface FundingRequestClaimsApiInterface {
|
|
|
706
692
|
* @summary List FundingRequestClaim Summary
|
|
707
693
|
* @param {string} vbasoftwareDatabase Target database
|
|
708
694
|
* @param {number} requestKey Request Key
|
|
709
|
-
* @param {number} [page] Page
|
|
710
|
-
* @param {number} [pageSize] Page Size
|
|
711
695
|
* @param {*} [options] Override http request option.
|
|
712
696
|
* @throws {RequiredError}
|
|
713
697
|
* @memberof FundingRequestClaimsApiInterface
|
|
714
698
|
*/
|
|
715
|
-
listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number,
|
|
699
|
+
listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number, options?: AxiosRequestConfig): AxiosPromise<VBAFundingRequestClaimSummaryListVBAResponse>;
|
|
716
700
|
|
|
717
701
|
/**
|
|
718
702
|
* Create or Update multiple FundingRequestClaim at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -813,14 +797,12 @@ export class FundingRequestClaimsApi extends BaseAPI implements FundingRequestCl
|
|
|
813
797
|
* @summary List FundingRequestClaim Summary
|
|
814
798
|
* @param {string} vbasoftwareDatabase Target database
|
|
815
799
|
* @param {number} requestKey Request Key
|
|
816
|
-
* @param {number} [page] Page
|
|
817
|
-
* @param {number} [pageSize] Page Size
|
|
818
800
|
* @param {*} [options] Override http request option.
|
|
819
801
|
* @throws {RequiredError}
|
|
820
802
|
* @memberof FundingRequestClaimsApi
|
|
821
803
|
*/
|
|
822
|
-
public listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number,
|
|
823
|
-
return FundingRequestClaimsApiFp(this.configuration).listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey,
|
|
804
|
+
public listFundingRequestClaimSummary(vbasoftwareDatabase: string, requestKey: number, options?: AxiosRequestConfig) {
|
|
805
|
+
return FundingRequestClaimsApiFp(this.configuration).listFundingRequestClaimSummary(vbasoftwareDatabase, requestKey, options).then((request) => request(this.axios, this.basePath));
|
|
824
806
|
}
|
|
825
807
|
|
|
826
808
|
/**
|
|
@@ -221,14 +221,14 @@ export const MemberAccountPlansApiAxiosParamCreator = function (configuration?:
|
|
|
221
221
|
* @summary List MemberAccountPlan
|
|
222
222
|
* @param {string} vbasoftwareDatabase Target database
|
|
223
223
|
* @param {string} subscriberID Subscriber ID
|
|
224
|
-
* @param {
|
|
224
|
+
* @param {string} memberSeq Member Seq
|
|
225
225
|
* @param {number} memberAccountKey MemberAccount Key
|
|
226
226
|
* @param {number} [page] Page
|
|
227
227
|
* @param {number} [pageSize] Page Size
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
229
229
|
* @throws {RequiredError}
|
|
230
230
|
*/
|
|
231
|
-
listMemberAccountPlan: async (vbasoftwareDatabase: string, subscriberID: string, memberSeq:
|
|
231
|
+
listMemberAccountPlan: async (vbasoftwareDatabase: string, subscriberID: string, memberSeq: string, memberAccountKey: number, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
232
232
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
233
233
|
assertParamExists('listMemberAccountPlan', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
234
234
|
// verify required parameter 'subscriberID' is not null or undefined
|
|
@@ -470,14 +470,14 @@ export const MemberAccountPlansApiFp = function(configuration?: Configuration) {
|
|
|
470
470
|
* @summary List MemberAccountPlan
|
|
471
471
|
* @param {string} vbasoftwareDatabase Target database
|
|
472
472
|
* @param {string} subscriberID Subscriber ID
|
|
473
|
-
* @param {
|
|
473
|
+
* @param {string} memberSeq Member Seq
|
|
474
474
|
* @param {number} memberAccountKey MemberAccount Key
|
|
475
475
|
* @param {number} [page] Page
|
|
476
476
|
* @param {number} [pageSize] Page Size
|
|
477
477
|
* @param {*} [options] Override http request option.
|
|
478
478
|
* @throws {RequiredError}
|
|
479
479
|
*/
|
|
480
|
-
async listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq:
|
|
480
|
+
async listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq: string, memberAccountKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemberAccountPlanListVBAResponse>> {
|
|
481
481
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listMemberAccountPlan(vbasoftwareDatabase, subscriberID, memberSeq, memberAccountKey, page, pageSize, options);
|
|
482
482
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
483
483
|
},
|
|
@@ -569,14 +569,14 @@ export const MemberAccountPlansApiFactory = function (configuration?: Configurat
|
|
|
569
569
|
* @summary List MemberAccountPlan
|
|
570
570
|
* @param {string} vbasoftwareDatabase Target database
|
|
571
571
|
* @param {string} subscriberID Subscriber ID
|
|
572
|
-
* @param {
|
|
572
|
+
* @param {string} memberSeq Member Seq
|
|
573
573
|
* @param {number} memberAccountKey MemberAccount Key
|
|
574
574
|
* @param {number} [page] Page
|
|
575
575
|
* @param {number} [pageSize] Page Size
|
|
576
576
|
* @param {*} [options] Override http request option.
|
|
577
577
|
* @throws {RequiredError}
|
|
578
578
|
*/
|
|
579
|
-
listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq:
|
|
579
|
+
listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq: string, memberAccountKey: number, page?: number, pageSize?: number, options?: any): AxiosPromise<MemberAccountPlanListVBAResponse> {
|
|
580
580
|
return localVarFp.listMemberAccountPlan(vbasoftwareDatabase, subscriberID, memberSeq, memberAccountKey, page, pageSize, options).then((request) => request(axios, basePath));
|
|
581
581
|
},
|
|
582
582
|
/**
|
|
@@ -664,7 +664,7 @@ export interface MemberAccountPlansApiInterface {
|
|
|
664
664
|
* @summary List MemberAccountPlan
|
|
665
665
|
* @param {string} vbasoftwareDatabase Target database
|
|
666
666
|
* @param {string} subscriberID Subscriber ID
|
|
667
|
-
* @param {
|
|
667
|
+
* @param {string} memberSeq Member Seq
|
|
668
668
|
* @param {number} memberAccountKey MemberAccount Key
|
|
669
669
|
* @param {number} [page] Page
|
|
670
670
|
* @param {number} [pageSize] Page Size
|
|
@@ -672,7 +672,7 @@ export interface MemberAccountPlansApiInterface {
|
|
|
672
672
|
* @throws {RequiredError}
|
|
673
673
|
* @memberof MemberAccountPlansApiInterface
|
|
674
674
|
*/
|
|
675
|
-
listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq:
|
|
675
|
+
listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq: string, memberAccountKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<MemberAccountPlanListVBAResponse>;
|
|
676
676
|
|
|
677
677
|
/**
|
|
678
678
|
* Create or Update multiple MemberAccountPlan at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -765,7 +765,7 @@ export class MemberAccountPlansApi extends BaseAPI implements MemberAccountPlans
|
|
|
765
765
|
* @summary List MemberAccountPlan
|
|
766
766
|
* @param {string} vbasoftwareDatabase Target database
|
|
767
767
|
* @param {string} subscriberID Subscriber ID
|
|
768
|
-
* @param {
|
|
768
|
+
* @param {string} memberSeq Member Seq
|
|
769
769
|
* @param {number} memberAccountKey MemberAccount Key
|
|
770
770
|
* @param {number} [page] Page
|
|
771
771
|
* @param {number} [pageSize] Page Size
|
|
@@ -773,7 +773,7 @@ export class MemberAccountPlansApi extends BaseAPI implements MemberAccountPlans
|
|
|
773
773
|
* @throws {RequiredError}
|
|
774
774
|
* @memberof MemberAccountPlansApi
|
|
775
775
|
*/
|
|
776
|
-
public listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq:
|
|
776
|
+
public listMemberAccountPlan(vbasoftwareDatabase: string, subscriberID: string, memberSeq: string, memberAccountKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
777
777
|
return MemberAccountPlansApiFp(this.configuration).listMemberAccountPlan(vbasoftwareDatabase, subscriberID, memberSeq, memberAccountKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
778
778
|
}
|
|
779
779
|
|
|
@@ -30,6 +30,8 @@ import { PayorAccount } from '../models';
|
|
|
30
30
|
import { PayorAccountListVBAResponse } from '../models';
|
|
31
31
|
// @ts-ignore
|
|
32
32
|
import { PayorAccountVBAResponse } from '../models';
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
import { VBAFundingAccountClaimInfoListVBAResponse } from '../models';
|
|
33
35
|
/**
|
|
34
36
|
* PayorAccountsApi - axios parameter creator
|
|
35
37
|
* @export
|
|
@@ -280,6 +282,58 @@ export const PayorAccountsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
280
282
|
|
|
281
283
|
|
|
282
284
|
|
|
285
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
286
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
287
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
288
|
+
|
|
289
|
+
return {
|
|
290
|
+
url: toPathString(localVarUrlObj),
|
|
291
|
+
options: localVarRequestOptions,
|
|
292
|
+
};
|
|
293
|
+
},
|
|
294
|
+
/**
|
|
295
|
+
* List Claims Information from a Payor\'s Funding Account
|
|
296
|
+
* @summary List Claims Information from a Payor\'s Funding Account
|
|
297
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
298
|
+
* @param {string} payorId Payor ID
|
|
299
|
+
* @param {number} accountKey Payor\'s Funding Account Key
|
|
300
|
+
* @param {*} [options] Override http request option.
|
|
301
|
+
* @throws {RequiredError}
|
|
302
|
+
*/
|
|
303
|
+
listPayorFundingAccountClaimsInformation: async (vbasoftwareDatabase: string, payorId: string, accountKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
304
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
305
|
+
assertParamExists('listPayorFundingAccountClaimsInformation', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
306
|
+
// verify required parameter 'payorId' is not null or undefined
|
|
307
|
+
assertParamExists('listPayorFundingAccountClaimsInformation', 'payorId', payorId)
|
|
308
|
+
// verify required parameter 'accountKey' is not null or undefined
|
|
309
|
+
assertParamExists('listPayorFundingAccountClaimsInformation', 'accountKey', accountKey)
|
|
310
|
+
const localVarPath = `/payor/{payorId}/funding-accounts/{accountKey}/claims-info`
|
|
311
|
+
.replace(`{${"payorId"}}`, encodeURIComponent(String(payorId)))
|
|
312
|
+
.replace(`{${"accountKey"}}`, encodeURIComponent(String(accountKey)));
|
|
313
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
314
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
315
|
+
let baseOptions;
|
|
316
|
+
if (configuration) {
|
|
317
|
+
baseOptions = configuration.baseOptions;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
321
|
+
const localVarHeaderParameter = {} as any;
|
|
322
|
+
const localVarQueryParameter = {} as any;
|
|
323
|
+
|
|
324
|
+
// authentication apiKeyAuth required
|
|
325
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
326
|
+
|
|
327
|
+
// authentication bearerAuth required
|
|
328
|
+
// http bearer authentication required
|
|
329
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
330
|
+
|
|
331
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
332
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
283
337
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
284
338
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
285
339
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -465,6 +519,19 @@ export const PayorAccountsApiFp = function(configuration?: Configuration) {
|
|
|
465
519
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options);
|
|
466
520
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
467
521
|
},
|
|
522
|
+
/**
|
|
523
|
+
* List Claims Information from a Payor\'s Funding Account
|
|
524
|
+
* @summary List Claims Information from a Payor\'s Funding Account
|
|
525
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
526
|
+
* @param {string} payorId Payor ID
|
|
527
|
+
* @param {number} accountKey Payor\'s Funding Account Key
|
|
528
|
+
* @param {*} [options] Override http request option.
|
|
529
|
+
* @throws {RequiredError}
|
|
530
|
+
*/
|
|
531
|
+
async listPayorFundingAccountClaimsInformation(vbasoftwareDatabase: string, payorId: string, accountKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAFundingAccountClaimInfoListVBAResponse>> {
|
|
532
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPayorFundingAccountClaimsInformation(vbasoftwareDatabase, payorId, accountKey, options);
|
|
533
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
534
|
+
},
|
|
468
535
|
/**
|
|
469
536
|
* Create or Update multiple PayorAccount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
470
537
|
* @summary Create or Update Batch PayorAccount
|
|
@@ -557,6 +624,18 @@ export const PayorAccountsApiFactory = function (configuration?: Configuration,
|
|
|
557
624
|
listPayorAccount(vbasoftwareDatabase: string, payorID?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<PayorAccountListVBAResponse> {
|
|
558
625
|
return localVarFp.listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options).then((request) => request(axios, basePath));
|
|
559
626
|
},
|
|
627
|
+
/**
|
|
628
|
+
* List Claims Information from a Payor\'s Funding Account
|
|
629
|
+
* @summary List Claims Information from a Payor\'s Funding Account
|
|
630
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
631
|
+
* @param {string} payorId Payor ID
|
|
632
|
+
* @param {number} accountKey Payor\'s Funding Account Key
|
|
633
|
+
* @param {*} [options] Override http request option.
|
|
634
|
+
* @throws {RequiredError}
|
|
635
|
+
*/
|
|
636
|
+
listPayorFundingAccountClaimsInformation(vbasoftwareDatabase: string, payorId: string, accountKey: number, options?: any): AxiosPromise<VBAFundingAccountClaimInfoListVBAResponse> {
|
|
637
|
+
return localVarFp.listPayorFundingAccountClaimsInformation(vbasoftwareDatabase, payorId, accountKey, options).then((request) => request(axios, basePath));
|
|
638
|
+
},
|
|
560
639
|
/**
|
|
561
640
|
* Create or Update multiple PayorAccount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
562
641
|
* @summary Create or Update Batch PayorAccount
|
|
@@ -646,6 +725,18 @@ export interface PayorAccountsApiInterface {
|
|
|
646
725
|
*/
|
|
647
726
|
listPayorAccount(vbasoftwareDatabase: string, payorID?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<PayorAccountListVBAResponse>;
|
|
648
727
|
|
|
728
|
+
/**
|
|
729
|
+
* List Claims Information from a Payor\'s Funding Account
|
|
730
|
+
* @summary List Claims Information from a Payor\'s Funding Account
|
|
731
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
732
|
+
* @param {string} payorId Payor ID
|
|
733
|
+
* @param {number} accountKey Payor\'s Funding Account Key
|
|
734
|
+
* @param {*} [options] Override http request option.
|
|
735
|
+
* @throws {RequiredError}
|
|
736
|
+
* @memberof PayorAccountsApiInterface
|
|
737
|
+
*/
|
|
738
|
+
listPayorFundingAccountClaimsInformation(vbasoftwareDatabase: string, payorId: string, accountKey: number, options?: AxiosRequestConfig): AxiosPromise<VBAFundingAccountClaimInfoListVBAResponse>;
|
|
739
|
+
|
|
649
740
|
/**
|
|
650
741
|
* Create or Update multiple PayorAccount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
651
742
|
* @summary Create or Update Batch PayorAccount
|
|
@@ -745,6 +836,20 @@ export class PayorAccountsApi extends BaseAPI implements PayorAccountsApiInterfa
|
|
|
745
836
|
return PayorAccountsApiFp(this.configuration).listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
746
837
|
}
|
|
747
838
|
|
|
839
|
+
/**
|
|
840
|
+
* List Claims Information from a Payor\'s Funding Account
|
|
841
|
+
* @summary List Claims Information from a Payor\'s Funding Account
|
|
842
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
843
|
+
* @param {string} payorId Payor ID
|
|
844
|
+
* @param {number} accountKey Payor\'s Funding Account Key
|
|
845
|
+
* @param {*} [options] Override http request option.
|
|
846
|
+
* @throws {RequiredError}
|
|
847
|
+
* @memberof PayorAccountsApi
|
|
848
|
+
*/
|
|
849
|
+
public listPayorFundingAccountClaimsInformation(vbasoftwareDatabase: string, payorId: string, accountKey: number, options?: AxiosRequestConfig) {
|
|
850
|
+
return PayorAccountsApiFp(this.configuration).listPayorFundingAccountClaimsInformation(vbasoftwareDatabase, payorId, accountKey, options).then((request) => request(this.axios, this.basePath));
|
|
851
|
+
}
|
|
852
|
+
|
|
748
853
|
/**
|
|
749
854
|
* Create or Update multiple PayorAccount at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
750
855
|
* @summary Create or Update Batch PayorAccount
|
|
@@ -28,6 +28,8 @@ import { ReinsContractTrans } from '../models';
|
|
|
28
28
|
import { ReinsContractTransListVBAResponse } from '../models';
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { ReinsContractTransVBAResponse } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
import { VBAReinsContractTransactionSummaryListVBAResponse } from '../models';
|
|
31
33
|
/**
|
|
32
34
|
* ReinsuranceContractTransactionsApi - axios parameter creator
|
|
33
35
|
* @export
|
|
@@ -241,6 +243,54 @@ export const ReinsuranceContractTransactionsApiAxiosParamCreator = function (con
|
|
|
241
243
|
|
|
242
244
|
|
|
243
245
|
|
|
246
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
247
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
248
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
249
|
+
|
|
250
|
+
return {
|
|
251
|
+
url: toPathString(localVarUrlObj),
|
|
252
|
+
options: localVarRequestOptions,
|
|
253
|
+
};
|
|
254
|
+
},
|
|
255
|
+
/**
|
|
256
|
+
* Lists all ReinsContractTransactions in a Summary for the given reinsContractKey
|
|
257
|
+
* @summary List ReinsContractTrans
|
|
258
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
259
|
+
* @param {number} reinsContractKey ReinsContract Key
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
*/
|
|
263
|
+
listVBAReinsContractTransactionSummary: async (vbasoftwareDatabase: string, reinsContractKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
264
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
265
|
+
assertParamExists('listVBAReinsContractTransactionSummary', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
266
|
+
// verify required parameter 'reinsContractKey' is not null or undefined
|
|
267
|
+
assertParamExists('listVBAReinsContractTransactionSummary', 'reinsContractKey', reinsContractKey)
|
|
268
|
+
const localVarPath = `/reinsurance-contracts/{reinsContractKey}/transactions-summary`
|
|
269
|
+
.replace(`{${"reinsContractKey"}}`, encodeURIComponent(String(reinsContractKey)));
|
|
270
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
271
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
272
|
+
let baseOptions;
|
|
273
|
+
if (configuration) {
|
|
274
|
+
baseOptions = configuration.baseOptions;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
278
|
+
const localVarHeaderParameter = {} as any;
|
|
279
|
+
const localVarQueryParameter = {} as any;
|
|
280
|
+
|
|
281
|
+
// authentication apiKeyAuth required
|
|
282
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
283
|
+
|
|
284
|
+
// authentication bearerAuth required
|
|
285
|
+
// http bearer authentication required
|
|
286
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
287
|
+
|
|
288
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
289
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
244
294
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
245
295
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
246
296
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -425,6 +475,18 @@ export const ReinsuranceContractTransactionsApiFp = function(configuration?: Con
|
|
|
425
475
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listReinsContractTrans(vbasoftwareDatabase, reinsContractKey, page, pageSize, options);
|
|
426
476
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
477
|
},
|
|
478
|
+
/**
|
|
479
|
+
* Lists all ReinsContractTransactions in a Summary for the given reinsContractKey
|
|
480
|
+
* @summary List ReinsContractTrans
|
|
481
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
482
|
+
* @param {number} reinsContractKey ReinsContract Key
|
|
483
|
+
* @param {*} [options] Override http request option.
|
|
484
|
+
* @throws {RequiredError}
|
|
485
|
+
*/
|
|
486
|
+
async listVBAReinsContractTransactionSummary(vbasoftwareDatabase: string, reinsContractKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReinsContractTransactionSummaryListVBAResponse>> {
|
|
487
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVBAReinsContractTransactionSummary(vbasoftwareDatabase, reinsContractKey, options);
|
|
488
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
489
|
+
},
|
|
428
490
|
/**
|
|
429
491
|
* Create or Update multiple ReinsContractTrans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
430
492
|
* @summary Create or Update Batch ReinsContractTrans
|
|
@@ -511,6 +573,17 @@ export const ReinsuranceContractTransactionsApiFactory = function (configuration
|
|
|
511
573
|
listReinsContractTrans(vbasoftwareDatabase: string, reinsContractKey: number, page?: number, pageSize?: number, options?: any): AxiosPromise<ReinsContractTransListVBAResponse> {
|
|
512
574
|
return localVarFp.listReinsContractTrans(vbasoftwareDatabase, reinsContractKey, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
575
|
},
|
|
576
|
+
/**
|
|
577
|
+
* Lists all ReinsContractTransactions in a Summary for the given reinsContractKey
|
|
578
|
+
* @summary List ReinsContractTrans
|
|
579
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
580
|
+
* @param {number} reinsContractKey ReinsContract Key
|
|
581
|
+
* @param {*} [options] Override http request option.
|
|
582
|
+
* @throws {RequiredError}
|
|
583
|
+
*/
|
|
584
|
+
listVBAReinsContractTransactionSummary(vbasoftwareDatabase: string, reinsContractKey: number, options?: any): AxiosPromise<VBAReinsContractTransactionSummaryListVBAResponse> {
|
|
585
|
+
return localVarFp.listVBAReinsContractTransactionSummary(vbasoftwareDatabase, reinsContractKey, options).then((request) => request(axios, basePath));
|
|
586
|
+
},
|
|
514
587
|
/**
|
|
515
588
|
* Create or Update multiple ReinsContractTrans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
516
589
|
* @summary Create or Update Batch ReinsContractTrans
|
|
@@ -594,6 +667,17 @@ export interface ReinsuranceContractTransactionsApiInterface {
|
|
|
594
667
|
*/
|
|
595
668
|
listReinsContractTrans(vbasoftwareDatabase: string, reinsContractKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReinsContractTransListVBAResponse>;
|
|
596
669
|
|
|
670
|
+
/**
|
|
671
|
+
* Lists all ReinsContractTransactions in a Summary for the given reinsContractKey
|
|
672
|
+
* @summary List ReinsContractTrans
|
|
673
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
674
|
+
* @param {number} reinsContractKey ReinsContract Key
|
|
675
|
+
* @param {*} [options] Override http request option.
|
|
676
|
+
* @throws {RequiredError}
|
|
677
|
+
* @memberof ReinsuranceContractTransactionsApiInterface
|
|
678
|
+
*/
|
|
679
|
+
listVBAReinsContractTransactionSummary(vbasoftwareDatabase: string, reinsContractKey: number, options?: AxiosRequestConfig): AxiosPromise<VBAReinsContractTransactionSummaryListVBAResponse>;
|
|
680
|
+
|
|
597
681
|
/**
|
|
598
682
|
* Create or Update multiple ReinsContractTrans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
599
683
|
* @summary Create or Update Batch ReinsContractTrans
|
|
@@ -685,6 +769,19 @@ export class ReinsuranceContractTransactionsApi extends BaseAPI implements Reins
|
|
|
685
769
|
return ReinsuranceContractTransactionsApiFp(this.configuration).listReinsContractTrans(vbasoftwareDatabase, reinsContractKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
770
|
}
|
|
687
771
|
|
|
772
|
+
/**
|
|
773
|
+
* Lists all ReinsContractTransactions in a Summary for the given reinsContractKey
|
|
774
|
+
* @summary List ReinsContractTrans
|
|
775
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
776
|
+
* @param {number} reinsContractKey ReinsContract Key
|
|
777
|
+
* @param {*} [options] Override http request option.
|
|
778
|
+
* @throws {RequiredError}
|
|
779
|
+
* @memberof ReinsuranceContractTransactionsApi
|
|
780
|
+
*/
|
|
781
|
+
public listVBAReinsContractTransactionSummary(vbasoftwareDatabase: string, reinsContractKey: number, options?: AxiosRequestConfig) {
|
|
782
|
+
return ReinsuranceContractTransactionsApiFp(this.configuration).listVBAReinsContractTransactionSummary(vbasoftwareDatabase, reinsContractKey, options).then((request) => request(this.axios, this.basePath));
|
|
783
|
+
}
|
|
784
|
+
|
|
688
785
|
/**
|
|
689
786
|
* Create or Update multiple ReinsContractTrans at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
690
787
|
* @summary Create or Update Batch ReinsContractTrans
|
package/api/user-api.ts
CHANGED
|
@@ -449,6 +449,57 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
449
449
|
|
|
450
450
|
|
|
451
451
|
|
|
452
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
453
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
454
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
455
|
+
|
|
456
|
+
return {
|
|
457
|
+
url: toPathString(localVarUrlObj),
|
|
458
|
+
options: localVarRequestOptions,
|
|
459
|
+
};
|
|
460
|
+
},
|
|
461
|
+
/**
|
|
462
|
+
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
463
|
+
* @summary Refresh User Tokens
|
|
464
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
465
|
+
* @param {string} refreshToken Refresh Token
|
|
466
|
+
* @param {*} [options] Override http request option.
|
|
467
|
+
* @throws {RequiredError}
|
|
468
|
+
*/
|
|
469
|
+
refreshUserTokens: async (vbasoftwareDatabase: string, refreshToken: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
470
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
471
|
+
assertParamExists('refreshUserTokens', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
472
|
+
// verify required parameter 'refreshToken' is not null or undefined
|
|
473
|
+
assertParamExists('refreshUserTokens', 'refreshToken', refreshToken)
|
|
474
|
+
const localVarPath = `/user-refresh-tokens`;
|
|
475
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
476
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
477
|
+
let baseOptions;
|
|
478
|
+
if (configuration) {
|
|
479
|
+
baseOptions = configuration.baseOptions;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
483
|
+
const localVarHeaderParameter = {} as any;
|
|
484
|
+
const localVarQueryParameter = {} as any;
|
|
485
|
+
|
|
486
|
+
// authentication apiKeyAuth required
|
|
487
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
488
|
+
|
|
489
|
+
// authentication bearerAuth required
|
|
490
|
+
// http bearer authentication required
|
|
491
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
492
|
+
|
|
493
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
494
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
if (refreshToken !== undefined && refreshToken !== null) {
|
|
498
|
+
localVarHeaderParameter['refresh-token'] = String(refreshToken);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
452
503
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
453
504
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
454
505
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -891,6 +942,18 @@ export const UserApiFp = function(configuration?: Configuration) {
|
|
|
891
942
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(vbasoftwareDatabase, options);
|
|
892
943
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
893
944
|
},
|
|
945
|
+
/**
|
|
946
|
+
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
947
|
+
* @summary Refresh User Tokens
|
|
948
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
949
|
+
* @param {string} refreshToken Refresh Token
|
|
950
|
+
* @param {*} [options] Override http request option.
|
|
951
|
+
* @throws {RequiredError}
|
|
952
|
+
*/
|
|
953
|
+
async refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserAuthenticationResponseVBAResponse>> {
|
|
954
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.refreshUserTokens(vbasoftwareDatabase, refreshToken, options);
|
|
955
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
956
|
+
},
|
|
894
957
|
/**
|
|
895
958
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
896
959
|
* @summary Create or Update Batch Users
|
|
@@ -1069,6 +1132,17 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1069
1132
|
listUsers(vbasoftwareDatabase: string, options?: any): AxiosPromise<UsersListVBAResponse> {
|
|
1070
1133
|
return localVarFp.listUsers(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
1071
1134
|
},
|
|
1135
|
+
/**
|
|
1136
|
+
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1137
|
+
* @summary Refresh User Tokens
|
|
1138
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1139
|
+
* @param {string} refreshToken Refresh Token
|
|
1140
|
+
* @param {*} [options] Override http request option.
|
|
1141
|
+
* @throws {RequiredError}
|
|
1142
|
+
*/
|
|
1143
|
+
refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: any): AxiosPromise<UserAuthenticationResponseVBAResponse> {
|
|
1144
|
+
return localVarFp.refreshUserTokens(vbasoftwareDatabase, refreshToken, options).then((request) => request(axios, basePath));
|
|
1145
|
+
},
|
|
1072
1146
|
/**
|
|
1073
1147
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
1074
1148
|
* @summary Create or Update Batch Users
|
|
@@ -1240,6 +1314,17 @@ export interface UserApiInterface {
|
|
|
1240
1314
|
*/
|
|
1241
1315
|
listUsers(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<UsersListVBAResponse>;
|
|
1242
1316
|
|
|
1317
|
+
/**
|
|
1318
|
+
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1319
|
+
* @summary Refresh User Tokens
|
|
1320
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1321
|
+
* @param {string} refreshToken Refresh Token
|
|
1322
|
+
* @param {*} [options] Override http request option.
|
|
1323
|
+
* @throws {RequiredError}
|
|
1324
|
+
* @memberof UserApiInterface
|
|
1325
|
+
*/
|
|
1326
|
+
refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig): AxiosPromise<UserAuthenticationResponseVBAResponse>;
|
|
1327
|
+
|
|
1243
1328
|
/**
|
|
1244
1329
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
1245
1330
|
* @summary Create or Update Batch Users
|
|
@@ -1427,6 +1512,19 @@ export class UserApi extends BaseAPI implements UserApiInterface {
|
|
|
1427
1512
|
return UserApiFp(this.configuration).listUsers(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
1428
1513
|
}
|
|
1429
1514
|
|
|
1515
|
+
/**
|
|
1516
|
+
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1517
|
+
* @summary Refresh User Tokens
|
|
1518
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1519
|
+
* @param {string} refreshToken Refresh Token
|
|
1520
|
+
* @param {*} [options] Override http request option.
|
|
1521
|
+
* @throws {RequiredError}
|
|
1522
|
+
* @memberof UserApi
|
|
1523
|
+
*/
|
|
1524
|
+
public refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig) {
|
|
1525
|
+
return UserApiFp(this.configuration).refreshUserTokens(vbasoftwareDatabase, refreshToken, options).then((request) => request(this.axios, this.basePath));
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1430
1528
|
/**
|
|
1431
1529
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
1432
1530
|
* @summary Create or Update Batch Users
|
package/api.ts
CHANGED
|
@@ -167,7 +167,9 @@ export * from './api/claim-batch-api';
|
|
|
167
167
|
export * from './api/claim-batch-detail-benefits-api';
|
|
168
168
|
export * from './api/claim-batch-details-api';
|
|
169
169
|
export * from './api/claim-batch-life-benefits-api';
|
|
170
|
+
export * from './api/claim-batch-logs-api';
|
|
170
171
|
export * from './api/claim-batch-plans-api';
|
|
172
|
+
export * from './api/claim-batch-references-api';
|
|
171
173
|
export * from './api/claim-batch-types-api';
|
|
172
174
|
export * from './api/claim-batches-api';
|
|
173
175
|
export * from './api/claim-batches-statuses-api';
|
|
@@ -314,6 +316,10 @@ export * from './api/employer-sizes-api';
|
|
|
314
316
|
export * from './api/enrollment-accumulators-api';
|
|
315
317
|
export * from './api/enrollment-waiting-period-subscribers-api';
|
|
316
318
|
export * from './api/enrollment-waiting-periods-api';
|
|
319
|
+
export * from './api/error-category-api';
|
|
320
|
+
export * from './api/error-category-types-api';
|
|
321
|
+
export * from './api/error-severity-api';
|
|
322
|
+
export * from './api/error-type-api';
|
|
317
323
|
export * from './api/ethnicity-codes-api';
|
|
318
324
|
export * from './api/event-args-api';
|
|
319
325
|
export * from './api/event-priority-levels-api';
|
|
@@ -325,7 +331,7 @@ export * from './api/expense-types-api';
|
|
|
325
331
|
export * from './api/explaination-code-categories-api';
|
|
326
332
|
export * from './api/explanation-codes-api';
|
|
327
333
|
export * from './api/external-idapi';
|
|
328
|
-
export * from './api/fee-schedule-
|
|
334
|
+
export * from './api/fee-schedule-anesthesias-api';
|
|
329
335
|
export * from './api/fee-schedule-details-api';
|
|
330
336
|
export * from './api/fee-schedule-effective-dates-api';
|
|
331
337
|
export * from './api/fee-schedule-modifier-discounts-api';
|