@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250815.1 → 1.20251010.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.
Files changed (108) hide show
  1. package/.openapi-generator/FILES +40 -8
  2. package/api/accounting-api.ts +102 -0
  3. package/api/adv-accounting-api.ts +102 -0
  4. package/api/adv-billing-api.ts +30 -8
  5. package/api/adv-claim-api.ts +220 -0
  6. package/api/adv-reinsurance-api.ts +306 -0
  7. package/api/authentication-api.ts +190 -0
  8. package/api/company-data-api.ts +90 -0
  9. package/api/note-data-api.ts +195 -0
  10. package/api/password-policy-api.ts +258 -0
  11. package/api/plan-place-auth-api.ts +733 -0
  12. package/api/plan-place-auth-benefit-api.ts +773 -0
  13. package/api/premium-invoices-api.ts +30 -8
  14. package/api/reinsurance-contract-transactions-api.ts +208 -0
  15. package/api/reinsurance-contracts-api.ts +98 -0
  16. package/api/report-series-api.ts +102 -0
  17. package/api/subscribers-api.ts +17 -8
  18. package/api/zelis-redcard-api.ts +170 -0
  19. package/api.ts +4 -0
  20. package/docs/AccountingApi.md +57 -0
  21. package/docs/AdvAccountingApi.md +57 -0
  22. package/docs/AdvBillingApi.md +7 -1
  23. package/docs/AdvClaimApi.md +118 -0
  24. package/docs/AdvReinsuranceApi.md +174 -0
  25. package/docs/AuthenticationApi.md +110 -0
  26. package/docs/Claim.md +6 -0
  27. package/docs/ClaimBatch.md +6 -0
  28. package/docs/CompanyData.md +14 -0
  29. package/docs/CompanyDataApi.md +53 -0
  30. package/docs/DateTimeVBAResponse.md +24 -0
  31. package/docs/EmailReportDTO.md +0 -4
  32. package/docs/FaxReportDTO.md +0 -4
  33. package/docs/GenerateReinsAggTransaction.md +24 -0
  34. package/docs/GenerateReinsAggTransactionVBAResponse.md +24 -0
  35. package/docs/Members.md +19 -11
  36. package/docs/NoteDataApi.md +86 -0
  37. package/docs/PasswordPolicy.md +30 -0
  38. package/docs/PasswordPolicyApi.md +117 -0
  39. package/docs/PasswordPolicyVBAResponse.md +24 -0
  40. package/docs/PlanMaximum.md +2 -0
  41. package/docs/PlanPlaceAuth.md +38 -0
  42. package/docs/PlanPlaceAuthApi.md +372 -0
  43. package/docs/PlanPlaceAuthBenefit.md +32 -0
  44. package/docs/PlanPlaceAuthBenefitApi.md +387 -0
  45. package/docs/PlanPlaceAuthBenefitListVBAResponse.md +24 -0
  46. package/docs/PlanPlaceAuthBenefitVBAResponse.md +24 -0
  47. package/docs/PlanPlaceAuthListVBAResponse.md +24 -0
  48. package/docs/PlanPlaceAuthVBAResponse.md +24 -0
  49. package/docs/Plans.md +10 -0
  50. package/docs/PremiumInvoicesApi.md +7 -1
  51. package/docs/ReinsContract.md +2 -0
  52. package/docs/ReinsContractTrans.md +2 -0
  53. package/docs/ReinsContractTransClaim.md +2 -0
  54. package/docs/ReinsuranceContractTransactionsApi.md +118 -0
  55. package/docs/ReinsuranceContractsApi.md +56 -0
  56. package/docs/ReportDefinition.md +2 -0
  57. package/docs/ReportSeriesApi.md +57 -0
  58. package/docs/SMSDTO.md +0 -4
  59. package/docs/SubscribersApi.md +4 -1
  60. package/docs/VBABenefitInquiryRequest.md +6 -0
  61. package/docs/VBAProcessCorrespondenceTracking.md +22 -0
  62. package/docs/VBAProcessReceiptFile.md +24 -0
  63. package/docs/VBAReinsContractTransAmount.md +18 -0
  64. package/docs/VBAReinsContractTransClaim.md +14 -0
  65. package/docs/ZelisRedcardApi.md +64 -0
  66. package/docs/ZelisRedcardEOBRequest.md +26 -0
  67. package/docs/ZelisRedcardEOBResponse.md +24 -0
  68. package/docs/ZelisRedcardEOBResponseVBAResponse.md +24 -0
  69. package/models/claim-batch.ts +18 -0
  70. package/models/claim.ts +18 -0
  71. package/models/company-data.ts +42 -0
  72. package/models/{json-value.ts → date-time-vbaresponse.ts} +13 -13
  73. package/models/email-report-dto.ts +0 -15
  74. package/models/fax-report-dto.ts +0 -15
  75. package/models/generate-reins-agg-transaction-vbaresponse.ts +51 -0
  76. package/models/generate-reins-agg-transaction.ts +42 -0
  77. package/models/index.ts +16 -4
  78. package/models/members.ts +42 -18
  79. package/models/password-policy-vbaresponse.ts +51 -0
  80. package/models/password-policy.ts +60 -0
  81. package/models/plan-maximum.ts +6 -0
  82. package/models/plan-place-auth-benefit-list-vbaresponse.ts +51 -0
  83. package/models/plan-place-auth-benefit-vbaresponse.ts +51 -0
  84. package/models/plan-place-auth-benefit.ts +66 -0
  85. package/models/plan-place-auth-list-vbaresponse.ts +51 -0
  86. package/models/plan-place-auth-vbaresponse.ts +51 -0
  87. package/models/plan-place-auth.ts +84 -0
  88. package/models/plans.ts +30 -0
  89. package/models/reins-contract-trans-claim.ts +6 -0
  90. package/models/reins-contract-trans.ts +6 -0
  91. package/models/reins-contract.ts +6 -0
  92. package/models/report-definition.ts +6 -0
  93. package/models/smsdto.ts +0 -15
  94. package/models/vbabenefit-inquiry-request.ts +18 -0
  95. package/models/{json-node-options.ts → vbaprocess-correspondence-tracking.ts} +11 -5
  96. package/models/vbaprocess-receipt-file.ts +42 -0
  97. package/models/vbareins-contract-trans-amount.ts +54 -0
  98. package/models/vbareins-contract-trans-claim.ts +42 -0
  99. package/models/zelis-redcard-eobrequest.ts +48 -0
  100. package/models/zelis-redcard-eobresponse-vbaresponse.ts +51 -0
  101. package/models/zelis-redcard-eobresponse.ts +42 -0
  102. package/package.json +1 -1
  103. package/docs/CallbackDTO.md +0 -24
  104. package/docs/JsonNode.md +0 -24
  105. package/docs/JsonNodeOptions.md +0 -20
  106. package/docs/JsonValue.md +0 -24
  107. package/models/callback-dto.ts +0 -45
  108. package/models/json-node.ts +0 -45
@@ -571,6 +571,7 @@ api/note-sources-api.ts
571
571
  api/note-types-api.ts
572
572
  api/objects-api.ts
573
573
  api/occupations-api.ts
574
+ api/password-policy-api.ts
574
575
  api/patient-status-api.ts
575
576
  api/pay-frequency-api.ts
576
577
  api/payee-accounts-api.ts
@@ -619,6 +620,8 @@ api/plan-lineage-details-api.ts
619
620
  api/plan-lineages-api.ts
620
621
  api/plan-maximums-api.ts
621
622
  api/plan-modifiers-api.ts
623
+ api/plan-place-auth-api.ts
624
+ api/plan-place-auth-benefit-api.ts
622
625
  api/plan-pre-existing-coverages-api.ts
623
626
  api/plan-procedure-age-restriction-modifiers-api.ts
624
627
  api/plan-procedure-age-restrictions-api.ts
@@ -889,6 +892,7 @@ api/zelis-cost-containment-claim-repricing-api.ts
889
892
  api/zelis-cost-containment-edit-codes-api.ts
890
893
  api/zelis-cost-containment-eobcodes-api.ts
891
894
  api/zelis-cost-containment-polls-api.ts
895
+ api/zelis-redcard-api.ts
892
896
  api/zip-codes-api.ts
893
897
  base.ts
894
898
  common.ts
@@ -1113,7 +1117,6 @@ docs/CallTrackingSubscribersApi.md
1113
1117
  docs/CallTrackingVBAResponse.md
1114
1118
  docs/CallTrackingsApi.md
1115
1119
  docs/CallTypesApi.md
1116
- docs/CallbackDTO.md
1117
1120
  docs/CallerTypesApi.md
1118
1121
  docs/CandidateClaim.md
1119
1122
  docs/Capitation.md
@@ -2138,6 +2141,7 @@ docs/DRGWeightListVBAResponse.md
2138
2141
  docs/DRGWeightVBAResponse.md
2139
2142
  docs/DataTypesApi.md
2140
2143
  docs/DatabaseConnection.md
2144
+ docs/DateTimeVBAResponse.md
2141
2145
  docs/DayInterval.md
2142
2146
  docs/DayIntervalListVBAResponse.md
2143
2147
  docs/DayIntervalVBAResponse.md
@@ -2498,6 +2502,8 @@ docs/GenderApi.md
2498
2502
  docs/GenderListVBAResponse.md
2499
2503
  docs/GenderVBAResponse.md
2500
2504
  docs/GeneratePremInvoice.md
2505
+ docs/GenerateReinsAggTransaction.md
2506
+ docs/GenerateReinsAggTransactionVBAResponse.md
2501
2507
  docs/GenerateReinsTransaction.md
2502
2508
  docs/GenerateReinsTransactionVBAResponse.md
2503
2509
  docs/GetPlanMaxClaimDetailResult.md
@@ -2876,9 +2882,6 @@ docs/JobTypeVBAResponse.md
2876
2882
  docs/JobTypesApi.md
2877
2883
  docs/JobVBAResponse.md
2878
2884
  docs/JobsApi.md
2879
- docs/JsonNode.md
2880
- docs/JsonNodeOptions.md
2881
- docs/JsonValue.md
2882
2885
  docs/KeyValuePair.md
2883
2886
  docs/LanguageSkillLevelsApi.md
2884
2887
  docs/Languages.md
@@ -3144,6 +3147,9 @@ docs/PBMType.md
3144
3147
  docs/PBMTypeListVBAResponse.md
3145
3148
  docs/PBMTypeVBAResponse.md
3146
3149
  docs/PBMTypesApi.md
3150
+ docs/PasswordPolicy.md
3151
+ docs/PasswordPolicyApi.md
3152
+ docs/PasswordPolicyVBAResponse.md
3147
3153
  docs/PatientStatus.md
3148
3154
  docs/PatientStatusApi.md
3149
3155
  docs/PatientStatusListVBAResponse.md
@@ -3329,6 +3335,14 @@ docs/PlanModifier.md
3329
3335
  docs/PlanModifierListVBAResponse.md
3330
3336
  docs/PlanModifierVBAResponse.md
3331
3337
  docs/PlanModifiersApi.md
3338
+ docs/PlanPlaceAuth.md
3339
+ docs/PlanPlaceAuthApi.md
3340
+ docs/PlanPlaceAuthBenefit.md
3341
+ docs/PlanPlaceAuthBenefitApi.md
3342
+ docs/PlanPlaceAuthBenefitListVBAResponse.md
3343
+ docs/PlanPlaceAuthBenefitVBAResponse.md
3344
+ docs/PlanPlaceAuthListVBAResponse.md
3345
+ docs/PlanPlaceAuthVBAResponse.md
3332
3346
  docs/PlanPreEx.md
3333
3347
  docs/PlanPreExListVBAResponse.md
3334
3348
  docs/PlanPreExVBAResponse.md
@@ -4388,6 +4402,7 @@ docs/VBAPremInvoiceSubscriberHistory.md
4388
4402
  docs/VBAPremInvoiceSubscriberHistoryListVBAResponse.md
4389
4403
  docs/VBAProblemDetails.md
4390
4404
  docs/VBAProcess.md
4405
+ docs/VBAProcessCorrespondenceTracking.md
4391
4406
  docs/VBAProcessLog.md
4392
4407
  docs/VBAProcessLogListVBAResponse.md
4393
4408
  docs/VBAProcessLogVBAResponse.md
@@ -4396,6 +4411,7 @@ docs/VBAProcessParameterVBAResponse.md
4396
4411
  docs/VBAProcessPaymentFile.md
4397
4412
  docs/VBAProcessPaymentFileResponse.md
4398
4413
  docs/VBAProcessPaymentFileResponseVBAResponse.md
4414
+ docs/VBAProcessReceiptFile.md
4399
4415
  docs/VBAProcessVBAResponse.md
4400
4416
  docs/VBAReinsContractTransAmount.md
4401
4417
  docs/VBAReinsContractTransAmountVBAResponse.md
@@ -4472,6 +4488,10 @@ docs/ZelisCostContainmentClaimRepricingApi.md
4472
4488
  docs/ZelisCostContainmentEOBCodesApi.md
4473
4489
  docs/ZelisCostContainmentEditCodesApi.md
4474
4490
  docs/ZelisCostContainmentPollsApi.md
4491
+ docs/ZelisRedcardApi.md
4492
+ docs/ZelisRedcardEOBRequest.md
4493
+ docs/ZelisRedcardEOBResponse.md
4494
+ docs/ZelisRedcardEOBResponseVBAResponse.md
4475
4495
  docs/ZipCodes.md
4476
4496
  docs/ZipCodesApi.md
4477
4497
  docs/ZipCodesListVBAResponse.md
@@ -4621,7 +4641,6 @@ models/call-tracking-subscriber-vbaresponse.ts
4621
4641
  models/call-tracking-subscriber.ts
4622
4642
  models/call-tracking-vbaresponse.ts
4623
4643
  models/call-tracking.ts
4624
- models/callback-dto.ts
4625
4644
  models/candidate-claim.ts
4626
4645
  models/capitation-adjustment-list-vbaresponse.ts
4627
4646
  models/capitation-adjustment-reason-list-vbaresponse.ts
@@ -5395,6 +5414,7 @@ models/currency-list-vbaresponse.ts
5395
5414
  models/currency-vbaresponse.ts
5396
5415
  models/currency.ts
5397
5416
  models/database-connection.ts
5417
+ models/date-time-vbaresponse.ts
5398
5418
  models/day-interval-list-vbaresponse.ts
5399
5419
  models/day-interval-vbaresponse.ts
5400
5420
  models/day-interval.ts
@@ -5680,6 +5700,8 @@ models/gender-list-vbaresponse.ts
5680
5700
  models/gender-vbaresponse.ts
5681
5701
  models/gender.ts
5682
5702
  models/generate-prem-invoice.ts
5703
+ models/generate-reins-agg-transaction-vbaresponse.ts
5704
+ models/generate-reins-agg-transaction.ts
5683
5705
  models/generate-reins-transaction-vbaresponse.ts
5684
5706
  models/generate-reins-transaction.ts
5685
5707
  models/get-plan-max-claim-detail-result-list-vbaresponse.ts
@@ -5959,9 +5981,6 @@ models/job-type-vbaresponse.ts
5959
5981
  models/job-type.ts
5960
5982
  models/job-vbaresponse.ts
5961
5983
  models/job.ts
5962
- models/json-node-options.ts
5963
- models/json-node.ts
5964
- models/json-value.ts
5965
5984
  models/key-value-pair.ts
5966
5985
  models/languages-list-vbaresponse.ts
5967
5986
  models/languages-vbaresponse.ts
@@ -6157,6 +6176,8 @@ models/occupation-list-vbaresponse.ts
6157
6176
  models/occupation-vbaresponse.ts
6158
6177
  models/occupation.ts
6159
6178
  models/option-criteria.ts
6179
+ models/password-policy-vbaresponse.ts
6180
+ models/password-policy.ts
6160
6181
  models/patient-status-list-vbaresponse.ts
6161
6182
  models/patient-status-vbaresponse.ts
6162
6183
  models/patient-status.ts
@@ -6298,6 +6319,12 @@ models/plan-maximum.ts
6298
6319
  models/plan-modifier-list-vbaresponse.ts
6299
6320
  models/plan-modifier-vbaresponse.ts
6300
6321
  models/plan-modifier.ts
6322
+ models/plan-place-auth-benefit-list-vbaresponse.ts
6323
+ models/plan-place-auth-benefit-vbaresponse.ts
6324
+ models/plan-place-auth-benefit.ts
6325
+ models/plan-place-auth-list-vbaresponse.ts
6326
+ models/plan-place-auth-vbaresponse.ts
6327
+ models/plan-place-auth.ts
6301
6328
  models/plan-pre-ex-list-vbaresponse.ts
6302
6329
  models/plan-pre-ex-vbaresponse.ts
6303
6330
  models/plan-pre-ex.ts
@@ -7106,6 +7133,7 @@ models/vbaprem-invoice-subscriber-detail.ts
7106
7133
  models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts
7107
7134
  models/vbaprem-invoice-subscriber-history.ts
7108
7135
  models/vbaproblem-details.ts
7136
+ models/vbaprocess-correspondence-tracking.ts
7109
7137
  models/vbaprocess-log-list-vbaresponse.ts
7110
7138
  models/vbaprocess-log-vbaresponse.ts
7111
7139
  models/vbaprocess-log.ts
@@ -7114,6 +7142,7 @@ models/vbaprocess-parameter.ts
7114
7142
  models/vbaprocess-payment-file-response-vbaresponse.ts
7115
7143
  models/vbaprocess-payment-file-response.ts
7116
7144
  models/vbaprocess-payment-file.ts
7145
+ models/vbaprocess-receipt-file.ts
7117
7146
  models/vbaprocess-vbaresponse.ts
7118
7147
  models/vbaprocess.ts
7119
7148
  models/vbareins-contract-trans-amount-vbaresponse.ts
@@ -7171,6 +7200,9 @@ models/workflow-user-vbaresponse.ts
7171
7200
  models/workflow-user.ts
7172
7201
  models/workflow-vbaresponse.ts
7173
7202
  models/workflow.ts
7203
+ models/zelis-redcard-eobrequest.ts
7204
+ models/zelis-redcard-eobresponse-vbaresponse.ts
7205
+ models/zelis-redcard-eobresponse.ts
7174
7206
  models/zip-codes-list-vbaresponse.ts
7175
7207
  models/zip-codes-vbaresponse.ts
7176
7208
  models/zip-codes.ts
@@ -26,8 +26,12 @@ import type { BooleanVBAResponse } from '../models';
26
26
  // @ts-ignore
27
27
  import type { FUNDACCOUNTBALANCELIST } from '../models';
28
28
  // @ts-ignore
29
+ import type { FundingListVBAResponse } from '../models';
30
+ // @ts-ignore
29
31
  import type { FundingProcessClaimRefund } from '../models';
30
32
  // @ts-ignore
33
+ import type { VBAProcessReceiptFile } from '../models';
34
+ // @ts-ignore
31
35
  import type { VBAUpdateClaimFundedStatus } from '../models';
32
36
  // @ts-ignore
33
37
  import type { VBAUpdateRecon } from '../models';
@@ -184,6 +188,55 @@ export const AccountingApiAxiosParamCreator = function (configuration?: Configur
184
188
  options: localVarRequestOptions,
185
189
  };
186
190
  },
191
+ /**
192
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
193
+ * @summary Process Receipt File
194
+ * @param {string} vbasoftwareDatabase Target database
195
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
196
+ * @param {*} [options] Override http request option.
197
+ * @throws {RequiredError}
198
+ */
199
+ processReceiptFile: async (vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
200
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
201
+ assertParamExists('processReceiptFile', 'vbasoftwareDatabase', vbasoftwareDatabase)
202
+ // verify required parameter 'vBAProcessReceiptFile' is not null or undefined
203
+ assertParamExists('processReceiptFile', 'vBAProcessReceiptFile', vBAProcessReceiptFile)
204
+ const localVarPath = `/process-receipt-file`;
205
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
206
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
207
+ let baseOptions;
208
+ if (configuration) {
209
+ baseOptions = configuration.baseOptions;
210
+ }
211
+
212
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
213
+ const localVarHeaderParameter = {} as any;
214
+ const localVarQueryParameter = {} as any;
215
+
216
+ // authentication apiKeyAuth required
217
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
218
+
219
+ // authentication bearerAuth required
220
+ // http bearer authentication required
221
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
222
+
223
+
224
+
225
+ localVarHeaderParameter['Content-Type'] = 'application/json';
226
+
227
+ if (vbasoftwareDatabase != null) {
228
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
229
+ }
230
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
231
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
232
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
233
+ localVarRequestOptions.data = serializeDataIfNeeded(vBAProcessReceiptFile, localVarRequestOptions, configuration)
234
+
235
+ return {
236
+ url: toPathString(localVarUrlObj),
237
+ options: localVarRequestOptions,
238
+ };
239
+ },
187
240
  /**
188
241
  * Based on submitted details, update the Disbursed and Received tables for cleared items on the selected Reconciliation.
189
242
  * @summary Sync and Update Debits and Credits for a Recon
@@ -285,6 +338,20 @@ export const AccountingApiFp = function(configuration?: Configuration) {
285
338
  const localVarOperationServerBasePath = operationServerMap['AccountingApi.massUpdateClaimFundedStatus']?.[localVarOperationServerIndex]?.url;
286
339
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
287
340
  },
341
+ /**
342
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
343
+ * @summary Process Receipt File
344
+ * @param {string} vbasoftwareDatabase Target database
345
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ async processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingListVBAResponse>> {
350
+ const localVarAxiosArgs = await localVarAxiosParamCreator.processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options);
351
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
352
+ const localVarOperationServerBasePath = operationServerMap['AccountingApi.processReceiptFile']?.[localVarOperationServerIndex]?.url;
353
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
354
+ },
288
355
  /**
289
356
  * Based on submitted details, update the Disbursed and Received tables for cleared items on the selected Reconciliation.
290
357
  * @summary Sync and Update Debits and Credits for a Recon
@@ -342,6 +409,17 @@ export const AccountingApiFactory = function (configuration?: Configuration, bas
342
409
  massUpdateClaimFundedStatus(vbasoftwareDatabase: string, vBAUpdateClaimFundedStatus: Array<VBAUpdateClaimFundedStatus>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
343
410
  return localVarFp.massUpdateClaimFundedStatus(vbasoftwareDatabase, vBAUpdateClaimFundedStatus, options).then((request) => request(axios, basePath));
344
411
  },
412
+ /**
413
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
414
+ * @summary Process Receipt File
415
+ * @param {string} vbasoftwareDatabase Target database
416
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
417
+ * @param {*} [options] Override http request option.
418
+ * @throws {RequiredError}
419
+ */
420
+ processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): AxiosPromise<FundingListVBAResponse> {
421
+ return localVarFp.processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options).then((request) => request(axios, basePath));
422
+ },
345
423
  /**
346
424
  * Based on submitted details, update the Disbursed and Received tables for cleared items on the selected Reconciliation.
347
425
  * @summary Sync and Update Debits and Credits for a Recon
@@ -395,6 +473,17 @@ export interface AccountingApiInterface {
395
473
  */
396
474
  massUpdateClaimFundedStatus(vbasoftwareDatabase: string, vBAUpdateClaimFundedStatus: Array<VBAUpdateClaimFundedStatus>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
397
475
 
476
+ /**
477
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
478
+ * @summary Process Receipt File
479
+ * @param {string} vbasoftwareDatabase Target database
480
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
481
+ * @param {*} [options] Override http request option.
482
+ * @throws {RequiredError}
483
+ * @memberof AccountingApiInterface
484
+ */
485
+ processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): AxiosPromise<FundingListVBAResponse>;
486
+
398
487
  /**
399
488
  * Based on submitted details, update the Disbursed and Received tables for cleared items on the selected Reconciliation.
400
489
  * @summary Sync and Update Debits and Credits for a Recon
@@ -454,6 +543,19 @@ export class AccountingApi extends BaseAPI implements AccountingApiInterface {
454
543
  return AccountingApiFp(this.configuration).massUpdateClaimFundedStatus(vbasoftwareDatabase, vBAUpdateClaimFundedStatus, options).then((request) => request(this.axios, this.basePath));
455
544
  }
456
545
 
546
+ /**
547
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
548
+ * @summary Process Receipt File
549
+ * @param {string} vbasoftwareDatabase Target database
550
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
551
+ * @param {*} [options] Override http request option.
552
+ * @throws {RequiredError}
553
+ * @memberof AccountingApi
554
+ */
555
+ public processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig) {
556
+ return AccountingApiFp(this.configuration).processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options).then((request) => request(this.axios, this.basePath));
557
+ }
558
+
457
559
  /**
458
560
  * Based on submitted details, update the Disbursed and Received tables for cleared items on the selected Reconciliation.
459
561
  * @summary Sync and Update Debits and Credits for a Recon
@@ -34,6 +34,8 @@ import type { FundingAccountBalanceVBAResponse } from '../models';
34
34
  // @ts-ignore
35
35
  import type { FundingDepositVBAResponse } from '../models';
36
36
  // @ts-ignore
37
+ import type { FundingListVBAResponse } from '../models';
38
+ // @ts-ignore
37
39
  import type { FundingNameOnCheck } from '../models';
38
40
  // @ts-ignore
39
41
  import type { FundingNameOnCheckVBAResponse } from '../models';
@@ -54,6 +56,8 @@ import type { FundingVoidCheck } from '../models';
54
56
  // @ts-ignore
55
57
  import type { Int32VBAResponse } from '../models';
56
58
  // @ts-ignore
59
+ import type { VBAProcessReceiptFile } from '../models';
60
+ // @ts-ignore
57
61
  import type { VBAUpdateClaimFundedStatus } from '../models';
58
62
  // @ts-ignore
59
63
  import type { VBAUpdateRecon } from '../models';
@@ -562,6 +566,55 @@ export const AdvAccountingApiAxiosParamCreator = function (configuration?: Confi
562
566
  options: localVarRequestOptions,
563
567
  };
564
568
  },
569
+ /**
570
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
571
+ * @summary Process Receipt File
572
+ * @param {string} vbasoftwareDatabase Target database
573
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
574
+ * @param {*} [options] Override http request option.
575
+ * @throws {RequiredError}
576
+ */
577
+ processReceiptFile: async (vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
578
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
579
+ assertParamExists('processReceiptFile', 'vbasoftwareDatabase', vbasoftwareDatabase)
580
+ // verify required parameter 'vBAProcessReceiptFile' is not null or undefined
581
+ assertParamExists('processReceiptFile', 'vBAProcessReceiptFile', vBAProcessReceiptFile)
582
+ const localVarPath = `/process-receipt-file`;
583
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
584
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
585
+ let baseOptions;
586
+ if (configuration) {
587
+ baseOptions = configuration.baseOptions;
588
+ }
589
+
590
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
591
+ const localVarHeaderParameter = {} as any;
592
+ const localVarQueryParameter = {} as any;
593
+
594
+ // authentication apiKeyAuth required
595
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
596
+
597
+ // authentication bearerAuth required
598
+ // http bearer authentication required
599
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
600
+
601
+
602
+
603
+ localVarHeaderParameter['Content-Type'] = 'application/json';
604
+
605
+ if (vbasoftwareDatabase != null) {
606
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
607
+ }
608
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
609
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
610
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
611
+ localVarRequestOptions.data = serializeDataIfNeeded(vBAProcessReceiptFile, localVarRequestOptions, configuration)
612
+
613
+ return {
614
+ url: toPathString(localVarUrlObj),
615
+ options: localVarRequestOptions,
616
+ };
617
+ },
565
618
  /**
566
619
  * Change the Payor ID and Account Key of an existing funding item.
567
620
  * @summary Reacllocate Funds
@@ -1070,6 +1123,20 @@ export const AdvAccountingApiFp = function(configuration?: Configuration) {
1070
1123
  const localVarOperationServerBasePath = operationServerMap['AdvAccountingApi.processChecks']?.[localVarOperationServerIndex]?.url;
1071
1124
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1072
1125
  },
1126
+ /**
1127
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
1128
+ * @summary Process Receipt File
1129
+ * @param {string} vbasoftwareDatabase Target database
1130
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
1131
+ * @param {*} [options] Override http request option.
1132
+ * @throws {RequiredError}
1133
+ */
1134
+ async processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FundingListVBAResponse>> {
1135
+ const localVarAxiosArgs = await localVarAxiosParamCreator.processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options);
1136
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1137
+ const localVarOperationServerBasePath = operationServerMap['AdvAccountingApi.processReceiptFile']?.[localVarOperationServerIndex]?.url;
1138
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1139
+ },
1073
1140
  /**
1074
1141
  * Change the Payor ID and Account Key of an existing funding item.
1075
1142
  * @summary Reacllocate Funds
@@ -1294,6 +1361,17 @@ export const AdvAccountingApiFactory = function (configuration?: Configuration,
1294
1361
  processChecks(vbasoftwareDatabase: string, fundingProcessCheck: FundingProcessCheck, options?: RawAxiosRequestConfig): AxiosPromise<Int32VBAResponse> {
1295
1362
  return localVarFp.processChecks(vbasoftwareDatabase, fundingProcessCheck, options).then((request) => request(axios, basePath));
1296
1363
  },
1364
+ /**
1365
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
1366
+ * @summary Process Receipt File
1367
+ * @param {string} vbasoftwareDatabase Target database
1368
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
1369
+ * @param {*} [options] Override http request option.
1370
+ * @throws {RequiredError}
1371
+ */
1372
+ processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): AxiosPromise<FundingListVBAResponse> {
1373
+ return localVarFp.processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options).then((request) => request(axios, basePath));
1374
+ },
1297
1375
  /**
1298
1376
  * Change the Payor ID and Account Key of an existing funding item.
1299
1377
  * @summary Reacllocate Funds
@@ -1496,6 +1574,17 @@ export interface AdvAccountingApiInterface {
1496
1574
  */
1497
1575
  processChecks(vbasoftwareDatabase: string, fundingProcessCheck: FundingProcessCheck, options?: RawAxiosRequestConfig): AxiosPromise<Int32VBAResponse>;
1498
1576
 
1577
+ /**
1578
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
1579
+ * @summary Process Receipt File
1580
+ * @param {string} vbasoftwareDatabase Target database
1581
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
1582
+ * @param {*} [options] Override http request option.
1583
+ * @throws {RequiredError}
1584
+ * @memberof AdvAccountingApiInterface
1585
+ */
1586
+ processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig): AxiosPromise<FundingListVBAResponse>;
1587
+
1499
1588
  /**
1500
1589
  * Change the Payor ID and Account Key of an existing funding item.
1501
1590
  * @summary Reacllocate Funds
@@ -1718,6 +1807,19 @@ export class AdvAccountingApi extends BaseAPI implements AdvAccountingApiInterfa
1718
1807
  return AdvAccountingApiFp(this.configuration).processChecks(vbasoftwareDatabase, fundingProcessCheck, options).then((request) => request(this.axios, this.basePath));
1719
1808
  }
1720
1809
 
1810
+ /**
1811
+ * Import a defined Receipt File in .csv format to then have Funding items populated in a response so that they can then be created or modified. This process does not create Funding items but returns the Funding items that should be created.
1812
+ * @summary Process Receipt File
1813
+ * @param {string} vbasoftwareDatabase Target database
1814
+ * @param {VBAProcessReceiptFile} vBAProcessReceiptFile
1815
+ * @param {*} [options] Override http request option.
1816
+ * @throws {RequiredError}
1817
+ * @memberof AdvAccountingApi
1818
+ */
1819
+ public processReceiptFile(vbasoftwareDatabase: string, vBAProcessReceiptFile: VBAProcessReceiptFile, options?: RawAxiosRequestConfig) {
1820
+ return AdvAccountingApiFp(this.configuration).processReceiptFile(vbasoftwareDatabase, vBAProcessReceiptFile, options).then((request) => request(this.axios, this.basePath));
1821
+ }
1822
+
1721
1823
  /**
1722
1824
  * Change the Payor ID and Account Key of an existing funding item.
1723
1825
  * @summary Reacllocate Funds
@@ -1978,14 +1978,20 @@ export const AdvBillingApiAxiosParamCreator = function (configuration?: Configur
1978
1978
  * @summary Regenerate Invoice
1979
1979
  * @param {string} vbasoftwareDatabase Target database
1980
1980
  * @param {number} invoiceKey Invoice Key
1981
+ * @param {boolean} deleteAdditionalInvoices Delete Additional Invoices
1982
+ * @param {boolean} keepManualAdjustments Keep Manual Adjustments
1981
1983
  * @param {*} [options] Override http request option.
1982
1984
  * @throws {RequiredError}
1983
1985
  */
1984
- regenerateInvoice: async (vbasoftwareDatabase: string, invoiceKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1986
+ regenerateInvoice: async (vbasoftwareDatabase: string, invoiceKey: number, deleteAdditionalInvoices: boolean, keepManualAdjustments: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1985
1987
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
1986
1988
  assertParamExists('regenerateInvoice', 'vbasoftwareDatabase', vbasoftwareDatabase)
1987
1989
  // verify required parameter 'invoiceKey' is not null or undefined
1988
1990
  assertParamExists('regenerateInvoice', 'invoiceKey', invoiceKey)
1991
+ // verify required parameter 'deleteAdditionalInvoices' is not null or undefined
1992
+ assertParamExists('regenerateInvoice', 'deleteAdditionalInvoices', deleteAdditionalInvoices)
1993
+ // verify required parameter 'keepManualAdjustments' is not null or undefined
1994
+ assertParamExists('regenerateInvoice', 'keepManualAdjustments', keepManualAdjustments)
1989
1995
  const localVarPath = `/invoice-regenerate/{invoiceKey}`
1990
1996
  .replace(`{${"invoiceKey"}}`, encodeURIComponent(String(invoiceKey)));
1991
1997
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -2006,6 +2012,14 @@ export const AdvBillingApiAxiosParamCreator = function (configuration?: Configur
2006
2012
  // http bearer authentication required
2007
2013
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
2008
2014
 
2015
+ if (deleteAdditionalInvoices !== undefined) {
2016
+ localVarQueryParameter['deleteAdditionalInvoices'] = deleteAdditionalInvoices;
2017
+ }
2018
+
2019
+ if (keepManualAdjustments !== undefined) {
2020
+ localVarQueryParameter['keepManualAdjustments'] = keepManualAdjustments;
2021
+ }
2022
+
2009
2023
 
2010
2024
 
2011
2025
  if (vbasoftwareDatabase != null) {
@@ -2761,11 +2775,13 @@ export const AdvBillingApiFp = function(configuration?: Configuration) {
2761
2775
  * @summary Regenerate Invoice
2762
2776
  * @param {string} vbasoftwareDatabase Target database
2763
2777
  * @param {number} invoiceKey Invoice Key
2778
+ * @param {boolean} deleteAdditionalInvoices Delete Additional Invoices
2779
+ * @param {boolean} keepManualAdjustments Keep Manual Adjustments
2764
2780
  * @param {*} [options] Override http request option.
2765
2781
  * @throws {RequiredError}
2766
2782
  */
2767
- async regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
2768
- const localVarAxiosArgs = await localVarAxiosParamCreator.regenerateInvoice(vbasoftwareDatabase, invoiceKey, options);
2783
+ async regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, deleteAdditionalInvoices: boolean, keepManualAdjustments: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
2784
+ const localVarAxiosArgs = await localVarAxiosParamCreator.regenerateInvoice(vbasoftwareDatabase, invoiceKey, deleteAdditionalInvoices, keepManualAdjustments, options);
2769
2785
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2770
2786
  const localVarOperationServerBasePath = operationServerMap['AdvBillingApi.regenerateInvoice']?.[localVarOperationServerIndex]?.url;
2771
2787
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -3268,11 +3284,13 @@ export const AdvBillingApiFactory = function (configuration?: Configuration, bas
3268
3284
  * @summary Regenerate Invoice
3269
3285
  * @param {string} vbasoftwareDatabase Target database
3270
3286
  * @param {number} invoiceKey Invoice Key
3287
+ * @param {boolean} deleteAdditionalInvoices Delete Additional Invoices
3288
+ * @param {boolean} keepManualAdjustments Keep Manual Adjustments
3271
3289
  * @param {*} [options] Override http request option.
3272
3290
  * @throws {RequiredError}
3273
3291
  */
3274
- regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
3275
- return localVarFp.regenerateInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(axios, basePath));
3292
+ regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, deleteAdditionalInvoices: boolean, keepManualAdjustments: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
3293
+ return localVarFp.regenerateInvoice(vbasoftwareDatabase, invoiceKey, deleteAdditionalInvoices, keepManualAdjustments, options).then((request) => request(axios, basePath));
3276
3294
  },
3277
3295
  /**
3278
3296
  * This will trigger Generate Invoice Process Automation.
@@ -3759,11 +3777,13 @@ export interface AdvBillingApiInterface {
3759
3777
  * @summary Regenerate Invoice
3760
3778
  * @param {string} vbasoftwareDatabase Target database
3761
3779
  * @param {number} invoiceKey Invoice Key
3780
+ * @param {boolean} deleteAdditionalInvoices Delete Additional Invoices
3781
+ * @param {boolean} keepManualAdjustments Keep Manual Adjustments
3762
3782
  * @param {*} [options] Override http request option.
3763
3783
  * @throws {RequiredError}
3764
3784
  * @memberof AdvBillingApiInterface
3765
3785
  */
3766
- regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3786
+ regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, deleteAdditionalInvoices: boolean, keepManualAdjustments: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3767
3787
 
3768
3788
  /**
3769
3789
  * This will trigger Generate Invoice Process Automation.
@@ -4324,12 +4344,14 @@ export class AdvBillingApi extends BaseAPI implements AdvBillingApiInterface {
4324
4344
  * @summary Regenerate Invoice
4325
4345
  * @param {string} vbasoftwareDatabase Target database
4326
4346
  * @param {number} invoiceKey Invoice Key
4347
+ * @param {boolean} deleteAdditionalInvoices Delete Additional Invoices
4348
+ * @param {boolean} keepManualAdjustments Keep Manual Adjustments
4327
4349
  * @param {*} [options] Override http request option.
4328
4350
  * @throws {RequiredError}
4329
4351
  * @memberof AdvBillingApi
4330
4352
  */
4331
- public regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, options?: RawAxiosRequestConfig) {
4332
- return AdvBillingApiFp(this.configuration).regenerateInvoice(vbasoftwareDatabase, invoiceKey, options).then((request) => request(this.axios, this.basePath));
4353
+ public regenerateInvoice(vbasoftwareDatabase: string, invoiceKey: number, deleteAdditionalInvoices: boolean, keepManualAdjustments: boolean, options?: RawAxiosRequestConfig) {
4354
+ return AdvBillingApiFp(this.configuration).regenerateInvoice(vbasoftwareDatabase, invoiceKey, deleteAdditionalInvoices, keepManualAdjustments, options).then((request) => request(this.axios, this.basePath));
4333
4355
  }
4334
4356
 
4335
4357
  /**