@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250115.8 → 1.20250117.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 +8 -0
- package/api/adv-billing-api.ts +103 -1
- package/api/adv-group-contracts-api.ts +198 -0
- package/api/claim-adjudication-api.ts +22 -15
- package/api/group-contracts-api.ts +198 -0
- package/api/group-day-interval-api.ts +793 -0
- package/api/jobs-api.ts +108 -0
- package/api/premium-payments-api.ts +102 -0
- package/api/report-series-processes-api.ts +1 -1
- package/api.ts +1 -0
- package/models/covered-benefit.ts +24 -0
- package/models/group-contract-copy-config.ts +54 -0
- package/models/group-day-interval-list-vbaresponse.ts +51 -0
- package/models/group-day-interval-vbaresponse.ts +51 -0
- package/models/group-day-interval.ts +78 -0
- package/models/index.ts +7 -0
- package/models/vbaprocess-payment-file-response-vbaresponse.ts +51 -0
- package/models/vbaprocess-payment-file-response.ts +48 -0
- package/models/vbaprocess-payment-file.ts +78 -0
- package/package.json +1 -1
package/api/jobs-api.ts
CHANGED
|
@@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError
|
|
|
24
24
|
// @ts-ignore
|
|
25
25
|
import type { Job } from '../models';
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { JobExecutionMetaData } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
27
29
|
import type { JobListVBAResponse } from '../models';
|
|
28
30
|
// @ts-ignore
|
|
29
31
|
import type { JobVBAResponse } from '../models';
|
|
@@ -236,6 +238,59 @@ export const JobsApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
236
238
|
options: localVarRequestOptions,
|
|
237
239
|
};
|
|
238
240
|
},
|
|
241
|
+
/**
|
|
242
|
+
* Execute a Job Runner Job.
|
|
243
|
+
* @summary Run Job
|
|
244
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
245
|
+
* @param {string} jobID Job ID
|
|
246
|
+
* @param {Array<JobExecutionMetaData>} jobExecutionMetaData
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
runJob: async (vbasoftwareDatabase: string, jobID: string, jobExecutionMetaData: Array<JobExecutionMetaData>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
251
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
252
|
+
assertParamExists('runJob', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
253
|
+
// verify required parameter 'jobID' is not null or undefined
|
|
254
|
+
assertParamExists('runJob', 'jobID', jobID)
|
|
255
|
+
// verify required parameter 'jobExecutionMetaData' is not null or undefined
|
|
256
|
+
assertParamExists('runJob', 'jobExecutionMetaData', jobExecutionMetaData)
|
|
257
|
+
const localVarPath = `/jobs/{jobID}/run-job`
|
|
258
|
+
.replace(`{${"jobID"}}`, encodeURIComponent(String(jobID)));
|
|
259
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
260
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
261
|
+
let baseOptions;
|
|
262
|
+
if (configuration) {
|
|
263
|
+
baseOptions = configuration.baseOptions;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
267
|
+
const localVarHeaderParameter = {} as any;
|
|
268
|
+
const localVarQueryParameter = {} as any;
|
|
269
|
+
|
|
270
|
+
// authentication apiKeyAuth required
|
|
271
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
272
|
+
|
|
273
|
+
// authentication bearerAuth required
|
|
274
|
+
// http bearer authentication required
|
|
275
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
280
|
+
|
|
281
|
+
if (vbasoftwareDatabase != null) {
|
|
282
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
283
|
+
}
|
|
284
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
285
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
286
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
287
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jobExecutionMetaData, localVarRequestOptions, configuration)
|
|
288
|
+
|
|
289
|
+
return {
|
|
290
|
+
url: toPathString(localVarUrlObj),
|
|
291
|
+
options: localVarRequestOptions,
|
|
292
|
+
};
|
|
293
|
+
},
|
|
239
294
|
/**
|
|
240
295
|
* Create or Update multiple Job at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
241
296
|
* @summary Create or Update Batch Job
|
|
@@ -406,6 +461,21 @@ export const JobsApiFp = function(configuration?: Configuration) {
|
|
|
406
461
|
const localVarOperationServerBasePath = operationServerMap['JobsApi.listJob']?.[localVarOperationServerIndex]?.url;
|
|
407
462
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
408
463
|
},
|
|
464
|
+
/**
|
|
465
|
+
* Execute a Job Runner Job.
|
|
466
|
+
* @summary Run Job
|
|
467
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
468
|
+
* @param {string} jobID Job ID
|
|
469
|
+
* @param {Array<JobExecutionMetaData>} jobExecutionMetaData
|
|
470
|
+
* @param {*} [options] Override http request option.
|
|
471
|
+
* @throws {RequiredError}
|
|
472
|
+
*/
|
|
473
|
+
async runJob(vbasoftwareDatabase: string, jobID: string, jobExecutionMetaData: Array<JobExecutionMetaData>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
474
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.runJob(vbasoftwareDatabase, jobID, jobExecutionMetaData, options);
|
|
475
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
476
|
+
const localVarOperationServerBasePath = operationServerMap['JobsApi.runJob']?.[localVarOperationServerIndex]?.url;
|
|
477
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
478
|
+
},
|
|
409
479
|
/**
|
|
410
480
|
* Create or Update multiple Job at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
411
481
|
* @summary Create or Update Batch Job
|
|
@@ -491,6 +561,18 @@ export const JobsApiFactory = function (configuration?: Configuration, basePath?
|
|
|
491
561
|
listJob(vbasoftwareDatabase: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<JobListVBAResponse> {
|
|
492
562
|
return localVarFp.listJob(vbasoftwareDatabase, page, pageSize, sortBy, options).then((request) => request(axios, basePath));
|
|
493
563
|
},
|
|
564
|
+
/**
|
|
565
|
+
* Execute a Job Runner Job.
|
|
566
|
+
* @summary Run Job
|
|
567
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
568
|
+
* @param {string} jobID Job ID
|
|
569
|
+
* @param {Array<JobExecutionMetaData>} jobExecutionMetaData
|
|
570
|
+
* @param {*} [options] Override http request option.
|
|
571
|
+
* @throws {RequiredError}
|
|
572
|
+
*/
|
|
573
|
+
runJob(vbasoftwareDatabase: string, jobID: string, jobExecutionMetaData: Array<JobExecutionMetaData>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
574
|
+
return localVarFp.runJob(vbasoftwareDatabase, jobID, jobExecutionMetaData, options).then((request) => request(axios, basePath));
|
|
575
|
+
},
|
|
494
576
|
/**
|
|
495
577
|
* Create or Update multiple Job at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
496
578
|
* @summary Create or Update Batch Job
|
|
@@ -569,6 +651,18 @@ export interface JobsApiInterface {
|
|
|
569
651
|
*/
|
|
570
652
|
listJob(vbasoftwareDatabase: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<JobListVBAResponse>;
|
|
571
653
|
|
|
654
|
+
/**
|
|
655
|
+
* Execute a Job Runner Job.
|
|
656
|
+
* @summary Run Job
|
|
657
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
658
|
+
* @param {string} jobID Job ID
|
|
659
|
+
* @param {Array<JobExecutionMetaData>} jobExecutionMetaData
|
|
660
|
+
* @param {*} [options] Override http request option.
|
|
661
|
+
* @throws {RequiredError}
|
|
662
|
+
* @memberof JobsApiInterface
|
|
663
|
+
*/
|
|
664
|
+
runJob(vbasoftwareDatabase: string, jobID: string, jobExecutionMetaData: Array<JobExecutionMetaData>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
665
|
+
|
|
572
666
|
/**
|
|
573
667
|
* Create or Update multiple Job at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
574
668
|
* @summary Create or Update Batch Job
|
|
@@ -655,6 +749,20 @@ export class JobsApi extends BaseAPI implements JobsApiInterface {
|
|
|
655
749
|
return JobsApiFp(this.configuration).listJob(vbasoftwareDatabase, page, pageSize, sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
656
750
|
}
|
|
657
751
|
|
|
752
|
+
/**
|
|
753
|
+
* Execute a Job Runner Job.
|
|
754
|
+
* @summary Run Job
|
|
755
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
756
|
+
* @param {string} jobID Job ID
|
|
757
|
+
* @param {Array<JobExecutionMetaData>} jobExecutionMetaData
|
|
758
|
+
* @param {*} [options] Override http request option.
|
|
759
|
+
* @throws {RequiredError}
|
|
760
|
+
* @memberof JobsApi
|
|
761
|
+
*/
|
|
762
|
+
public runJob(vbasoftwareDatabase: string, jobID: string, jobExecutionMetaData: Array<JobExecutionMetaData>, options?: RawAxiosRequestConfig) {
|
|
763
|
+
return JobsApiFp(this.configuration).runJob(vbasoftwareDatabase, jobID, jobExecutionMetaData, options).then((request) => request(this.axios, this.basePath));
|
|
764
|
+
}
|
|
765
|
+
|
|
658
766
|
/**
|
|
659
767
|
* Create or Update multiple Job at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
660
768
|
* @summary Create or Update Batch Job
|
|
@@ -31,6 +31,10 @@ import type { PremPayment } from '../models';
|
|
|
31
31
|
import type { PremPaymentListVBAResponse } from '../models';
|
|
32
32
|
// @ts-ignore
|
|
33
33
|
import type { PremPaymentVBAResponse } from '../models';
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import type { VBAProcessPaymentFile } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
import type { VBAProcessPaymentFileResponseVBAResponse } from '../models';
|
|
34
38
|
/**
|
|
35
39
|
* PremiumPaymentsApi - axios parameter creator
|
|
36
40
|
* @export
|
|
@@ -309,6 +313,55 @@ export const PremiumPaymentsApiAxiosParamCreator = function (configuration?: Con
|
|
|
309
313
|
options: localVarRequestOptions,
|
|
310
314
|
};
|
|
311
315
|
},
|
|
316
|
+
/**
|
|
317
|
+
* Import a defined Payment File in .csv format to then have payments created and, optionally, attached to invoices.
|
|
318
|
+
* @summary Process Payment File
|
|
319
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
320
|
+
* @param {VBAProcessPaymentFile} vBAProcessPaymentFile
|
|
321
|
+
* @param {*} [options] Override http request option.
|
|
322
|
+
* @throws {RequiredError}
|
|
323
|
+
*/
|
|
324
|
+
processPaymentFile: async (vbasoftwareDatabase: string, vBAProcessPaymentFile: VBAProcessPaymentFile, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
325
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
326
|
+
assertParamExists('processPaymentFile', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
327
|
+
// verify required parameter 'vBAProcessPaymentFile' is not null or undefined
|
|
328
|
+
assertParamExists('processPaymentFile', 'vBAProcessPaymentFile', vBAProcessPaymentFile)
|
|
329
|
+
const localVarPath = `/process-payment-file`;
|
|
330
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
331
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
332
|
+
let baseOptions;
|
|
333
|
+
if (configuration) {
|
|
334
|
+
baseOptions = configuration.baseOptions;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
338
|
+
const localVarHeaderParameter = {} as any;
|
|
339
|
+
const localVarQueryParameter = {} as any;
|
|
340
|
+
|
|
341
|
+
// authentication apiKeyAuth required
|
|
342
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
343
|
+
|
|
344
|
+
// authentication bearerAuth required
|
|
345
|
+
// http bearer authentication required
|
|
346
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
351
|
+
|
|
352
|
+
if (vbasoftwareDatabase != null) {
|
|
353
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
354
|
+
}
|
|
355
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
356
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
357
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
358
|
+
localVarRequestOptions.data = serializeDataIfNeeded(vBAProcessPaymentFile, localVarRequestOptions, configuration)
|
|
359
|
+
|
|
360
|
+
return {
|
|
361
|
+
url: toPathString(localVarUrlObj),
|
|
362
|
+
options: localVarRequestOptions,
|
|
363
|
+
};
|
|
364
|
+
},
|
|
312
365
|
/**
|
|
313
366
|
* Create or Update multiple PremPayment at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
314
367
|
* @summary Create or Update Batch PremPayment
|
|
@@ -496,6 +549,20 @@ export const PremiumPaymentsApiFp = function(configuration?: Configuration) {
|
|
|
496
549
|
const localVarOperationServerBasePath = operationServerMap['PremiumPaymentsApi.listPremPayment']?.[localVarOperationServerIndex]?.url;
|
|
497
550
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
498
551
|
},
|
|
552
|
+
/**
|
|
553
|
+
* Import a defined Payment File in .csv format to then have payments created and, optionally, attached to invoices.
|
|
554
|
+
* @summary Process Payment File
|
|
555
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
556
|
+
* @param {VBAProcessPaymentFile} vBAProcessPaymentFile
|
|
557
|
+
* @param {*} [options] Override http request option.
|
|
558
|
+
* @throws {RequiredError}
|
|
559
|
+
*/
|
|
560
|
+
async processPaymentFile(vbasoftwareDatabase: string, vBAProcessPaymentFile: VBAProcessPaymentFile, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAProcessPaymentFileResponseVBAResponse>> {
|
|
561
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.processPaymentFile(vbasoftwareDatabase, vBAProcessPaymentFile, options);
|
|
562
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
563
|
+
const localVarOperationServerBasePath = operationServerMap['PremiumPaymentsApi.processPaymentFile']?.[localVarOperationServerIndex]?.url;
|
|
564
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
565
|
+
},
|
|
499
566
|
/**
|
|
500
567
|
* Create or Update multiple PremPayment at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
501
568
|
* @summary Create or Update Batch PremPayment
|
|
@@ -595,6 +662,17 @@ export const PremiumPaymentsApiFactory = function (configuration?: Configuration
|
|
|
595
662
|
listPremPayment(vbasoftwareDatabase: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<PremPaymentListVBAResponse> {
|
|
596
663
|
return localVarFp.listPremPayment(vbasoftwareDatabase, page, pageSize, sortBy, options).then((request) => request(axios, basePath));
|
|
597
664
|
},
|
|
665
|
+
/**
|
|
666
|
+
* Import a defined Payment File in .csv format to then have payments created and, optionally, attached to invoices.
|
|
667
|
+
* @summary Process Payment File
|
|
668
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
669
|
+
* @param {VBAProcessPaymentFile} vBAProcessPaymentFile
|
|
670
|
+
* @param {*} [options] Override http request option.
|
|
671
|
+
* @throws {RequiredError}
|
|
672
|
+
*/
|
|
673
|
+
processPaymentFile(vbasoftwareDatabase: string, vBAProcessPaymentFile: VBAProcessPaymentFile, options?: RawAxiosRequestConfig): AxiosPromise<VBAProcessPaymentFileResponseVBAResponse> {
|
|
674
|
+
return localVarFp.processPaymentFile(vbasoftwareDatabase, vBAProcessPaymentFile, options).then((request) => request(axios, basePath));
|
|
675
|
+
},
|
|
598
676
|
/**
|
|
599
677
|
* Create or Update multiple PremPayment at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
600
678
|
* @summary Create or Update Batch PremPayment
|
|
@@ -687,6 +765,17 @@ export interface PremiumPaymentsApiInterface {
|
|
|
687
765
|
*/
|
|
688
766
|
listPremPayment(vbasoftwareDatabase: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<PremPaymentListVBAResponse>;
|
|
689
767
|
|
|
768
|
+
/**
|
|
769
|
+
* Import a defined Payment File in .csv format to then have payments created and, optionally, attached to invoices.
|
|
770
|
+
* @summary Process Payment File
|
|
771
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
772
|
+
* @param {VBAProcessPaymentFile} vBAProcessPaymentFile
|
|
773
|
+
* @param {*} [options] Override http request option.
|
|
774
|
+
* @throws {RequiredError}
|
|
775
|
+
* @memberof PremiumPaymentsApiInterface
|
|
776
|
+
*/
|
|
777
|
+
processPaymentFile(vbasoftwareDatabase: string, vBAProcessPaymentFile: VBAProcessPaymentFile, options?: RawAxiosRequestConfig): AxiosPromise<VBAProcessPaymentFileResponseVBAResponse>;
|
|
778
|
+
|
|
690
779
|
/**
|
|
691
780
|
* Create or Update multiple PremPayment at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
692
781
|
* @summary Create or Update Batch PremPayment
|
|
@@ -789,6 +878,19 @@ export class PremiumPaymentsApi extends BaseAPI implements PremiumPaymentsApiInt
|
|
|
789
878
|
return PremiumPaymentsApiFp(this.configuration).listPremPayment(vbasoftwareDatabase, page, pageSize, sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
790
879
|
}
|
|
791
880
|
|
|
881
|
+
/**
|
|
882
|
+
* Import a defined Payment File in .csv format to then have payments created and, optionally, attached to invoices.
|
|
883
|
+
* @summary Process Payment File
|
|
884
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
885
|
+
* @param {VBAProcessPaymentFile} vBAProcessPaymentFile
|
|
886
|
+
* @param {*} [options] Override http request option.
|
|
887
|
+
* @throws {RequiredError}
|
|
888
|
+
* @memberof PremiumPaymentsApi
|
|
889
|
+
*/
|
|
890
|
+
public processPaymentFile(vbasoftwareDatabase: string, vBAProcessPaymentFile: VBAProcessPaymentFile, options?: RawAxiosRequestConfig) {
|
|
891
|
+
return PremiumPaymentsApiFp(this.configuration).processPaymentFile(vbasoftwareDatabase, vBAProcessPaymentFile, options).then((request) => request(this.axios, this.basePath));
|
|
892
|
+
}
|
|
893
|
+
|
|
792
894
|
/**
|
|
793
895
|
* Create or Update multiple PremPayment at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
794
896
|
* @summary Create or Update Batch PremPayment
|
|
@@ -249,7 +249,7 @@ export const ReportSeriesProcessesApiAxiosParamCreator = function (configuration
|
|
|
249
249
|
assertParamExists('reportSeriesProcessGenerateInvoice', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
250
250
|
// verify required parameter 'invoiceKey' is not null or undefined
|
|
251
251
|
assertParamExists('reportSeriesProcessGenerateInvoice', 'invoiceKey', invoiceKey)
|
|
252
|
-
const localVarPath = `/report-series-process-generate-invoice`
|
|
252
|
+
const localVarPath = `/report-series-process-generate-invoice/{invoiceKey}`
|
|
253
253
|
.replace(`{${"invoiceKey"}}`, encodeURIComponent(String(invoiceKey)));
|
|
254
254
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
255
255
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
package/api.ts
CHANGED
|
@@ -436,6 +436,7 @@ export * from './api/group-contract-plans-api';
|
|
|
436
436
|
export * from './api/group-contract-tiers-api';
|
|
437
437
|
export * from './api/group-contracts-api';
|
|
438
438
|
export * from './api/group-coverage-calculations-api';
|
|
439
|
+
export * from './api/group-day-interval-api';
|
|
439
440
|
export * from './api/group-disenroll-affected-claims-api';
|
|
440
441
|
export * from './api/group-division-captives-api';
|
|
441
442
|
export * from './api/group-division-cobras-api';
|
|
@@ -179,6 +179,30 @@ export interface CoveredBenefit {
|
|
|
179
179
|
* @memberof CoveredBenefit
|
|
180
180
|
*/
|
|
181
181
|
'ooP_Calc_Option'?: string | null;
|
|
182
|
+
/**
|
|
183
|
+
* Identifies whether the Benefit Code is covered for this Plan. This can be populated from the \'Plan\' screen.
|
|
184
|
+
* @type {boolean}
|
|
185
|
+
* @memberof CoveredBenefit
|
|
186
|
+
*/
|
|
187
|
+
'covered'?: boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Indicates that the selected Benefit applies to Primary Care Physician only. If a claim is processed against this Benefit Code without a PCP, the claim will apply the “PCP Only“ Ex Code defined on the VBA Control Panel.
|
|
190
|
+
* @type {boolean}
|
|
191
|
+
* @memberof CoveredBenefit
|
|
192
|
+
*/
|
|
193
|
+
'pcP_Only'?: boolean;
|
|
194
|
+
/**
|
|
195
|
+
* Checking this option indicates that the Benefit is covered only when services are rendered by an In-Network provider. If a claim is processed against this Benefit Code as Out of Network, the claim will apply the “Covered In-Network Only“ Ex Code defined on the VBA Control Panel.
|
|
196
|
+
* @type {boolean}
|
|
197
|
+
* @memberof CoveredBenefit
|
|
198
|
+
*/
|
|
199
|
+
'covered_In_Net_Only'?: boolean;
|
|
200
|
+
/**
|
|
201
|
+
* This flag determines if adjudication calculates the Deductible before the CoPay is calculated.
|
|
202
|
+
* @type {boolean}
|
|
203
|
+
* @memberof CoveredBenefit
|
|
204
|
+
*/
|
|
205
|
+
'deductible_Before_CoPay'?: boolean;
|
|
182
206
|
/**
|
|
183
207
|
*
|
|
184
208
|
* @type {Array<PlanBenefitLevel>}
|
|
@@ -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 GroupContractCopyConfig
|
|
21
|
+
*/
|
|
22
|
+
export interface GroupContractCopyConfig {
|
|
23
|
+
/**
|
|
24
|
+
* The Group ID of the Contract holding the source records for this copy
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GroupContractCopyConfig
|
|
27
|
+
*/
|
|
28
|
+
'group_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The Division ID of the Contract holding the source records for this copy
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GroupContractCopyConfig
|
|
33
|
+
*/
|
|
34
|
+
'division_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* The Contract Start of the Contract holding the source records for this copy
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GroupContractCopyConfig
|
|
39
|
+
*/
|
|
40
|
+
'coverage_Start'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* List of Division IDs to have the source records copied to. The desintation Division ID MUST have a matching contract to the source contract
|
|
43
|
+
* @type {Array<string>}
|
|
44
|
+
* @memberof GroupContractCopyConfig
|
|
45
|
+
*/
|
|
46
|
+
'apply_Division_ID'?: Array<string> | null;
|
|
47
|
+
/**
|
|
48
|
+
* The user ID that will be reflected on the newly created (copied) records.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GroupContractCopyConfig
|
|
51
|
+
*/
|
|
52
|
+
'user_ID'?: string | 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 { GroupDayInterval } from './group-day-interval';
|
|
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 GroupDayIntervalListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface GroupDayIntervalListVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<GroupDayInterval>}
|
|
35
|
+
* @memberof GroupDayIntervalListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: Array<GroupDayInterval> | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof GroupDayIntervalListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof GroupDayIntervalListVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -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 { GroupDayInterval } from './group-day-interval';
|
|
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 GroupDayIntervalVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface GroupDayIntervalVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {GroupDayInterval}
|
|
35
|
+
* @memberof GroupDayIntervalVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: GroupDayInterval;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof GroupDayIntervalVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof GroupDayIntervalVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 GroupDayInterval
|
|
21
|
+
*/
|
|
22
|
+
export interface GroupDayInterval {
|
|
23
|
+
/**
|
|
24
|
+
* The Group this Day Interval belongs to
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GroupDayInterval
|
|
27
|
+
*/
|
|
28
|
+
'group_ID': string;
|
|
29
|
+
/**
|
|
30
|
+
* Which Year this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof GroupDayInterval
|
|
33
|
+
*/
|
|
34
|
+
'interval_Year': number;
|
|
35
|
+
/**
|
|
36
|
+
* Which Month this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GroupDayInterval
|
|
39
|
+
*/
|
|
40
|
+
'interval_Month': number;
|
|
41
|
+
/**
|
|
42
|
+
* Which Day this Group Day Interval is Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof GroupDayInterval
|
|
45
|
+
*/
|
|
46
|
+
'interval_Day': number;
|
|
47
|
+
/**
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GroupDayInterval
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof GroupDayInterval
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Whether or not the date this record belongs to is a Payday or not Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof GroupDayInterval
|
|
63
|
+
*/
|
|
64
|
+
'payday': boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof GroupDayInterval
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof GroupDayInterval
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
77
|
+
}
|
|
78
|
+
|
package/models/index.ts
CHANGED
|
@@ -1233,6 +1233,7 @@ export * from './group-company-data-ex-code-override';
|
|
|
1233
1233
|
export * from './group-company-data-ex-code-override-list-vbaresponse';
|
|
1234
1234
|
export * from './group-company-data-ex-code-override-vbaresponse';
|
|
1235
1235
|
export * from './group-contract';
|
|
1236
|
+
export * from './group-contract-copy-config';
|
|
1236
1237
|
export * from './group-contract-list-vbaresponse';
|
|
1237
1238
|
export * from './group-contract-plan';
|
|
1238
1239
|
export * from './group-contract-plan-list-vbaresponse';
|
|
@@ -1251,6 +1252,9 @@ export * from './group-contract-tier-list-vbaresponse';
|
|
|
1251
1252
|
export * from './group-contract-tier-vbaresponse';
|
|
1252
1253
|
export * from './group-contract-vbaresponse';
|
|
1253
1254
|
export * from './group-criteria';
|
|
1255
|
+
export * from './group-day-interval';
|
|
1256
|
+
export * from './group-day-interval-list-vbaresponse';
|
|
1257
|
+
export * from './group-day-interval-vbaresponse';
|
|
1254
1258
|
export * from './group-division';
|
|
1255
1259
|
export * from './group-division-captive';
|
|
1256
1260
|
export * from './group-division-captive-list-vbaresponse';
|
|
@@ -2556,6 +2560,9 @@ export * from './vbaprocess-log-list-vbaresponse';
|
|
|
2556
2560
|
export * from './vbaprocess-log-vbaresponse';
|
|
2557
2561
|
export * from './vbaprocess-parameter';
|
|
2558
2562
|
export * from './vbaprocess-parameter-vbaresponse';
|
|
2563
|
+
export * from './vbaprocess-payment-file';
|
|
2564
|
+
export * from './vbaprocess-payment-file-response';
|
|
2565
|
+
export * from './vbaprocess-payment-file-response-vbaresponse';
|
|
2559
2566
|
export * from './vbaprocess-vbaresponse';
|
|
2560
2567
|
export * from './vbareins-contract-trans-amount';
|
|
2561
2568
|
export * from './vbareins-contract-trans-amount-vbaresponse';
|
|
@@ -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 { VBAProblemDetails } from './vbaproblem-details';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProcessPaymentFileResponse } from './vbaprocess-payment-file-response';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface VBAProcessPaymentFileResponseVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface VBAProcessPaymentFileResponseVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProcessPaymentFileResponse}
|
|
35
|
+
* @memberof VBAProcessPaymentFileResponseVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: VBAProcessPaymentFileResponse;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof VBAProcessPaymentFileResponseVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof VBAProcessPaymentFileResponseVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|