@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240913.2 → 1.20241220.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 +77 -2
- package/api/accounting-api.ts +101 -0
- package/api/adv-accounting-api.ts +199 -0
- package/api/adv-billing-api.ts +926 -57
- package/api/adv-capitation-api.ts +99 -0
- package/api/adv-claim-api.ts +529 -0
- package/api/adv-enrollment-api.ts +204 -4
- package/api/adv-reinsurance-api.ts +97 -0
- package/api/billing-api.ts +198 -0
- package/api/capitations-api.ts +99 -0
- package/api/care-case-clinical-facts-api.ts +71 -167
- package/api/check-batches-api.ts +87 -0
- package/api/checks-api.ts +292 -0
- package/api/claim-invoice-adjustment-reasons-api.ts +677 -0
- package/api/claim-invoice-adjustment-received-api.ts +685 -0
- package/api/claim-invoice-adjustments-api.ts +693 -0
- package/api/claim-invoice-api.ts +677 -0
- package/api/claim-invoice-details-api.ts +741 -0
- package/api/claim-invoice-payments-api.ts +725 -0
- package/api/claim-invoice-received-api.ts +693 -0
- package/api/claim-payments-api.ts +677 -0
- package/api/enrollment-accumulators-api.ts +909 -0
- package/api/events-api.ts +87 -0
- package/api/members-api.ts +206 -0
- package/api/prem-invoice-api.ts +171 -0
- package/api/premium-invoices-api.ts +95 -0
- package/api/premium-payments-api.ts +133 -0
- package/api/premium-rates-api.ts +223 -39
- package/api/reinsurance-contracts-api.ts +97 -0
- package/api/security-area-user-groups-api.ts +118 -5
- package/api/subscribers-api.ts +5 -5
- package/api/vbagateway-messaging-api.ts +379 -0
- package/api/vbareports-api.ts +112 -15
- package/api.ts +10 -0
- package/models/accounting-withhold-check-config.ts +36 -0
- package/models/accumulator-added-accum-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-added-accum-detail-result.ts +378 -0
- package/models/accumulator-all-benefit-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-all-benefit-detail-result.ts +420 -0
- package/models/{prem-invoice-generate-inv-list-result-list-vbaresponse.ts → accumulator-benefit-detail-result-list-vbaresponse.ts} +8 -8
- package/models/accumulator-benefit-detail-result.ts +414 -0
- package/models/accumulator-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-detail-result.ts +402 -0
- package/models/benefit-codes.ts +18 -18
- package/models/billing-add-rate-from-template-config.ts +42 -0
- package/models/billing-apply-payment-config.ts +74 -0
- package/models/billing-auto-apply-config.ts +84 -0
- package/models/billing-rate-modify-config.ts +140 -0
- package/models/capitation-generate.ts +12 -0
- package/models/care-case-clinical-fact.ts +1 -1
- package/models/claim-batch-claim-batch-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason.ts +60 -0
- package/models/claim-invoice-adjustment-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received.ts +78 -0
- package/models/claim-invoice-adjustment-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment.ts +90 -0
- package/models/claim-invoice-config.ts +37 -0
- package/models/claim-invoice-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail.ts +66 -0
- package/models/claim-invoice-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment.ts +72 -0
- package/models/claim-invoice-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-received.ts +78 -0
- package/models/claim-invoice-vbaresponse.ts +45 -0
- package/models/claim-invoice.ts +90 -0
- package/models/claim-payment-list-vbaresponse.ts +45 -0
- package/models/claim-payment-vbaresponse.ts +45 -0
- package/models/claim-payment.ts +96 -0
- package/models/commission-adjustment.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/covered-benefit.ts +49 -0
- package/models/elig-detail.ts +114 -0
- package/models/email-report-dto.ts +0 -6
- package/models/enrollment-disenroll-adjustment-list-vbaresponse.ts +45 -0
- package/models/enrollment-disenroll-adjustment.ts +138 -0
- package/models/fax-report-dto.ts +0 -6
- package/models/file-detail.ts +4 -4
- package/models/fundaccountbalancelist.ts +114 -0
- package/models/get-plan-max-claim-detail-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-claim-detail-result.ts +180 -0
- package/models/get-plan-max-summary-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-summary-result.ts +114 -0
- package/models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-subscriber-disenroll-adjustments-result.ts +144 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result.ts +132 -0
- package/models/idcard-request-report-series-config.ts +30 -0
- package/models/index.ts +67 -2
- package/models/json-node-options.ts +1 -7
- package/models/member-detail.ts +102 -0
- package/models/message-thread-vbaresponse.ts +45 -0
- package/models/message-thread.ts +60 -0
- package/models/messages-vbaresponse.ts +45 -0
- package/models/messages.ts +66 -0
- package/models/prem-apply-payment-category-result-list-vbaresponse.ts +45 -0
- package/models/prem-apply-payment-category-result.ts +102 -0
- package/models/search-request.ts +12 -0
- package/models/security-area-user-group.ts +26 -2
- package/models/subscriber-detail.ts +144 -0
- package/models/vbaapp-info.ts +12 -6
- package/models/vbabenefit-inquiry-request.ts +96 -0
- package/models/vbabenefit-inquiry-vbaresponse.ts +45 -0
- package/models/vbabenefit-inquiry.ts +122 -0
- package/models/vbadisability-advisor-deduction.ts +72 -0
- package/models/vbadisability-advisor.ts +571 -0
- package/models/vbareport-vbaresponse.ts +45 -0
- package/models/vbareport.ts +7 -7
- package/package.json +1 -1
- package/models/prem-invoice-generate-inv-list-result.ts +0 -138
package/.openapi-generator/FILES
CHANGED
|
@@ -182,8 +182,16 @@ api/claim-disabilities-api.ts
|
|
|
182
182
|
api/claim-disability-deductions-api.ts
|
|
183
183
|
api/claim-ex-codes-api.ts
|
|
184
184
|
api/claim-funded-statuses-api.ts
|
|
185
|
+
api/claim-invoice-adjustment-reasons-api.ts
|
|
186
|
+
api/claim-invoice-adjustment-received-api.ts
|
|
187
|
+
api/claim-invoice-adjustments-api.ts
|
|
188
|
+
api/claim-invoice-api.ts
|
|
189
|
+
api/claim-invoice-details-api.ts
|
|
190
|
+
api/claim-invoice-payments-api.ts
|
|
191
|
+
api/claim-invoice-received-api.ts
|
|
185
192
|
api/claim-lives-api.ts
|
|
186
193
|
api/claim-occurrence-codes-api.ts
|
|
194
|
+
api/claim-payments-api.ts
|
|
187
195
|
api/claim-pre-batch-details-api.ts
|
|
188
196
|
api/claim-pre-batches-api.ts
|
|
189
197
|
api/claim-prompt-pays-api.ts
|
|
@@ -603,6 +611,7 @@ api/plans-api.ts
|
|
|
603
611
|
api/policy-forfeiture-ext-api.ts
|
|
604
612
|
api/policy-forfeiture-ext-details-api.ts
|
|
605
613
|
api/policy-statuses-api.ts
|
|
614
|
+
api/prem-invoice-api.ts
|
|
606
615
|
api/prem-invoice-list-api.ts
|
|
607
616
|
api/prem-rate-types-api.ts
|
|
608
617
|
api/premium-claim-api.ts
|
|
@@ -830,6 +839,7 @@ api/user-group-mappings-api.ts
|
|
|
830
839
|
api/user-groups-api.ts
|
|
831
840
|
api/user-log-types-api.ts
|
|
832
841
|
api/user-note-access-api.ts
|
|
842
|
+
api/vbagateway-messaging-api.ts
|
|
833
843
|
api/vbagateway-subscription-api.ts
|
|
834
844
|
api/vbagateway-subscription-detail-api.ts
|
|
835
845
|
api/vbainterface-idcodes-api.ts
|
|
@@ -863,6 +873,15 @@ common.ts
|
|
|
863
873
|
configuration.ts
|
|
864
874
|
git_push.sh
|
|
865
875
|
index.ts
|
|
876
|
+
models/accounting-withhold-check-config.ts
|
|
877
|
+
models/accumulator-added-accum-detail-result-list-vbaresponse.ts
|
|
878
|
+
models/accumulator-added-accum-detail-result.ts
|
|
879
|
+
models/accumulator-all-benefit-detail-result-list-vbaresponse.ts
|
|
880
|
+
models/accumulator-all-benefit-detail-result.ts
|
|
881
|
+
models/accumulator-benefit-detail-result-list-vbaresponse.ts
|
|
882
|
+
models/accumulator-benefit-detail-result.ts
|
|
883
|
+
models/accumulator-detail-result-list-vbaresponse.ts
|
|
884
|
+
models/accumulator-detail-result.ts
|
|
866
885
|
models/active-subscriber-list-vbaresponse.ts
|
|
867
886
|
models/active-subscriber.ts
|
|
868
887
|
models/add-enrollment-request.ts
|
|
@@ -954,12 +973,16 @@ models/bill-type-place-vbaresponse.ts
|
|
|
954
973
|
models/bill-type-place.ts
|
|
955
974
|
models/bill-type-vbaresponse.ts
|
|
956
975
|
models/bill-type.ts
|
|
976
|
+
models/billing-add-rate-from-template-config.ts
|
|
977
|
+
models/billing-apply-payment-config.ts
|
|
978
|
+
models/billing-auto-apply-config.ts
|
|
957
979
|
models/billing-basis-list-vbaresponse.ts
|
|
958
980
|
models/billing-basis-vbaresponse.ts
|
|
959
981
|
models/billing-basis.ts
|
|
960
982
|
models/billing-cycle-list-vbaresponse.ts
|
|
961
983
|
models/billing-cycle-vbaresponse.ts
|
|
962
984
|
models/billing-cycle.ts
|
|
985
|
+
models/billing-rate-modify-config.ts
|
|
963
986
|
models/billing-refund.ts
|
|
964
987
|
models/boolean-vbaresponse.ts
|
|
965
988
|
models/brokerage-list-vbaresponse.ts
|
|
@@ -1282,6 +1305,7 @@ models/claim-audit-status-vbaresponse.ts
|
|
|
1282
1305
|
models/claim-audit-status.ts
|
|
1283
1306
|
models/claim-audit-vbaresponse.ts
|
|
1284
1307
|
models/claim-audit.ts
|
|
1308
|
+
models/claim-batch-claim-batch-detail-list-vbaresponse.ts
|
|
1285
1309
|
models/claim-batch-claim-batch-detail-vbaresponse.ts
|
|
1286
1310
|
models/claim-batch-claim-batch-detail.ts
|
|
1287
1311
|
models/claim-batch-detail-benefit-list-vbaresponse.ts
|
|
@@ -1362,9 +1386,34 @@ models/claim-flex.ts
|
|
|
1362
1386
|
models/claim-funded-status-list-vbaresponse.ts
|
|
1363
1387
|
models/claim-funded-status-vbaresponse.ts
|
|
1364
1388
|
models/claim-funded-status.ts
|
|
1389
|
+
models/claim-invoice-adjustment-list-vbaresponse.ts
|
|
1390
|
+
models/claim-invoice-adjustment-reason-list-vbaresponse.ts
|
|
1391
|
+
models/claim-invoice-adjustment-reason-vbaresponse.ts
|
|
1392
|
+
models/claim-invoice-adjustment-reason.ts
|
|
1393
|
+
models/claim-invoice-adjustment-received-list-vbaresponse.ts
|
|
1394
|
+
models/claim-invoice-adjustment-received-vbaresponse.ts
|
|
1395
|
+
models/claim-invoice-adjustment-received.ts
|
|
1396
|
+
models/claim-invoice-adjustment-vbaresponse.ts
|
|
1397
|
+
models/claim-invoice-adjustment.ts
|
|
1398
|
+
models/claim-invoice-config.ts
|
|
1399
|
+
models/claim-invoice-detail-list-vbaresponse.ts
|
|
1400
|
+
models/claim-invoice-detail-vbaresponse.ts
|
|
1401
|
+
models/claim-invoice-detail.ts
|
|
1402
|
+
models/claim-invoice-list-vbaresponse.ts
|
|
1403
|
+
models/claim-invoice-payment-list-vbaresponse.ts
|
|
1404
|
+
models/claim-invoice-payment-vbaresponse.ts
|
|
1405
|
+
models/claim-invoice-payment.ts
|
|
1406
|
+
models/claim-invoice-received-list-vbaresponse.ts
|
|
1407
|
+
models/claim-invoice-received-vbaresponse.ts
|
|
1408
|
+
models/claim-invoice-received.ts
|
|
1409
|
+
models/claim-invoice-vbaresponse.ts
|
|
1410
|
+
models/claim-invoice.ts
|
|
1365
1411
|
models/claim-occurrence-code-list-vbaresponse.ts
|
|
1366
1412
|
models/claim-occurrence-code-vbaresponse.ts
|
|
1367
1413
|
models/claim-occurrence-code.ts
|
|
1414
|
+
models/claim-payment-list-vbaresponse.ts
|
|
1415
|
+
models/claim-payment-vbaresponse.ts
|
|
1416
|
+
models/claim-payment.ts
|
|
1368
1417
|
models/claim-pre-batch-detail-list-vbaresponse.ts
|
|
1369
1418
|
models/claim-pre-batch-detail-vbaresponse.ts
|
|
1370
1419
|
models/claim-pre-batch-detail.ts
|
|
@@ -1645,6 +1694,7 @@ models/county.ts
|
|
|
1645
1694
|
models/coverage-type-list-vbaresponse.ts
|
|
1646
1695
|
models/coverage-type-vbaresponse.ts
|
|
1647
1696
|
models/coverage-type.ts
|
|
1697
|
+
models/covered-benefit.ts
|
|
1648
1698
|
models/cred-amount-list-vbaresponse.ts
|
|
1649
1699
|
models/cred-amount-vbaresponse.ts
|
|
1650
1700
|
models/cred-amount.ts
|
|
@@ -1799,11 +1849,14 @@ models/edicustom-field-value-claim.ts
|
|
|
1799
1849
|
models/edicustom-field-vbaresponse.ts
|
|
1800
1850
|
models/edicustom-field.ts
|
|
1801
1851
|
models/electronic-statement.ts
|
|
1852
|
+
models/elig-detail.ts
|
|
1802
1853
|
models/eligibility-status-list-vbaresponse.ts
|
|
1803
1854
|
models/eligibility-status-vbaresponse.ts
|
|
1804
1855
|
models/eligibility-status.ts
|
|
1805
1856
|
models/email-report-dto.ts
|
|
1806
1857
|
models/enable-mfasetup-request.ts
|
|
1858
|
+
models/enrollment-disenroll-adjustment-list-vbaresponse.ts
|
|
1859
|
+
models/enrollment-disenroll-adjustment.ts
|
|
1807
1860
|
models/enrollment-disenroll-group.ts
|
|
1808
1861
|
models/enrollment-disenroll.ts
|
|
1809
1862
|
models/enrollment-pcpauto-assign-member-list-vbaresponse.ts
|
|
@@ -1910,6 +1963,7 @@ models/forfeiture-status-vbaresponse.ts
|
|
|
1910
1963
|
models/forfeiture-status.ts
|
|
1911
1964
|
models/functional-area-list-vbaresponse.ts
|
|
1912
1965
|
models/functional-area.ts
|
|
1966
|
+
models/fundaccountbalancelist.ts
|
|
1913
1967
|
models/funding-account-balance-vbaresponse.ts
|
|
1914
1968
|
models/funding-account-balance.ts
|
|
1915
1969
|
models/funding-account-category-list-vbaresponse.ts
|
|
@@ -1989,10 +2043,18 @@ models/gender.ts
|
|
|
1989
2043
|
models/generate-prem-invoice.ts
|
|
1990
2044
|
models/generate-reins-transaction-vbaresponse.ts
|
|
1991
2045
|
models/generate-reins-transaction.ts
|
|
2046
|
+
models/get-plan-max-claim-detail-result-list-vbaresponse.ts
|
|
2047
|
+
models/get-plan-max-claim-detail-result.ts
|
|
2048
|
+
models/get-plan-max-summary-result-list-vbaresponse.ts
|
|
2049
|
+
models/get-plan-max-summary-result.ts
|
|
1992
2050
|
models/get-prem-distribution-list-result-list-vbaresponse.ts
|
|
1993
2051
|
models/get-prem-distribution-list-result.ts
|
|
1994
2052
|
models/get-prem-invoice-subscriber-list-result-list-vbaresponse.ts
|
|
1995
2053
|
models/get-prem-invoice-subscriber-list-result.ts
|
|
2054
|
+
models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts
|
|
2055
|
+
models/get-subscriber-disenroll-adjustments-result.ts
|
|
2056
|
+
models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts
|
|
2057
|
+
models/get-temp-retro-prem-invoice-adjustments-result.ts
|
|
1996
2058
|
models/grievance-admin-change-type-list-vbaresponse.ts
|
|
1997
2059
|
models/grievance-admin-change-type-vbaresponse.ts
|
|
1998
2060
|
models/grievance-admin-change-type.ts
|
|
@@ -2186,6 +2248,7 @@ models/hipaatier-list-vbaresponse.ts
|
|
|
2186
2248
|
models/hipaatier-vbaresponse.ts
|
|
2187
2249
|
models/hipaatier.ts
|
|
2188
2250
|
models/idcard-request-list-vbaresponse.ts
|
|
2251
|
+
models/idcard-request-report-series-config.ts
|
|
2189
2252
|
models/idcard-request-type-list-vbaresponse.ts
|
|
2190
2253
|
models/idcard-request-type-vbaresponse.ts
|
|
2191
2254
|
models/idcard-request-type.ts
|
|
@@ -2305,6 +2368,7 @@ models/member-cobsavings.ts
|
|
|
2305
2368
|
models/member-college-list-vbaresponse.ts
|
|
2306
2369
|
models/member-college-vbaresponse.ts
|
|
2307
2370
|
models/member-college.ts
|
|
2371
|
+
models/member-detail.ts
|
|
2308
2372
|
models/member-eligibility-status-list-vbaresponse.ts
|
|
2309
2373
|
models/member-eligibility-status-vbaresponse.ts
|
|
2310
2374
|
models/member-eligibility-status.ts
|
|
@@ -2362,6 +2426,10 @@ models/member-vbaplan-type-idvbaresponse.ts
|
|
|
2362
2426
|
models/members-list-vbaresponse.ts
|
|
2363
2427
|
models/members-vbaresponse.ts
|
|
2364
2428
|
models/members.ts
|
|
2429
|
+
models/message-thread-vbaresponse.ts
|
|
2430
|
+
models/message-thread.ts
|
|
2431
|
+
models/messages-vbaresponse.ts
|
|
2432
|
+
models/messages.ts
|
|
2365
2433
|
models/mfadevice-setup-request.ts
|
|
2366
2434
|
models/mfadevice-setup-response-vbaresponse.ts
|
|
2367
2435
|
models/mfadevice-setup-response.ts
|
|
@@ -2593,6 +2661,8 @@ models/practice-type-criteria.ts
|
|
|
2593
2661
|
models/practice-type-list-vbaresponse.ts
|
|
2594
2662
|
models/practice-type-vbaresponse.ts
|
|
2595
2663
|
models/practice-type.ts
|
|
2664
|
+
models/prem-apply-payment-category-result-list-vbaresponse.ts
|
|
2665
|
+
models/prem-apply-payment-category-result.ts
|
|
2596
2666
|
models/prem-distribution-list-vbaresponse.ts
|
|
2597
2667
|
models/prem-distribution-vbaresponse.ts
|
|
2598
2668
|
models/prem-distribution.ts
|
|
@@ -2604,8 +2674,6 @@ models/prem-invoice-adjustment-vbaresponse.ts
|
|
|
2604
2674
|
models/prem-invoice-adjustment.ts
|
|
2605
2675
|
models/prem-invoice-apply-payment.ts
|
|
2606
2676
|
models/prem-invoice-generate-inv-list-list-vbaresponse.ts
|
|
2607
|
-
models/prem-invoice-generate-inv-list-result-list-vbaresponse.ts
|
|
2608
|
-
models/prem-invoice-generate-inv-list-result.ts
|
|
2609
2677
|
models/prem-invoice-generate-inv-list.ts
|
|
2610
2678
|
models/prem-invoice-generate-self-admin-inv-list-list-vbaresponse.ts
|
|
2611
2679
|
models/prem-invoice-generate-self-admin-inv-list.ts
|
|
@@ -3121,6 +3189,7 @@ models/submit-mfacode-request.ts
|
|
|
3121
3189
|
models/subscriber-accum-list-vbaresponse.ts
|
|
3122
3190
|
models/subscriber-accum-vbaresponse.ts
|
|
3123
3191
|
models/subscriber-accum.ts
|
|
3192
|
+
models/subscriber-detail.ts
|
|
3124
3193
|
models/subscriber-flex-exported-list-vbaresponse.ts
|
|
3125
3194
|
models/subscriber-flex-exported-vbaresponse.ts
|
|
3126
3195
|
models/subscriber-flex-exported.ts
|
|
@@ -3274,6 +3343,9 @@ models/vbaapp-info-vbaresponse.ts
|
|
|
3274
3343
|
models/vbaapp-info.ts
|
|
3275
3344
|
models/vbaauth-vbaresponse.ts
|
|
3276
3345
|
models/vbaauth.ts
|
|
3346
|
+
models/vbabenefit-inquiry-request.ts
|
|
3347
|
+
models/vbabenefit-inquiry-vbaresponse.ts
|
|
3348
|
+
models/vbabenefit-inquiry.ts
|
|
3277
3349
|
models/vbacdcmembers-list-vbaresponse.ts
|
|
3278
3350
|
models/vbacdcmembers.ts
|
|
3279
3351
|
models/vbacdcsubenrollment-list-vbaresponse.ts
|
|
@@ -3293,6 +3365,8 @@ models/vbaclient-vbaresponse.ts
|
|
|
3293
3365
|
models/vbaclient.ts
|
|
3294
3366
|
models/vbacommission-rate-subscriber-list-vbaresponse.ts
|
|
3295
3367
|
models/vbacommission-rate-subscriber.ts
|
|
3368
|
+
models/vbadisability-advisor-deduction.ts
|
|
3369
|
+
models/vbadisability-advisor.ts
|
|
3296
3370
|
models/vbafunding-account-claim-info-list-vbaresponse.ts
|
|
3297
3371
|
models/vbafunding-account-claim-info.ts
|
|
3298
3372
|
models/vbafunding-request-claim-summary-list-vbaresponse.ts
|
|
@@ -3358,6 +3432,7 @@ models/vbareins-contract-trans-reimburse.ts
|
|
|
3358
3432
|
models/vbareins-contract-transaction-summary-list-vbaresponse.ts
|
|
3359
3433
|
models/vbareins-contract-transaction-summary.ts
|
|
3360
3434
|
models/vbareport-list-vbaresponse.ts
|
|
3435
|
+
models/vbareport-vbaresponse.ts
|
|
3361
3436
|
models/vbareport.ts
|
|
3362
3437
|
models/vbassologin-config.ts
|
|
3363
3438
|
models/verify-mfadevice-setup-request.ts
|
package/api/accounting-api.ts
CHANGED
|
@@ -21,6 +21,10 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { BooleanVBAResponse } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { FUNDACCOUNTBALANCELIST } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
24
28
|
import { FundingProcessClaimRefund } from '../models';
|
|
25
29
|
/**
|
|
26
30
|
* AccountingApi - axios parameter creator
|
|
@@ -28,6 +32,56 @@ import { FundingProcessClaimRefund } from '../models';
|
|
|
28
32
|
*/
|
|
29
33
|
export const AccountingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
34
|
return {
|
|
35
|
+
/**
|
|
36
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
37
|
+
* @summary Claim Account Funding
|
|
38
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
39
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
40
|
+
* @param {*} [options] Override http request option.
|
|
41
|
+
* @throws {RequiredError}
|
|
42
|
+
*/
|
|
43
|
+
accountingFundRequest: async (vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
44
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
45
|
+
assertParamExists('accountingFundRequest', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
46
|
+
// verify required parameter 'fUNDACCOUNTBALANCELIST' is not null or undefined
|
|
47
|
+
assertParamExists('accountingFundRequest', 'fUNDACCOUNTBALANCELIST', fUNDACCOUNTBALANCELIST)
|
|
48
|
+
const localVarPath = `/accounting-fund-request`;
|
|
49
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
50
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
51
|
+
let baseOptions;
|
|
52
|
+
if (configuration) {
|
|
53
|
+
baseOptions = configuration.baseOptions;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
57
|
+
const localVarHeaderParameter = {} as any;
|
|
58
|
+
const localVarQueryParameter = {} as any;
|
|
59
|
+
|
|
60
|
+
// authentication apiKeyAuth required
|
|
61
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
62
|
+
|
|
63
|
+
// authentication bearerAuth required
|
|
64
|
+
// http bearer authentication required
|
|
65
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
66
|
+
|
|
67
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
68
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
74
|
+
|
|
75
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
76
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
77
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
78
|
+
localVarRequestOptions.data = serializeDataIfNeeded(fUNDACCOUNTBALANCELIST, localVarRequestOptions, configuration)
|
|
79
|
+
|
|
80
|
+
return {
|
|
81
|
+
url: toPathString(localVarUrlObj),
|
|
82
|
+
options: localVarRequestOptions,
|
|
83
|
+
};
|
|
84
|
+
},
|
|
31
85
|
/**
|
|
32
86
|
* Process a Claim Refund creating the necessary Backout and Reentry claims and adding Claim Reference values.
|
|
33
87
|
* @summary Claim Refund
|
|
@@ -88,6 +142,18 @@ export const AccountingApiAxiosParamCreator = function (configuration?: Configur
|
|
|
88
142
|
export const AccountingApiFp = function(configuration?: Configuration) {
|
|
89
143
|
const localVarAxiosParamCreator = AccountingApiAxiosParamCreator(configuration)
|
|
90
144
|
return {
|
|
145
|
+
/**
|
|
146
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
147
|
+
* @summary Claim Account Funding
|
|
148
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
149
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
150
|
+
* @param {*} [options] Override http request option.
|
|
151
|
+
* @throws {RequiredError}
|
|
152
|
+
*/
|
|
153
|
+
async accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BooleanVBAResponse>> {
|
|
154
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options);
|
|
155
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
156
|
+
},
|
|
91
157
|
/**
|
|
92
158
|
* Process a Claim Refund creating the necessary Backout and Reentry claims and adding Claim Reference values.
|
|
93
159
|
* @summary Claim Refund
|
|
@@ -110,6 +176,17 @@ export const AccountingApiFp = function(configuration?: Configuration) {
|
|
|
110
176
|
export const AccountingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
111
177
|
const localVarFp = AccountingApiFp(configuration)
|
|
112
178
|
return {
|
|
179
|
+
/**
|
|
180
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
181
|
+
* @summary Claim Account Funding
|
|
182
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
183
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
184
|
+
* @param {*} [options] Override http request option.
|
|
185
|
+
* @throws {RequiredError}
|
|
186
|
+
*/
|
|
187
|
+
accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: any): AxiosPromise<BooleanVBAResponse> {
|
|
188
|
+
return localVarFp.accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options).then((request) => request(axios, basePath));
|
|
189
|
+
},
|
|
113
190
|
/**
|
|
114
191
|
* Process a Claim Refund creating the necessary Backout and Reentry claims and adding Claim Reference values.
|
|
115
192
|
* @summary Claim Refund
|
|
@@ -130,6 +207,17 @@ export const AccountingApiFactory = function (configuration?: Configuration, bas
|
|
|
130
207
|
* @interface AccountingApi
|
|
131
208
|
*/
|
|
132
209
|
export interface AccountingApiInterface {
|
|
210
|
+
/**
|
|
211
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
212
|
+
* @summary Claim Account Funding
|
|
213
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
214
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
215
|
+
* @param {*} [options] Override http request option.
|
|
216
|
+
* @throws {RequiredError}
|
|
217
|
+
* @memberof AccountingApiInterface
|
|
218
|
+
*/
|
|
219
|
+
accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig): AxiosPromise<BooleanVBAResponse>;
|
|
220
|
+
|
|
133
221
|
/**
|
|
134
222
|
* Process a Claim Refund creating the necessary Backout and Reentry claims and adding Claim Reference values.
|
|
135
223
|
* @summary Claim Refund
|
|
@@ -150,6 +238,19 @@ export interface AccountingApiInterface {
|
|
|
150
238
|
* @extends {BaseAPI}
|
|
151
239
|
*/
|
|
152
240
|
export class AccountingApi extends BaseAPI implements AccountingApiInterface {
|
|
241
|
+
/**
|
|
242
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
243
|
+
* @summary Claim Account Funding
|
|
244
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
245
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
* @memberof AccountingApi
|
|
249
|
+
*/
|
|
250
|
+
public accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig) {
|
|
251
|
+
return AccountingApiFp(this.configuration).accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options).then((request) => request(this.axios, this.basePath));
|
|
252
|
+
}
|
|
253
|
+
|
|
153
254
|
/**
|
|
154
255
|
* Process a Claim Refund creating the necessary Backout and Reentry claims and adding Claim Reference values.
|
|
155
256
|
* @summary Claim Refund
|
|
@@ -21,8 +21,12 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { BooleanVBAResponse } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
24
26
|
import { ChecksVBAResponse } from '../models';
|
|
25
27
|
// @ts-ignore
|
|
28
|
+
import { FUNDACCOUNTBALANCELIST } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
26
30
|
import { Funding } from '../models';
|
|
27
31
|
// @ts-ignore
|
|
28
32
|
import { FundingAccountBalanceVBAResponse } from '../models';
|
|
@@ -54,6 +58,56 @@ import { Int32VBAResponse } from '../models';
|
|
|
54
58
|
*/
|
|
55
59
|
export const AdvAccountingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
56
60
|
return {
|
|
61
|
+
/**
|
|
62
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
63
|
+
* @summary Claim Account Funding
|
|
64
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
65
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
*/
|
|
69
|
+
accountingFundRequest: async (vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
70
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
71
|
+
assertParamExists('accountingFundRequest', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
72
|
+
// verify required parameter 'fUNDACCOUNTBALANCELIST' is not null or undefined
|
|
73
|
+
assertParamExists('accountingFundRequest', 'fUNDACCOUNTBALANCELIST', fUNDACCOUNTBALANCELIST)
|
|
74
|
+
const localVarPath = `/accounting-fund-request`;
|
|
75
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
76
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
77
|
+
let baseOptions;
|
|
78
|
+
if (configuration) {
|
|
79
|
+
baseOptions = configuration.baseOptions;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
83
|
+
const localVarHeaderParameter = {} as any;
|
|
84
|
+
const localVarQueryParameter = {} as any;
|
|
85
|
+
|
|
86
|
+
// authentication apiKeyAuth required
|
|
87
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
88
|
+
|
|
89
|
+
// authentication bearerAuth required
|
|
90
|
+
// http bearer authentication required
|
|
91
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
92
|
+
|
|
93
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
94
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
100
|
+
|
|
101
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
102
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
104
|
+
localVarRequestOptions.data = serializeDataIfNeeded(fUNDACCOUNTBALANCELIST, localVarRequestOptions, configuration)
|
|
105
|
+
|
|
106
|
+
return {
|
|
107
|
+
url: toPathString(localVarUrlObj),
|
|
108
|
+
options: localVarRequestOptions,
|
|
109
|
+
};
|
|
110
|
+
},
|
|
57
111
|
/**
|
|
58
112
|
* Creates Funding items and attaches them to an existing Deposit.
|
|
59
113
|
* @summary Add Funding to Deposit
|
|
@@ -623,6 +677,57 @@ export const AdvAccountingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
623
677
|
options: localVarRequestOptions,
|
|
624
678
|
};
|
|
625
679
|
},
|
|
680
|
+
/**
|
|
681
|
+
* Undo a previously voided check by Check ID. Returns the VBAProcess Key for log review and verification.
|
|
682
|
+
* @summary Undo Void Check
|
|
683
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
684
|
+
* @param {number} checkId Check ID
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
*/
|
|
688
|
+
undoVoidCheck: async (vbasoftwareDatabase: string, checkId: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
689
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
690
|
+
assertParamExists('undoVoidCheck', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
691
|
+
// verify required parameter 'checkId' is not null or undefined
|
|
692
|
+
assertParamExists('undoVoidCheck', 'checkId', checkId)
|
|
693
|
+
const localVarPath = `/checks-undo-void`;
|
|
694
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
695
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
696
|
+
let baseOptions;
|
|
697
|
+
if (configuration) {
|
|
698
|
+
baseOptions = configuration.baseOptions;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
702
|
+
const localVarHeaderParameter = {} as any;
|
|
703
|
+
const localVarQueryParameter = {} as any;
|
|
704
|
+
|
|
705
|
+
// authentication apiKeyAuth required
|
|
706
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
707
|
+
|
|
708
|
+
// authentication bearerAuth required
|
|
709
|
+
// http bearer authentication required
|
|
710
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
711
|
+
|
|
712
|
+
if (checkId !== undefined) {
|
|
713
|
+
localVarQueryParameter['checkId'] = checkId;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
717
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
723
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
724
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
725
|
+
|
|
726
|
+
return {
|
|
727
|
+
url: toPathString(localVarUrlObj),
|
|
728
|
+
options: localVarRequestOptions,
|
|
729
|
+
};
|
|
730
|
+
},
|
|
626
731
|
/**
|
|
627
732
|
* Voids an existing Check
|
|
628
733
|
* @summary Void Check
|
|
@@ -735,6 +840,18 @@ export const AdvAccountingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
735
840
|
export const AdvAccountingApiFp = function(configuration?: Configuration) {
|
|
736
841
|
const localVarAxiosParamCreator = AdvAccountingApiAxiosParamCreator(configuration)
|
|
737
842
|
return {
|
|
843
|
+
/**
|
|
844
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
845
|
+
* @summary Claim Account Funding
|
|
846
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
847
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
848
|
+
* @param {*} [options] Override http request option.
|
|
849
|
+
* @throws {RequiredError}
|
|
850
|
+
*/
|
|
851
|
+
async accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BooleanVBAResponse>> {
|
|
852
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options);
|
|
853
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
854
|
+
},
|
|
738
855
|
/**
|
|
739
856
|
* Creates Funding items and attaches them to an existing Deposit.
|
|
740
857
|
* @summary Add Funding to Deposit
|
|
@@ -872,6 +989,18 @@ export const AdvAccountingApiFp = function(configuration?: Configuration) {
|
|
|
872
989
|
const localVarAxiosArgs = await localVarAxiosParamCreator.transferFunds(vbasoftwareDatabase, fundingKey, fundingTransferFunds, options);
|
|
873
990
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
874
991
|
},
|
|
992
|
+
/**
|
|
993
|
+
* Undo a previously voided check by Check ID. Returns the VBAProcess Key for log review and verification.
|
|
994
|
+
* @summary Undo Void Check
|
|
995
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
996
|
+
* @param {number} checkId Check ID
|
|
997
|
+
* @param {*} [options] Override http request option.
|
|
998
|
+
* @throws {RequiredError}
|
|
999
|
+
*/
|
|
1000
|
+
async undoVoidCheck(vbasoftwareDatabase: string, checkId: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Int32VBAResponse>> {
|
|
1001
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.undoVoidCheck(vbasoftwareDatabase, checkId, options);
|
|
1002
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1003
|
+
},
|
|
875
1004
|
/**
|
|
876
1005
|
* Voids an existing Check
|
|
877
1006
|
* @summary Void Check
|
|
@@ -907,6 +1036,17 @@ export const AdvAccountingApiFp = function(configuration?: Configuration) {
|
|
|
907
1036
|
export const AdvAccountingApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
908
1037
|
const localVarFp = AdvAccountingApiFp(configuration)
|
|
909
1038
|
return {
|
|
1039
|
+
/**
|
|
1040
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
1041
|
+
* @summary Claim Account Funding
|
|
1042
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1043
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
1044
|
+
* @param {*} [options] Override http request option.
|
|
1045
|
+
* @throws {RequiredError}
|
|
1046
|
+
*/
|
|
1047
|
+
accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: any): AxiosPromise<BooleanVBAResponse> {
|
|
1048
|
+
return localVarFp.accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options).then((request) => request(axios, basePath));
|
|
1049
|
+
},
|
|
910
1050
|
/**
|
|
911
1051
|
* Creates Funding items and attaches them to an existing Deposit.
|
|
912
1052
|
* @summary Add Funding to Deposit
|
|
@@ -1033,6 +1173,17 @@ export const AdvAccountingApiFactory = function (configuration?: Configuration,
|
|
|
1033
1173
|
transferFunds(vbasoftwareDatabase: string, fundingKey: number, fundingTransferFunds: FundingTransferFunds, options?: any): AxiosPromise<FundingVBAResponse> {
|
|
1034
1174
|
return localVarFp.transferFunds(vbasoftwareDatabase, fundingKey, fundingTransferFunds, options).then((request) => request(axios, basePath));
|
|
1035
1175
|
},
|
|
1176
|
+
/**
|
|
1177
|
+
* Undo a previously voided check by Check ID. Returns the VBAProcess Key for log review and verification.
|
|
1178
|
+
* @summary Undo Void Check
|
|
1179
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1180
|
+
* @param {number} checkId Check ID
|
|
1181
|
+
* @param {*} [options] Override http request option.
|
|
1182
|
+
* @throws {RequiredError}
|
|
1183
|
+
*/
|
|
1184
|
+
undoVoidCheck(vbasoftwareDatabase: string, checkId: number, options?: any): AxiosPromise<Int32VBAResponse> {
|
|
1185
|
+
return localVarFp.undoVoidCheck(vbasoftwareDatabase, checkId, options).then((request) => request(axios, basePath));
|
|
1186
|
+
},
|
|
1036
1187
|
/**
|
|
1037
1188
|
* Voids an existing Check
|
|
1038
1189
|
* @summary Void Check
|
|
@@ -1065,6 +1216,17 @@ export const AdvAccountingApiFactory = function (configuration?: Configuration,
|
|
|
1065
1216
|
* @interface AdvAccountingApi
|
|
1066
1217
|
*/
|
|
1067
1218
|
export interface AdvAccountingApiInterface {
|
|
1219
|
+
/**
|
|
1220
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
1221
|
+
* @summary Claim Account Funding
|
|
1222
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1223
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
1224
|
+
* @param {*} [options] Override http request option.
|
|
1225
|
+
* @throws {RequiredError}
|
|
1226
|
+
* @memberof AdvAccountingApiInterface
|
|
1227
|
+
*/
|
|
1228
|
+
accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig): AxiosPromise<BooleanVBAResponse>;
|
|
1229
|
+
|
|
1068
1230
|
/**
|
|
1069
1231
|
* Creates Funding items and attaches them to an existing Deposit.
|
|
1070
1232
|
* @summary Add Funding to Deposit
|
|
@@ -1191,6 +1353,17 @@ export interface AdvAccountingApiInterface {
|
|
|
1191
1353
|
*/
|
|
1192
1354
|
transferFunds(vbasoftwareDatabase: string, fundingKey: number, fundingTransferFunds: FundingTransferFunds, options?: AxiosRequestConfig): AxiosPromise<FundingVBAResponse>;
|
|
1193
1355
|
|
|
1356
|
+
/**
|
|
1357
|
+
* Undo a previously voided check by Check ID. Returns the VBAProcess Key for log review and verification.
|
|
1358
|
+
* @summary Undo Void Check
|
|
1359
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1360
|
+
* @param {number} checkId Check ID
|
|
1361
|
+
* @param {*} [options] Override http request option.
|
|
1362
|
+
* @throws {RequiredError}
|
|
1363
|
+
* @memberof AdvAccountingApiInterface
|
|
1364
|
+
*/
|
|
1365
|
+
undoVoidCheck(vbasoftwareDatabase: string, checkId: number, options?: AxiosRequestConfig): AxiosPromise<Int32VBAResponse>;
|
|
1366
|
+
|
|
1194
1367
|
/**
|
|
1195
1368
|
* Voids an existing Check
|
|
1196
1369
|
* @summary Void Check
|
|
@@ -1223,6 +1396,19 @@ export interface AdvAccountingApiInterface {
|
|
|
1223
1396
|
* @extends {BaseAPI}
|
|
1224
1397
|
*/
|
|
1225
1398
|
export class AdvAccountingApi extends BaseAPI implements AdvAccountingApiInterface {
|
|
1399
|
+
/**
|
|
1400
|
+
* Submit a list of Payor/Account information to be funded based on configured parameters. Returns whether there are invalid entries in your list that were skipped during processing.
|
|
1401
|
+
* @summary Claim Account Funding
|
|
1402
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1403
|
+
* @param {Array<FUNDACCOUNTBALANCELIST>} fUNDACCOUNTBALANCELIST
|
|
1404
|
+
* @param {*} [options] Override http request option.
|
|
1405
|
+
* @throws {RequiredError}
|
|
1406
|
+
* @memberof AdvAccountingApi
|
|
1407
|
+
*/
|
|
1408
|
+
public accountingFundRequest(vbasoftwareDatabase: string, fUNDACCOUNTBALANCELIST: Array<FUNDACCOUNTBALANCELIST>, options?: AxiosRequestConfig) {
|
|
1409
|
+
return AdvAccountingApiFp(this.configuration).accountingFundRequest(vbasoftwareDatabase, fUNDACCOUNTBALANCELIST, options).then((request) => request(this.axios, this.basePath));
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1226
1412
|
/**
|
|
1227
1413
|
* Creates Funding items and attaches them to an existing Deposit.
|
|
1228
1414
|
* @summary Add Funding to Deposit
|
|
@@ -1371,6 +1557,19 @@ export class AdvAccountingApi extends BaseAPI implements AdvAccountingApiInterfa
|
|
|
1371
1557
|
return AdvAccountingApiFp(this.configuration).transferFunds(vbasoftwareDatabase, fundingKey, fundingTransferFunds, options).then((request) => request(this.axios, this.basePath));
|
|
1372
1558
|
}
|
|
1373
1559
|
|
|
1560
|
+
/**
|
|
1561
|
+
* Undo a previously voided check by Check ID. Returns the VBAProcess Key for log review and verification.
|
|
1562
|
+
* @summary Undo Void Check
|
|
1563
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
1564
|
+
* @param {number} checkId Check ID
|
|
1565
|
+
* @param {*} [options] Override http request option.
|
|
1566
|
+
* @throws {RequiredError}
|
|
1567
|
+
* @memberof AdvAccountingApi
|
|
1568
|
+
*/
|
|
1569
|
+
public undoVoidCheck(vbasoftwareDatabase: string, checkId: number, options?: AxiosRequestConfig) {
|
|
1570
|
+
return AdvAccountingApiFp(this.configuration).undoVoidCheck(vbasoftwareDatabase, checkId, options).then((request) => request(this.axios, this.basePath));
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1374
1573
|
/**
|
|
1375
1574
|
* Voids an existing Check
|
|
1376
1575
|
* @summary Void Check
|