@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250321.1 → 1.20250404.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 +4 -0
- package/api/adv-billing-api.ts +96 -0
- package/api/adv-claim-api.ts +244 -0
- package/api/premium-invoices-api.ts +96 -0
- package/api/report-static-lists-api.ts +176 -0
- package/api/vbareports-api.ts +88 -0
- package/models/covered-benefit.ts +9 -0
- package/models/database-connection.ts +6 -0
- package/models/index.ts +4 -0
- package/models/reins-contract.ts +1 -1
- package/models/vbaclaim-funding-member-pay-to-amount-list-vbaresponse.ts +51 -0
- package/models/vbaclaim-funding-member-pay-to-amount.ts +54 -0
- package/models/vbaclaim-funding-pay-to-amount-list-vbaresponse.ts +51 -0
- package/models/vbaclaim-funding-pay-to-amount.ts +42 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -3393,6 +3393,10 @@ models/vbacdcsubenrollment-rider.ts
|
|
|
3393
3393
|
models/vbacdcsubenrollment.ts
|
|
3394
3394
|
models/vbacdcsubscribers-list-vbaresponse.ts
|
|
3395
3395
|
models/vbacdcsubscribers.ts
|
|
3396
|
+
models/vbaclaim-funding-member-pay-to-amount-list-vbaresponse.ts
|
|
3397
|
+
models/vbaclaim-funding-member-pay-to-amount.ts
|
|
3398
|
+
models/vbaclaim-funding-pay-to-amount-list-vbaresponse.ts
|
|
3399
|
+
models/vbaclaim-funding-pay-to-amount.ts
|
|
3396
3400
|
models/vbaclaim-timeline-list-vbaresponse.ts
|
|
3397
3401
|
models/vbaclaim-timeline.ts
|
|
3398
3402
|
models/vbaclient-environment-list-vbaresponse.ts
|
package/api/adv-billing-api.ts
CHANGED
|
@@ -1953,6 +1953,53 @@ export const AdvBillingApiAxiosParamCreator = function (configuration?: Configur
|
|
|
1953
1953
|
|
|
1954
1954
|
|
|
1955
1955
|
|
|
1956
|
+
if (vbasoftwareDatabase != null) {
|
|
1957
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
1958
|
+
}
|
|
1959
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1960
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1961
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1962
|
+
|
|
1963
|
+
return {
|
|
1964
|
+
url: toPathString(localVarUrlObj),
|
|
1965
|
+
options: localVarRequestOptions,
|
|
1966
|
+
};
|
|
1967
|
+
},
|
|
1968
|
+
/**
|
|
1969
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
1970
|
+
* @summary Set Paid Through by Invoice
|
|
1971
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1972
|
+
* @param {number} invoiceKey Invoice Key
|
|
1973
|
+
* @param {*} [options] Override http request option.
|
|
1974
|
+
* @throws {RequiredError}
|
|
1975
|
+
*/
|
|
1976
|
+
setPaidThroughByInvoice: async (vbasoftwareDatabase: string, invoiceKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1977
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
1978
|
+
assertParamExists('setPaidThroughByInvoice', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
1979
|
+
// verify required parameter 'invoiceKey' is not null or undefined
|
|
1980
|
+
assertParamExists('setPaidThroughByInvoice', 'invoiceKey', invoiceKey)
|
|
1981
|
+
const localVarPath = `/set-paid-through-by-invoice/{invoiceKey}`
|
|
1982
|
+
.replace(`{${"invoiceKey"}}`, encodeURIComponent(String(invoiceKey)));
|
|
1983
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1984
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1985
|
+
let baseOptions;
|
|
1986
|
+
if (configuration) {
|
|
1987
|
+
baseOptions = configuration.baseOptions;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
1991
|
+
const localVarHeaderParameter = {} as any;
|
|
1992
|
+
const localVarQueryParameter = {} as any;
|
|
1993
|
+
|
|
1994
|
+
// authentication apiKeyAuth required
|
|
1995
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
1996
|
+
|
|
1997
|
+
// authentication bearerAuth required
|
|
1998
|
+
// http bearer authentication required
|
|
1999
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2000
|
+
|
|
2001
|
+
|
|
2002
|
+
|
|
1956
2003
|
if (vbasoftwareDatabase != null) {
|
|
1957
2004
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
1958
2005
|
}
|
|
@@ -2558,6 +2605,20 @@ export const AdvBillingApiFp = function(configuration?: Configuration) {
|
|
|
2558
2605
|
const localVarOperationServerBasePath = operationServerMap['AdvBillingApi.resetSelfAdminInvoice']?.[localVarOperationServerIndex]?.url;
|
|
2559
2606
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2560
2607
|
},
|
|
2608
|
+
/**
|
|
2609
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
2610
|
+
* @summary Set Paid Through by Invoice
|
|
2611
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2612
|
+
* @param {number} invoiceKey Invoice Key
|
|
2613
|
+
* @param {*} [options] Override http request option.
|
|
2614
|
+
* @throws {RequiredError}
|
|
2615
|
+
*/
|
|
2616
|
+
async setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
2617
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options);
|
|
2618
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2619
|
+
const localVarOperationServerBasePath = operationServerMap['AdvBillingApi.setPaidThroughByInvoice']?.[localVarOperationServerIndex]?.url;
|
|
2620
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2621
|
+
},
|
|
2561
2622
|
/**
|
|
2562
2623
|
* Based on the supplied PremPayment_Key, remove this payment from any invoice it is attached, and then recalc the received on each affected invoice.
|
|
2563
2624
|
* @summary Undo an Applied Premium Payment
|
|
@@ -3007,6 +3068,17 @@ export const AdvBillingApiFactory = function (configuration?: Configuration, bas
|
|
|
3007
3068
|
resetSelfAdminInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3008
3069
|
return localVarFp.resetSelfAdminInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(axios, basePath));
|
|
3009
3070
|
},
|
|
3071
|
+
/**
|
|
3072
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
3073
|
+
* @summary Set Paid Through by Invoice
|
|
3074
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
3075
|
+
* @param {number} invoiceKey Invoice Key
|
|
3076
|
+
* @param {*} [options] Override http request option.
|
|
3077
|
+
* @throws {RequiredError}
|
|
3078
|
+
*/
|
|
3079
|
+
setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3080
|
+
return localVarFp.setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(axios, basePath));
|
|
3081
|
+
},
|
|
3010
3082
|
/**
|
|
3011
3083
|
* Based on the supplied PremPayment_Key, remove this payment from any invoice it is attached, and then recalc the received on each affected invoice.
|
|
3012
3084
|
* @summary Undo an Applied Premium Payment
|
|
@@ -3452,6 +3524,17 @@ export interface AdvBillingApiInterface {
|
|
|
3452
3524
|
*/
|
|
3453
3525
|
resetSelfAdminInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3454
3526
|
|
|
3527
|
+
/**
|
|
3528
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
3529
|
+
* @summary Set Paid Through by Invoice
|
|
3530
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
3531
|
+
* @param {number} invoiceKey Invoice Key
|
|
3532
|
+
* @param {*} [options] Override http request option.
|
|
3533
|
+
* @throws {RequiredError}
|
|
3534
|
+
* @memberof AdvBillingApiInterface
|
|
3535
|
+
*/
|
|
3536
|
+
setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3537
|
+
|
|
3455
3538
|
/**
|
|
3456
3539
|
* Based on the supplied PremPayment_Key, remove this payment from any invoice it is attached, and then recalc the received on each affected invoice.
|
|
3457
3540
|
* @summary Undo an Applied Premium Payment
|
|
@@ -3971,6 +4054,19 @@ export class AdvBillingApi extends BaseAPI implements AdvBillingApiInterface {
|
|
|
3971
4054
|
return AdvBillingApiFp(this.configuration).resetSelfAdminInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(this.axios, this.basePath));
|
|
3972
4055
|
}
|
|
3973
4056
|
|
|
4057
|
+
/**
|
|
4058
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
4059
|
+
* @summary Set Paid Through by Invoice
|
|
4060
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
4061
|
+
* @param {number} invoiceKey Invoice Key
|
|
4062
|
+
* @param {*} [options] Override http request option.
|
|
4063
|
+
* @throws {RequiredError}
|
|
4064
|
+
* @memberof AdvBillingApi
|
|
4065
|
+
*/
|
|
4066
|
+
public setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig) {
|
|
4067
|
+
return AdvBillingApiFp(this.configuration).setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(this.axios, this.basePath));
|
|
4068
|
+
}
|
|
4069
|
+
|
|
3974
4070
|
/**
|
|
3975
4071
|
* Based on the supplied PremPayment_Key, remove this payment from any invoice it is attached, and then recalc the received on each affected invoice.
|
|
3976
4072
|
* @summary Undo an Applied Premium Payment
|
package/api/adv-claim-api.ts
CHANGED
|
@@ -42,6 +42,10 @@ import type { StringVBAResponse } from '../models';
|
|
|
42
42
|
// @ts-ignore
|
|
43
43
|
import type { SuspenseClaimList } from '../models';
|
|
44
44
|
// @ts-ignore
|
|
45
|
+
import type { VBAClaimFundingMemberPayToAmountListVBAResponse } from '../models';
|
|
46
|
+
// @ts-ignore
|
|
47
|
+
import type { VBAClaimFundingPayToAmountListVBAResponse } from '../models';
|
|
48
|
+
// @ts-ignore
|
|
45
49
|
import type { VBADisabilityAdvisor } from '../models';
|
|
46
50
|
/**
|
|
47
51
|
* AdvClaimApi - axios parameter creator
|
|
@@ -788,6 +792,132 @@ export const AdvClaimApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
788
792
|
options: localVarRequestOptions,
|
|
789
793
|
};
|
|
790
794
|
},
|
|
795
|
+
/**
|
|
796
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To) and grouped by Member.
|
|
797
|
+
* @summary List Pay to Amounts for Claim Funding by Member
|
|
798
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
799
|
+
* @param {string} payorId Payor ID
|
|
800
|
+
* @param {number} accountKey Account Key
|
|
801
|
+
* @param {Array<number>} requestBody
|
|
802
|
+
* @param {*} [options] Override http request option.
|
|
803
|
+
* @throws {RequiredError}
|
|
804
|
+
*/
|
|
805
|
+
listClaimFundingMemberPayToAmount: async (vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
806
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
807
|
+
assertParamExists('listClaimFundingMemberPayToAmount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
808
|
+
// verify required parameter 'payorId' is not null or undefined
|
|
809
|
+
assertParamExists('listClaimFundingMemberPayToAmount', 'payorId', payorId)
|
|
810
|
+
// verify required parameter 'accountKey' is not null or undefined
|
|
811
|
+
assertParamExists('listClaimFundingMemberPayToAmount', 'accountKey', accountKey)
|
|
812
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
813
|
+
assertParamExists('listClaimFundingMemberPayToAmount', 'requestBody', requestBody)
|
|
814
|
+
const localVarPath = `/list-claim-funding-member-pay-to-amount`;
|
|
815
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
816
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
817
|
+
let baseOptions;
|
|
818
|
+
if (configuration) {
|
|
819
|
+
baseOptions = configuration.baseOptions;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
823
|
+
const localVarHeaderParameter = {} as any;
|
|
824
|
+
const localVarQueryParameter = {} as any;
|
|
825
|
+
|
|
826
|
+
// authentication apiKeyAuth required
|
|
827
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
828
|
+
|
|
829
|
+
// authentication bearerAuth required
|
|
830
|
+
// http bearer authentication required
|
|
831
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
832
|
+
|
|
833
|
+
if (payorId !== undefined) {
|
|
834
|
+
localVarQueryParameter['payorId'] = payorId;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
if (accountKey !== undefined) {
|
|
838
|
+
localVarQueryParameter['accountKey'] = accountKey;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
844
|
+
|
|
845
|
+
if (vbasoftwareDatabase != null) {
|
|
846
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
847
|
+
}
|
|
848
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
849
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
850
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
851
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
852
|
+
|
|
853
|
+
return {
|
|
854
|
+
url: toPathString(localVarUrlObj),
|
|
855
|
+
options: localVarRequestOptions,
|
|
856
|
+
};
|
|
857
|
+
},
|
|
858
|
+
/**
|
|
859
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To).
|
|
860
|
+
* @summary List Pay to Amounts for Claim Funding
|
|
861
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
862
|
+
* @param {string} payorId Payor ID
|
|
863
|
+
* @param {number} accountKey Account Key
|
|
864
|
+
* @param {Array<number>} requestBody
|
|
865
|
+
* @param {*} [options] Override http request option.
|
|
866
|
+
* @throws {RequiredError}
|
|
867
|
+
*/
|
|
868
|
+
listClaimFundingPayToAmount: async (vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
869
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
870
|
+
assertParamExists('listClaimFundingPayToAmount', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
871
|
+
// verify required parameter 'payorId' is not null or undefined
|
|
872
|
+
assertParamExists('listClaimFundingPayToAmount', 'payorId', payorId)
|
|
873
|
+
// verify required parameter 'accountKey' is not null or undefined
|
|
874
|
+
assertParamExists('listClaimFundingPayToAmount', 'accountKey', accountKey)
|
|
875
|
+
// verify required parameter 'requestBody' is not null or undefined
|
|
876
|
+
assertParamExists('listClaimFundingPayToAmount', 'requestBody', requestBody)
|
|
877
|
+
const localVarPath = `/list-claim-funding-pay-to-amount`;
|
|
878
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
879
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
880
|
+
let baseOptions;
|
|
881
|
+
if (configuration) {
|
|
882
|
+
baseOptions = configuration.baseOptions;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
886
|
+
const localVarHeaderParameter = {} as any;
|
|
887
|
+
const localVarQueryParameter = {} as any;
|
|
888
|
+
|
|
889
|
+
// authentication apiKeyAuth required
|
|
890
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
891
|
+
|
|
892
|
+
// authentication bearerAuth required
|
|
893
|
+
// http bearer authentication required
|
|
894
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
895
|
+
|
|
896
|
+
if (payorId !== undefined) {
|
|
897
|
+
localVarQueryParameter['payorId'] = payorId;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
if (accountKey !== undefined) {
|
|
901
|
+
localVarQueryParameter['accountKey'] = accountKey;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
907
|
+
|
|
908
|
+
if (vbasoftwareDatabase != null) {
|
|
909
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
910
|
+
}
|
|
911
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
912
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
913
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
914
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
915
|
+
|
|
916
|
+
return {
|
|
917
|
+
url: toPathString(localVarUrlObj),
|
|
918
|
+
options: localVarRequestOptions,
|
|
919
|
+
};
|
|
920
|
+
},
|
|
791
921
|
/**
|
|
792
922
|
* Return a selected list of claims to batch.
|
|
793
923
|
* @summary Return Claim(s) to Batch
|
|
@@ -1200,6 +1330,38 @@ export const AdvClaimApiFp = function(configuration?: Configuration) {
|
|
|
1200
1330
|
const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.listAdjudicateBenefitMatch']?.[localVarOperationServerIndex]?.url;
|
|
1201
1331
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1202
1332
|
},
|
|
1333
|
+
/**
|
|
1334
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To) and grouped by Member.
|
|
1335
|
+
* @summary List Pay to Amounts for Claim Funding by Member
|
|
1336
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1337
|
+
* @param {string} payorId Payor ID
|
|
1338
|
+
* @param {number} accountKey Account Key
|
|
1339
|
+
* @param {Array<number>} requestBody
|
|
1340
|
+
* @param {*} [options] Override http request option.
|
|
1341
|
+
* @throws {RequiredError}
|
|
1342
|
+
*/
|
|
1343
|
+
async listClaimFundingMemberPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAClaimFundingMemberPayToAmountListVBAResponse>> {
|
|
1344
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimFundingMemberPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options);
|
|
1345
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1346
|
+
const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.listClaimFundingMemberPayToAmount']?.[localVarOperationServerIndex]?.url;
|
|
1347
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1348
|
+
},
|
|
1349
|
+
/**
|
|
1350
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To).
|
|
1351
|
+
* @summary List Pay to Amounts for Claim Funding
|
|
1352
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1353
|
+
* @param {string} payorId Payor ID
|
|
1354
|
+
* @param {number} accountKey Account Key
|
|
1355
|
+
* @param {Array<number>} requestBody
|
|
1356
|
+
* @param {*} [options] Override http request option.
|
|
1357
|
+
* @throws {RequiredError}
|
|
1358
|
+
*/
|
|
1359
|
+
async listClaimFundingPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAClaimFundingPayToAmountListVBAResponse>> {
|
|
1360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimFundingPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options);
|
|
1361
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1362
|
+
const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.listClaimFundingPayToAmount']?.[localVarOperationServerIndex]?.url;
|
|
1363
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1364
|
+
},
|
|
1203
1365
|
/**
|
|
1204
1366
|
* Return a selected list of claims to batch.
|
|
1205
1367
|
* @summary Return Claim(s) to Batch
|
|
@@ -1429,6 +1591,32 @@ export const AdvClaimApiFactory = function (configuration?: Configuration, baseP
|
|
|
1429
1591
|
listAdjudicateBenefitMatch(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, claimSeq: string, planId?: string, providerId?: string, providerType?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdjudicateBenefitMatchDetailListVBAResponse> {
|
|
1430
1592
|
return localVarFp.listAdjudicateBenefitMatch(vbasoftwareDatabase, batchNumber, batchClaim, claimSeq, planId, providerId, providerType, options).then((request) => request(axios, basePath));
|
|
1431
1593
|
},
|
|
1594
|
+
/**
|
|
1595
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To) and grouped by Member.
|
|
1596
|
+
* @summary List Pay to Amounts for Claim Funding by Member
|
|
1597
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1598
|
+
* @param {string} payorId Payor ID
|
|
1599
|
+
* @param {number} accountKey Account Key
|
|
1600
|
+
* @param {Array<number>} requestBody
|
|
1601
|
+
* @param {*} [options] Override http request option.
|
|
1602
|
+
* @throws {RequiredError}
|
|
1603
|
+
*/
|
|
1604
|
+
listClaimFundingMemberPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): AxiosPromise<VBAClaimFundingMemberPayToAmountListVBAResponse> {
|
|
1605
|
+
return localVarFp.listClaimFundingMemberPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options).then((request) => request(axios, basePath));
|
|
1606
|
+
},
|
|
1607
|
+
/**
|
|
1608
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To).
|
|
1609
|
+
* @summary List Pay to Amounts for Claim Funding
|
|
1610
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1611
|
+
* @param {string} payorId Payor ID
|
|
1612
|
+
* @param {number} accountKey Account Key
|
|
1613
|
+
* @param {Array<number>} requestBody
|
|
1614
|
+
* @param {*} [options] Override http request option.
|
|
1615
|
+
* @throws {RequiredError}
|
|
1616
|
+
*/
|
|
1617
|
+
listClaimFundingPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): AxiosPromise<VBAClaimFundingPayToAmountListVBAResponse> {
|
|
1618
|
+
return localVarFp.listClaimFundingPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options).then((request) => request(axios, basePath));
|
|
1619
|
+
},
|
|
1432
1620
|
/**
|
|
1433
1621
|
* Return a selected list of claims to batch.
|
|
1434
1622
|
* @summary Return Claim(s) to Batch
|
|
@@ -1645,6 +1833,32 @@ export interface AdvClaimApiInterface {
|
|
|
1645
1833
|
*/
|
|
1646
1834
|
listAdjudicateBenefitMatch(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, claimSeq: string, planId?: string, providerId?: string, providerType?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdjudicateBenefitMatchDetailListVBAResponse>;
|
|
1647
1835
|
|
|
1836
|
+
/**
|
|
1837
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To) and grouped by Member.
|
|
1838
|
+
* @summary List Pay to Amounts for Claim Funding by Member
|
|
1839
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1840
|
+
* @param {string} payorId Payor ID
|
|
1841
|
+
* @param {number} accountKey Account Key
|
|
1842
|
+
* @param {Array<number>} requestBody
|
|
1843
|
+
* @param {*} [options] Override http request option.
|
|
1844
|
+
* @throws {RequiredError}
|
|
1845
|
+
* @memberof AdvClaimApiInterface
|
|
1846
|
+
*/
|
|
1847
|
+
listClaimFundingMemberPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): AxiosPromise<VBAClaimFundingMemberPayToAmountListVBAResponse>;
|
|
1848
|
+
|
|
1849
|
+
/**
|
|
1850
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To).
|
|
1851
|
+
* @summary List Pay to Amounts for Claim Funding
|
|
1852
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1853
|
+
* @param {string} payorId Payor ID
|
|
1854
|
+
* @param {number} accountKey Account Key
|
|
1855
|
+
* @param {Array<number>} requestBody
|
|
1856
|
+
* @param {*} [options] Override http request option.
|
|
1857
|
+
* @throws {RequiredError}
|
|
1858
|
+
* @memberof AdvClaimApiInterface
|
|
1859
|
+
*/
|
|
1860
|
+
listClaimFundingPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): AxiosPromise<VBAClaimFundingPayToAmountListVBAResponse>;
|
|
1861
|
+
|
|
1648
1862
|
/**
|
|
1649
1863
|
* Return a selected list of claims to batch.
|
|
1650
1864
|
* @summary Return Claim(s) to Batch
|
|
@@ -1887,6 +2101,36 @@ export class AdvClaimApi extends BaseAPI implements AdvClaimApiInterface {
|
|
|
1887
2101
|
return AdvClaimApiFp(this.configuration).listAdjudicateBenefitMatch(vbasoftwareDatabase, batchNumber, batchClaim, claimSeq, planId, providerId, providerType, options).then((request) => request(this.axios, this.basePath));
|
|
1888
2102
|
}
|
|
1889
2103
|
|
|
2104
|
+
/**
|
|
2105
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To) and grouped by Member.
|
|
2106
|
+
* @summary List Pay to Amounts for Claim Funding by Member
|
|
2107
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2108
|
+
* @param {string} payorId Payor ID
|
|
2109
|
+
* @param {number} accountKey Account Key
|
|
2110
|
+
* @param {Array<number>} requestBody
|
|
2111
|
+
* @param {*} [options] Override http request option.
|
|
2112
|
+
* @throws {RequiredError}
|
|
2113
|
+
* @memberof AdvClaimApi
|
|
2114
|
+
*/
|
|
2115
|
+
public listClaimFundingMemberPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig) {
|
|
2116
|
+
return AdvClaimApiFp(this.configuration).listClaimFundingMemberPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
/**
|
|
2120
|
+
* Given a selected list of Claim Numbers, get a list of calculated amounts by Pay To (Send Check To).
|
|
2121
|
+
* @summary List Pay to Amounts for Claim Funding
|
|
2122
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2123
|
+
* @param {string} payorId Payor ID
|
|
2124
|
+
* @param {number} accountKey Account Key
|
|
2125
|
+
* @param {Array<number>} requestBody
|
|
2126
|
+
* @param {*} [options] Override http request option.
|
|
2127
|
+
* @throws {RequiredError}
|
|
2128
|
+
* @memberof AdvClaimApi
|
|
2129
|
+
*/
|
|
2130
|
+
public listClaimFundingPayToAmount(vbasoftwareDatabase: string, payorId: string, accountKey: number, requestBody: Array<number>, options?: RawAxiosRequestConfig) {
|
|
2131
|
+
return AdvClaimApiFp(this.configuration).listClaimFundingPayToAmount(vbasoftwareDatabase, payorId, accountKey, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
2132
|
+
}
|
|
2133
|
+
|
|
1890
2134
|
/**
|
|
1891
2135
|
* Return a selected list of claims to batch.
|
|
1892
2136
|
* @summary Return Claim(s) to Batch
|
|
@@ -1433,6 +1433,53 @@ export const PremiumInvoicesApiAxiosParamCreator = function (configuration?: Con
|
|
|
1433
1433
|
|
|
1434
1434
|
|
|
1435
1435
|
|
|
1436
|
+
if (vbasoftwareDatabase != null) {
|
|
1437
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
1438
|
+
}
|
|
1439
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1440
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1441
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1442
|
+
|
|
1443
|
+
return {
|
|
1444
|
+
url: toPathString(localVarUrlObj),
|
|
1445
|
+
options: localVarRequestOptions,
|
|
1446
|
+
};
|
|
1447
|
+
},
|
|
1448
|
+
/**
|
|
1449
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
1450
|
+
* @summary Set Paid Through by Invoice
|
|
1451
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1452
|
+
* @param {number} invoiceKey Invoice Key
|
|
1453
|
+
* @param {*} [options] Override http request option.
|
|
1454
|
+
* @throws {RequiredError}
|
|
1455
|
+
*/
|
|
1456
|
+
setPaidThroughByInvoice: async (vbasoftwareDatabase: string, invoiceKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1457
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
1458
|
+
assertParamExists('setPaidThroughByInvoice', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
1459
|
+
// verify required parameter 'invoiceKey' is not null or undefined
|
|
1460
|
+
assertParamExists('setPaidThroughByInvoice', 'invoiceKey', invoiceKey)
|
|
1461
|
+
const localVarPath = `/set-paid-through-by-invoice/{invoiceKey}`
|
|
1462
|
+
.replace(`{${"invoiceKey"}}`, encodeURIComponent(String(invoiceKey)));
|
|
1463
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1464
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1465
|
+
let baseOptions;
|
|
1466
|
+
if (configuration) {
|
|
1467
|
+
baseOptions = configuration.baseOptions;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
1471
|
+
const localVarHeaderParameter = {} as any;
|
|
1472
|
+
const localVarQueryParameter = {} as any;
|
|
1473
|
+
|
|
1474
|
+
// authentication apiKeyAuth required
|
|
1475
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
1476
|
+
|
|
1477
|
+
// authentication bearerAuth required
|
|
1478
|
+
// http bearer authentication required
|
|
1479
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1480
|
+
|
|
1481
|
+
|
|
1482
|
+
|
|
1436
1483
|
if (vbasoftwareDatabase != null) {
|
|
1437
1484
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
1438
1485
|
}
|
|
@@ -1958,6 +2005,20 @@ export const PremiumInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
1958
2005
|
const localVarOperationServerBasePath = operationServerMap['PremiumInvoicesApi.resetSelfAdminInvoice']?.[localVarOperationServerIndex]?.url;
|
|
1959
2006
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1960
2007
|
},
|
|
2008
|
+
/**
|
|
2009
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
2010
|
+
* @summary Set Paid Through by Invoice
|
|
2011
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2012
|
+
* @param {number} invoiceKey Invoice Key
|
|
2013
|
+
* @param {*} [options] Override http request option.
|
|
2014
|
+
* @throws {RequiredError}
|
|
2015
|
+
*/
|
|
2016
|
+
async setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
2017
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options);
|
|
2018
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2019
|
+
const localVarOperationServerBasePath = operationServerMap['PremiumInvoicesApi.setPaidThroughByInvoice']?.[localVarOperationServerIndex]?.url;
|
|
2020
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2021
|
+
},
|
|
1961
2022
|
/**
|
|
1962
2023
|
* Create or Update multiple PremInvoice at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
1963
2024
|
* @summary Create or Update Batch PremInvoice
|
|
@@ -2314,6 +2375,17 @@ export const PremiumInvoicesApiFactory = function (configuration?: Configuration
|
|
|
2314
2375
|
resetSelfAdminInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
2315
2376
|
return localVarFp.resetSelfAdminInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(axios, basePath));
|
|
2316
2377
|
},
|
|
2378
|
+
/**
|
|
2379
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
2380
|
+
* @summary Set Paid Through by Invoice
|
|
2381
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2382
|
+
* @param {number} invoiceKey Invoice Key
|
|
2383
|
+
* @param {*} [options] Override http request option.
|
|
2384
|
+
* @throws {RequiredError}
|
|
2385
|
+
*/
|
|
2386
|
+
setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
2387
|
+
return localVarFp.setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(axios, basePath));
|
|
2388
|
+
},
|
|
2317
2389
|
/**
|
|
2318
2390
|
* Create or Update multiple PremInvoice at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
2319
2391
|
* @summary Create or Update Batch PremInvoice
|
|
@@ -2663,6 +2735,17 @@ export interface PremiumInvoicesApiInterface {
|
|
|
2663
2735
|
*/
|
|
2664
2736
|
resetSelfAdminInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2665
2737
|
|
|
2738
|
+
/**
|
|
2739
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
2740
|
+
* @summary Set Paid Through by Invoice
|
|
2741
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
2742
|
+
* @param {number} invoiceKey Invoice Key
|
|
2743
|
+
* @param {*} [options] Override http request option.
|
|
2744
|
+
* @throws {RequiredError}
|
|
2745
|
+
* @memberof PremiumInvoicesApiInterface
|
|
2746
|
+
*/
|
|
2747
|
+
setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2748
|
+
|
|
2666
2749
|
/**
|
|
2667
2750
|
* Create or Update multiple PremInvoice at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
2668
2751
|
* @summary Create or Update Batch PremInvoice
|
|
@@ -3068,6 +3151,19 @@ export class PremiumInvoicesApi extends BaseAPI implements PremiumInvoicesApiInt
|
|
|
3068
3151
|
return PremiumInvoicesApiFp(this.configuration).resetSelfAdminInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(this.axios, this.basePath));
|
|
3069
3152
|
}
|
|
3070
3153
|
|
|
3154
|
+
/**
|
|
3155
|
+
* Updates Paid Through information for enrollments, groups, policies, etc. based on a selected Invoice Key.
|
|
3156
|
+
* @summary Set Paid Through by Invoice
|
|
3157
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
3158
|
+
* @param {number} invoiceKey Invoice Key
|
|
3159
|
+
* @param {*} [options] Override http request option.
|
|
3160
|
+
* @throws {RequiredError}
|
|
3161
|
+
* @memberof PremiumInvoicesApi
|
|
3162
|
+
*/
|
|
3163
|
+
public setPaidThroughByInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig) {
|
|
3164
|
+
return PremiumInvoicesApiFp(this.configuration).setPaidThroughByInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(this.axios, this.basePath));
|
|
3165
|
+
}
|
|
3166
|
+
|
|
3071
3167
|
/**
|
|
3072
3168
|
* Create or Update multiple PremInvoice at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
3073
3169
|
* @summary Create or Update Batch PremInvoice
|
|
@@ -60,6 +60,92 @@ export const ReportStaticListsApiAxiosParamCreator = function (configuration?: C
|
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
if (vbasoftwareDatabase != null) {
|
|
64
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
65
|
+
}
|
|
66
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
67
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
url: toPathString(localVarUrlObj),
|
|
72
|
+
options: localVarRequestOptions,
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
/**
|
|
76
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
77
|
+
* @summary List Automation Step Delays
|
|
78
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
79
|
+
* @param {*} [options] Override http request option.
|
|
80
|
+
* @throws {RequiredError}
|
|
81
|
+
*/
|
|
82
|
+
listAutomationStepDelays: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
83
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
84
|
+
assertParamExists('listAutomationStepDelays', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
85
|
+
const localVarPath = `/automation-step-delays`;
|
|
86
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
88
|
+
let baseOptions;
|
|
89
|
+
if (configuration) {
|
|
90
|
+
baseOptions = configuration.baseOptions;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
94
|
+
const localVarHeaderParameter = {} as any;
|
|
95
|
+
const localVarQueryParameter = {} as any;
|
|
96
|
+
|
|
97
|
+
// authentication apiKeyAuth required
|
|
98
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
99
|
+
|
|
100
|
+
// authentication bearerAuth required
|
|
101
|
+
// http bearer authentication required
|
|
102
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
if (vbasoftwareDatabase != null) {
|
|
107
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
108
|
+
}
|
|
109
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
110
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
111
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
112
|
+
|
|
113
|
+
return {
|
|
114
|
+
url: toPathString(localVarUrlObj),
|
|
115
|
+
options: localVarRequestOptions,
|
|
116
|
+
};
|
|
117
|
+
},
|
|
118
|
+
/**
|
|
119
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
120
|
+
* @summary List Automation Step Types
|
|
121
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
122
|
+
* @param {*} [options] Override http request option.
|
|
123
|
+
* @throws {RequiredError}
|
|
124
|
+
*/
|
|
125
|
+
listAutomationStepTypes: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
126
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
127
|
+
assertParamExists('listAutomationStepTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
128
|
+
const localVarPath = `/automation-step-types`;
|
|
129
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
130
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
131
|
+
let baseOptions;
|
|
132
|
+
if (configuration) {
|
|
133
|
+
baseOptions = configuration.baseOptions;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
137
|
+
const localVarHeaderParameter = {} as any;
|
|
138
|
+
const localVarQueryParameter = {} as any;
|
|
139
|
+
|
|
140
|
+
// authentication apiKeyAuth required
|
|
141
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
142
|
+
|
|
143
|
+
// authentication bearerAuth required
|
|
144
|
+
// http bearer authentication required
|
|
145
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
63
149
|
if (vbasoftwareDatabase != null) {
|
|
64
150
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
65
151
|
}
|
|
@@ -138,6 +224,32 @@ export const ReportStaticListsApiFp = function(configuration?: Configuration) {
|
|
|
138
224
|
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStatuses']?.[localVarOperationServerIndex]?.url;
|
|
139
225
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
140
226
|
},
|
|
227
|
+
/**
|
|
228
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
229
|
+
* @summary List Automation Step Delays
|
|
230
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
231
|
+
* @param {*} [options] Override http request option.
|
|
232
|
+
* @throws {RequiredError}
|
|
233
|
+
*/
|
|
234
|
+
async listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
235
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAutomationStepDelays(vbasoftwareDatabase, options);
|
|
236
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
237
|
+
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStepDelays']?.[localVarOperationServerIndex]?.url;
|
|
238
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
239
|
+
},
|
|
240
|
+
/**
|
|
241
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
242
|
+
* @summary List Automation Step Types
|
|
243
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
244
|
+
* @param {*} [options] Override http request option.
|
|
245
|
+
* @throws {RequiredError}
|
|
246
|
+
*/
|
|
247
|
+
async listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
248
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAutomationStepTypes(vbasoftwareDatabase, options);
|
|
249
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
250
|
+
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStepTypes']?.[localVarOperationServerIndex]?.url;
|
|
251
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
252
|
+
},
|
|
141
253
|
/**
|
|
142
254
|
* List of all Automation Types with Key, Display and Description
|
|
143
255
|
* @summary List Automation Types
|
|
@@ -171,6 +283,26 @@ export const ReportStaticListsApiFactory = function (configuration?: Configurati
|
|
|
171
283
|
listAutomationStatuses(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
172
284
|
return localVarFp.listAutomationStatuses(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
173
285
|
},
|
|
286
|
+
/**
|
|
287
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
288
|
+
* @summary List Automation Step Delays
|
|
289
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
290
|
+
* @param {*} [options] Override http request option.
|
|
291
|
+
* @throws {RequiredError}
|
|
292
|
+
*/
|
|
293
|
+
listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
294
|
+
return localVarFp.listAutomationStepDelays(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
295
|
+
},
|
|
296
|
+
/**
|
|
297
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
298
|
+
* @summary List Automation Step Types
|
|
299
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
300
|
+
* @param {*} [options] Override http request option.
|
|
301
|
+
* @throws {RequiredError}
|
|
302
|
+
*/
|
|
303
|
+
listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
304
|
+
return localVarFp.listAutomationStepTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
305
|
+
},
|
|
174
306
|
/**
|
|
175
307
|
* List of all Automation Types with Key, Display and Description
|
|
176
308
|
* @summary List Automation Types
|
|
@@ -200,6 +332,26 @@ export interface ReportStaticListsApiInterface {
|
|
|
200
332
|
*/
|
|
201
333
|
listAutomationStatuses(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
202
334
|
|
|
335
|
+
/**
|
|
336
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
337
|
+
* @summary List Automation Step Delays
|
|
338
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
339
|
+
* @param {*} [options] Override http request option.
|
|
340
|
+
* @throws {RequiredError}
|
|
341
|
+
* @memberof ReportStaticListsApiInterface
|
|
342
|
+
*/
|
|
343
|
+
listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
347
|
+
* @summary List Automation Step Types
|
|
348
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
349
|
+
* @param {*} [options] Override http request option.
|
|
350
|
+
* @throws {RequiredError}
|
|
351
|
+
* @memberof ReportStaticListsApiInterface
|
|
352
|
+
*/
|
|
353
|
+
listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
354
|
+
|
|
203
355
|
/**
|
|
204
356
|
* List of all Automation Types with Key, Display and Description
|
|
205
357
|
* @summary List Automation Types
|
|
@@ -231,6 +383,30 @@ export class ReportStaticListsApi extends BaseAPI implements ReportStaticListsAp
|
|
|
231
383
|
return ReportStaticListsApiFp(this.configuration).listAutomationStatuses(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
232
384
|
}
|
|
233
385
|
|
|
386
|
+
/**
|
|
387
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
388
|
+
* @summary List Automation Step Delays
|
|
389
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
390
|
+
* @param {*} [options] Override http request option.
|
|
391
|
+
* @throws {RequiredError}
|
|
392
|
+
* @memberof ReportStaticListsApi
|
|
393
|
+
*/
|
|
394
|
+
public listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
395
|
+
return ReportStaticListsApiFp(this.configuration).listAutomationStepDelays(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
400
|
+
* @summary List Automation Step Types
|
|
401
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
402
|
+
* @param {*} [options] Override http request option.
|
|
403
|
+
* @throws {RequiredError}
|
|
404
|
+
* @memberof ReportStaticListsApi
|
|
405
|
+
*/
|
|
406
|
+
public listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
407
|
+
return ReportStaticListsApiFp(this.configuration).listAutomationStepTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
408
|
+
}
|
|
409
|
+
|
|
234
410
|
/**
|
|
235
411
|
* List of all Automation Types with Key, Display and Description
|
|
236
412
|
* @summary List Automation Types
|
package/api/vbareports-api.ts
CHANGED
|
@@ -68,6 +68,49 @@ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
|
|
71
|
+
if (vbasoftwareDatabase != null) {
|
|
72
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
73
|
+
}
|
|
74
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
75
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
76
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
url: toPathString(localVarUrlObj),
|
|
80
|
+
options: localVarRequestOptions,
|
|
81
|
+
};
|
|
82
|
+
},
|
|
83
|
+
/**
|
|
84
|
+
* Retrieves a token for VBA Report integration.
|
|
85
|
+
* @summary Retrieve VBA Report token
|
|
86
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
87
|
+
* @param {*} [options] Override http request option.
|
|
88
|
+
* @throws {RequiredError}
|
|
89
|
+
*/
|
|
90
|
+
getVBAReportToken: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
92
|
+
assertParamExists('getVBAReportToken', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
93
|
+
const localVarPath = `/reports/token`;
|
|
94
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
95
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
96
|
+
let baseOptions;
|
|
97
|
+
if (configuration) {
|
|
98
|
+
baseOptions = configuration.baseOptions;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
102
|
+
const localVarHeaderParameter = {} as any;
|
|
103
|
+
const localVarQueryParameter = {} as any;
|
|
104
|
+
|
|
105
|
+
// authentication apiKeyAuth required
|
|
106
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
107
|
+
|
|
108
|
+
// authentication bearerAuth required
|
|
109
|
+
// http bearer authentication required
|
|
110
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
71
114
|
if (vbasoftwareDatabase != null) {
|
|
72
115
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
73
116
|
}
|
|
@@ -196,6 +239,19 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
196
239
|
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.getVBAReport']?.[localVarOperationServerIndex]?.url;
|
|
197
240
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
198
241
|
},
|
|
242
|
+
/**
|
|
243
|
+
* Retrieves a token for VBA Report integration.
|
|
244
|
+
* @summary Retrieve VBA Report token
|
|
245
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
async getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportVBAResponse>> {
|
|
250
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVBAReportToken(vbasoftwareDatabase, options);
|
|
251
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
252
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.getVBAReportToken']?.[localVarOperationServerIndex]?.url;
|
|
253
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
254
|
+
},
|
|
199
255
|
/**
|
|
200
256
|
* Retrieves a list of all available VBA Reports.
|
|
201
257
|
* @summary List VBA Reports
|
|
@@ -244,6 +300,16 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
244
300
|
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse> {
|
|
245
301
|
return localVarFp.getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(axios, basePath));
|
|
246
302
|
},
|
|
303
|
+
/**
|
|
304
|
+
* Retrieves a token for VBA Report integration.
|
|
305
|
+
* @summary Retrieve VBA Report token
|
|
306
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
307
|
+
* @param {*} [options] Override http request option.
|
|
308
|
+
* @throws {RequiredError}
|
|
309
|
+
*/
|
|
310
|
+
getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse> {
|
|
311
|
+
return localVarFp.getVBAReportToken(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
312
|
+
},
|
|
247
313
|
/**
|
|
248
314
|
* Retrieves a list of all available VBA Reports.
|
|
249
315
|
* @summary List VBA Reports
|
|
@@ -285,6 +351,16 @@ export interface VBAReportsApiInterface {
|
|
|
285
351
|
*/
|
|
286
352
|
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse>;
|
|
287
353
|
|
|
354
|
+
/**
|
|
355
|
+
* Retrieves a token for VBA Report integration.
|
|
356
|
+
* @summary Retrieve VBA Report token
|
|
357
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
* @memberof VBAReportsApiInterface
|
|
361
|
+
*/
|
|
362
|
+
getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse>;
|
|
363
|
+
|
|
288
364
|
/**
|
|
289
365
|
* Retrieves a list of all available VBA Reports.
|
|
290
366
|
* @summary List VBA Reports
|
|
@@ -328,6 +404,18 @@ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
|
328
404
|
return VBAReportsApiFp(this.configuration).getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(this.axios, this.basePath));
|
|
329
405
|
}
|
|
330
406
|
|
|
407
|
+
/**
|
|
408
|
+
* Retrieves a token for VBA Report integration.
|
|
409
|
+
* @summary Retrieve VBA Report token
|
|
410
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
411
|
+
* @param {*} [options] Override http request option.
|
|
412
|
+
* @throws {RequiredError}
|
|
413
|
+
* @memberof VBAReportsApi
|
|
414
|
+
*/
|
|
415
|
+
public getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
416
|
+
return VBAReportsApiFp(this.configuration).getVBAReportToken(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
417
|
+
}
|
|
418
|
+
|
|
331
419
|
/**
|
|
332
420
|
* Retrieves a list of all available VBA Reports.
|
|
333
421
|
* @summary List VBA Reports
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Networks } from './networks';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { PlanBenefitLevel } from './plan-benefit-level';
|
|
@@ -227,5 +230,11 @@ export interface CoveredBenefit {
|
|
|
227
230
|
* @memberof CoveredBenefit
|
|
228
231
|
*/
|
|
229
232
|
'planBenLevels'?: Array<PlanBenefitLevel> | null;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @type {Array<Networks>}
|
|
236
|
+
* @memberof CoveredBenefit
|
|
237
|
+
*/
|
|
238
|
+
'planBenLevelNetworks'?: Array<Networks> | null;
|
|
230
239
|
}
|
|
231
240
|
|
|
@@ -32,5 +32,11 @@ export interface DatabaseConnection {
|
|
|
32
32
|
* @memberof DatabaseConnection
|
|
33
33
|
*/
|
|
34
34
|
'connectionString'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Indicates if single sign-on (SSO) is enabled for the database connection.
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof DatabaseConnection
|
|
39
|
+
*/
|
|
40
|
+
'ssoEnabled'?: boolean;
|
|
35
41
|
}
|
|
36
42
|
|
package/models/index.ts
CHANGED
|
@@ -2507,6 +2507,10 @@ export * from './vbacdcsubenrollment-rider';
|
|
|
2507
2507
|
export * from './vbacdcsubenrollment-rider-list-vbaresponse';
|
|
2508
2508
|
export * from './vbacdcsubscribers';
|
|
2509
2509
|
export * from './vbacdcsubscribers-list-vbaresponse';
|
|
2510
|
+
export * from './vbaclaim-funding-member-pay-to-amount';
|
|
2511
|
+
export * from './vbaclaim-funding-member-pay-to-amount-list-vbaresponse';
|
|
2512
|
+
export * from './vbaclaim-funding-pay-to-amount';
|
|
2513
|
+
export * from './vbaclaim-funding-pay-to-amount-list-vbaresponse';
|
|
2510
2514
|
export * from './vbaclaim-timeline';
|
|
2511
2515
|
export * from './vbaclaim-timeline-list-vbaresponse';
|
|
2512
2516
|
export * from './vbaclient';
|
package/models/reins-contract.ts
CHANGED
|
@@ -183,7 +183,7 @@ export interface ReinsContract {
|
|
|
183
183
|
*/
|
|
184
184
|
'policy_Number'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
* Notes if this is \"Spec. Advance Fund\" where all claims are included or \"Pay and Reimburse\" where only paid claims are included in the calculation.
|
|
186
|
+
* Notes if this is \"Spec. Advance Fund\" where all claims are included or \"Pay and Reimburse\" where only paid claims are included in the calculation. IMPORTANT: While you may enter any value here via API, Reports that use this data will will look for the value of \"S\" for \"Spec. Advance Fund\" or \"P\" for \"Pay and Reimburse\".
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof ReinsContract
|
|
189
189
|
*/
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Debug } from './debug';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { VBAClaimFundingMemberPayToAmount } from './vbaclaim-funding-member-pay-to-amount';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface VBAClaimFundingMemberPayToAmountListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface VBAClaimFundingMemberPayToAmountListVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<VBAClaimFundingMemberPayToAmount>}
|
|
35
|
+
* @memberof VBAClaimFundingMemberPayToAmountListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: Array<VBAClaimFundingMemberPayToAmount> | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof VBAClaimFundingMemberPayToAmountListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof VBAClaimFundingMemberPayToAmountListVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface VBAClaimFundingMemberPayToAmount
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAClaimFundingMemberPayToAmount {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBAClaimFundingMemberPayToAmount
|
|
27
|
+
*/
|
|
28
|
+
'subscriber_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAClaimFundingMemberPayToAmount
|
|
33
|
+
*/
|
|
34
|
+
'member_Seq'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBAClaimFundingMemberPayToAmount
|
|
39
|
+
*/
|
|
40
|
+
'send_Check_To'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof VBAClaimFundingMemberPayToAmount
|
|
45
|
+
*/
|
|
46
|
+
'pay_To_ID'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof VBAClaimFundingMemberPayToAmount
|
|
51
|
+
*/
|
|
52
|
+
'claim_Paid_Amount'?: number | null;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Debug } from './debug';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { VBAClaimFundingPayToAmount } from './vbaclaim-funding-pay-to-amount';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface VBAClaimFundingPayToAmountListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface VBAClaimFundingPayToAmountListVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<VBAClaimFundingPayToAmount>}
|
|
35
|
+
* @memberof VBAClaimFundingPayToAmountListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: Array<VBAClaimFundingPayToAmount> | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof VBAClaimFundingPayToAmountListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof VBAClaimFundingPayToAmountListVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface VBAClaimFundingPayToAmount
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAClaimFundingPayToAmount {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VBAClaimFundingPayToAmount
|
|
27
|
+
*/
|
|
28
|
+
'send_Check_To'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAClaimFundingPayToAmount
|
|
33
|
+
*/
|
|
34
|
+
'pay_To_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof VBAClaimFundingPayToAmount
|
|
39
|
+
*/
|
|
40
|
+
'claim_Paid_Amount'?: number | null;
|
|
41
|
+
}
|
|
42
|
+
|