@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250307.1 → 1.20250321.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 +6 -0
- package/api/adv-groups-api.ts +96 -0
- package/api/bold-reports-api.ts +167 -0
- package/api/groups-api.ts +96 -0
- package/api/patient-status-api.ts +685 -0
- package/api/subscriber-enrollments-api.ts +138 -0
- package/api/vbareports-api.ts +100 -0
- package/api.ts +2 -0
- package/models/index.ts +4 -0
- package/models/patient-status-list-vbaresponse.ts +51 -0
- package/models/patient-status-vbaresponse.ts +51 -0
- package/models/patient-status.ts +60 -0
- package/models/trackable-report.ts +78 -0
- package/package.json +1 -1
|
@@ -276,6 +276,75 @@ export const SubscriberEnrollmentsApiAxiosParamCreator = function (configuration
|
|
|
276
276
|
options: localVarRequestOptions,
|
|
277
277
|
};
|
|
278
278
|
},
|
|
279
|
+
/**
|
|
280
|
+
* Modify an existing Subenrollment changing the table keys which forces downstream table updates.
|
|
281
|
+
* @summary Modify SubEnrollment
|
|
282
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
283
|
+
* @param {string} subscriberID Original Subscriber ID
|
|
284
|
+
* @param {string} groupID Original Group ID
|
|
285
|
+
* @param {string} divisionID Original Division ID
|
|
286
|
+
* @param {string} groupCoverageStart Original Group Coverage Start
|
|
287
|
+
* @param {string} startDate Original Start Date
|
|
288
|
+
* @param {SubEnrollment} subEnrollment
|
|
289
|
+
* @param {*} [options] Override http request option.
|
|
290
|
+
* @throws {RequiredError}
|
|
291
|
+
*/
|
|
292
|
+
modifySubEnrollment: async (vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, subEnrollment: SubEnrollment, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
293
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
294
|
+
assertParamExists('modifySubEnrollment', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
295
|
+
// verify required parameter 'subscriberID' is not null or undefined
|
|
296
|
+
assertParamExists('modifySubEnrollment', 'subscriberID', subscriberID)
|
|
297
|
+
// verify required parameter 'groupID' is not null or undefined
|
|
298
|
+
assertParamExists('modifySubEnrollment', 'groupID', groupID)
|
|
299
|
+
// verify required parameter 'divisionID' is not null or undefined
|
|
300
|
+
assertParamExists('modifySubEnrollment', 'divisionID', divisionID)
|
|
301
|
+
// verify required parameter 'groupCoverageStart' is not null or undefined
|
|
302
|
+
assertParamExists('modifySubEnrollment', 'groupCoverageStart', groupCoverageStart)
|
|
303
|
+
// verify required parameter 'startDate' is not null or undefined
|
|
304
|
+
assertParamExists('modifySubEnrollment', 'startDate', startDate)
|
|
305
|
+
// verify required parameter 'subEnrollment' is not null or undefined
|
|
306
|
+
assertParamExists('modifySubEnrollment', 'subEnrollment', subEnrollment)
|
|
307
|
+
const localVarPath = `/subscribers/{subscriberID}/enrollments-modify/{groupID}/{divisionID}/{groupCoverageStart}/{startDate}`
|
|
308
|
+
.replace(`{${"subscriberID"}}`, encodeURIComponent(String(subscriberID)))
|
|
309
|
+
.replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)))
|
|
310
|
+
.replace(`{${"divisionID"}}`, encodeURIComponent(String(divisionID)))
|
|
311
|
+
.replace(`{${"groupCoverageStart"}}`, encodeURIComponent(String(groupCoverageStart)))
|
|
312
|
+
.replace(`{${"startDate"}}`, encodeURIComponent(String(startDate)));
|
|
313
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
314
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
315
|
+
let baseOptions;
|
|
316
|
+
if (configuration) {
|
|
317
|
+
baseOptions = configuration.baseOptions;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
321
|
+
const localVarHeaderParameter = {} as any;
|
|
322
|
+
const localVarQueryParameter = {} as any;
|
|
323
|
+
|
|
324
|
+
// authentication apiKeyAuth required
|
|
325
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
326
|
+
|
|
327
|
+
// authentication bearerAuth required
|
|
328
|
+
// http bearer authentication required
|
|
329
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
334
|
+
|
|
335
|
+
if (vbasoftwareDatabase != null) {
|
|
336
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
337
|
+
}
|
|
338
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
339
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
340
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
341
|
+
localVarRequestOptions.data = serializeDataIfNeeded(subEnrollment, localVarRequestOptions, configuration)
|
|
342
|
+
|
|
343
|
+
return {
|
|
344
|
+
url: toPathString(localVarUrlObj),
|
|
345
|
+
options: localVarRequestOptions,
|
|
346
|
+
};
|
|
347
|
+
},
|
|
279
348
|
/**
|
|
280
349
|
* Sets the Paid Through value on the Subenrollment based on existing Premium Billing paid invoices.
|
|
281
350
|
* @summary Set SubEnrollment Paid Through
|
|
@@ -531,6 +600,25 @@ export const SubscriberEnrollmentsApiFp = function(configuration?: Configuration
|
|
|
531
600
|
const localVarOperationServerBasePath = operationServerMap['SubscriberEnrollmentsApi.listSubEnrollment']?.[localVarOperationServerIndex]?.url;
|
|
532
601
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
533
602
|
},
|
|
603
|
+
/**
|
|
604
|
+
* Modify an existing Subenrollment changing the table keys which forces downstream table updates.
|
|
605
|
+
* @summary Modify SubEnrollment
|
|
606
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
607
|
+
* @param {string} subscriberID Original Subscriber ID
|
|
608
|
+
* @param {string} groupID Original Group ID
|
|
609
|
+
* @param {string} divisionID Original Division ID
|
|
610
|
+
* @param {string} groupCoverageStart Original Group Coverage Start
|
|
611
|
+
* @param {string} startDate Original Start Date
|
|
612
|
+
* @param {SubEnrollment} subEnrollment
|
|
613
|
+
* @param {*} [options] Override http request option.
|
|
614
|
+
* @throws {RequiredError}
|
|
615
|
+
*/
|
|
616
|
+
async modifySubEnrollment(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, subEnrollment: SubEnrollment, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubEnrollmentVBAResponse>> {
|
|
617
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.modifySubEnrollment(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, subEnrollment, options);
|
|
618
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
619
|
+
const localVarOperationServerBasePath = operationServerMap['SubscriberEnrollmentsApi.modifySubEnrollment']?.[localVarOperationServerIndex]?.url;
|
|
620
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
621
|
+
},
|
|
534
622
|
/**
|
|
535
623
|
* Sets the Paid Through value on the Subenrollment based on existing Premium Billing paid invoices.
|
|
536
624
|
* @summary Set SubEnrollment Paid Through
|
|
@@ -647,6 +735,22 @@ export const SubscriberEnrollmentsApiFactory = function (configuration?: Configu
|
|
|
647
735
|
listSubEnrollment(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<SubEnrollmentListVBAResponse> {
|
|
648
736
|
return localVarFp.listSubEnrollment(vbasoftwareDatabase, subscriberID, page, pageSize, sortBy, options).then((request) => request(axios, basePath));
|
|
649
737
|
},
|
|
738
|
+
/**
|
|
739
|
+
* Modify an existing Subenrollment changing the table keys which forces downstream table updates.
|
|
740
|
+
* @summary Modify SubEnrollment
|
|
741
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
742
|
+
* @param {string} subscriberID Original Subscriber ID
|
|
743
|
+
* @param {string} groupID Original Group ID
|
|
744
|
+
* @param {string} divisionID Original Division ID
|
|
745
|
+
* @param {string} groupCoverageStart Original Group Coverage Start
|
|
746
|
+
* @param {string} startDate Original Start Date
|
|
747
|
+
* @param {SubEnrollment} subEnrollment
|
|
748
|
+
* @param {*} [options] Override http request option.
|
|
749
|
+
* @throws {RequiredError}
|
|
750
|
+
*/
|
|
751
|
+
modifySubEnrollment(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, subEnrollment: SubEnrollment, options?: RawAxiosRequestConfig): AxiosPromise<SubEnrollmentVBAResponse> {
|
|
752
|
+
return localVarFp.modifySubEnrollment(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, subEnrollment, options).then((request) => request(axios, basePath));
|
|
753
|
+
},
|
|
650
754
|
/**
|
|
651
755
|
* Sets the Paid Through value on the Subenrollment based on existing Premium Billing paid invoices.
|
|
652
756
|
* @summary Set SubEnrollment Paid Through
|
|
@@ -753,6 +857,22 @@ export interface SubscriberEnrollmentsApiInterface {
|
|
|
753
857
|
*/
|
|
754
858
|
listSubEnrollment(vbasoftwareDatabase: string, subscriberID: string, page?: number, pageSize?: number, sortBy?: string, options?: RawAxiosRequestConfig): AxiosPromise<SubEnrollmentListVBAResponse>;
|
|
755
859
|
|
|
860
|
+
/**
|
|
861
|
+
* Modify an existing Subenrollment changing the table keys which forces downstream table updates.
|
|
862
|
+
* @summary Modify SubEnrollment
|
|
863
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
864
|
+
* @param {string} subscriberID Original Subscriber ID
|
|
865
|
+
* @param {string} groupID Original Group ID
|
|
866
|
+
* @param {string} divisionID Original Division ID
|
|
867
|
+
* @param {string} groupCoverageStart Original Group Coverage Start
|
|
868
|
+
* @param {string} startDate Original Start Date
|
|
869
|
+
* @param {SubEnrollment} subEnrollment
|
|
870
|
+
* @param {*} [options] Override http request option.
|
|
871
|
+
* @throws {RequiredError}
|
|
872
|
+
* @memberof SubscriberEnrollmentsApiInterface
|
|
873
|
+
*/
|
|
874
|
+
modifySubEnrollment(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, subEnrollment: SubEnrollment, options?: RawAxiosRequestConfig): AxiosPromise<SubEnrollmentVBAResponse>;
|
|
875
|
+
|
|
756
876
|
/**
|
|
757
877
|
* Sets the Paid Through value on the Subenrollment based on existing Premium Billing paid invoices.
|
|
758
878
|
* @summary Set SubEnrollment Paid Through
|
|
@@ -867,6 +987,24 @@ export class SubscriberEnrollmentsApi extends BaseAPI implements SubscriberEnrol
|
|
|
867
987
|
return SubscriberEnrollmentsApiFp(this.configuration).listSubEnrollment(vbasoftwareDatabase, subscriberID, page, pageSize, sortBy, options).then((request) => request(this.axios, this.basePath));
|
|
868
988
|
}
|
|
869
989
|
|
|
990
|
+
/**
|
|
991
|
+
* Modify an existing Subenrollment changing the table keys which forces downstream table updates.
|
|
992
|
+
* @summary Modify SubEnrollment
|
|
993
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
994
|
+
* @param {string} subscriberID Original Subscriber ID
|
|
995
|
+
* @param {string} groupID Original Group ID
|
|
996
|
+
* @param {string} divisionID Original Division ID
|
|
997
|
+
* @param {string} groupCoverageStart Original Group Coverage Start
|
|
998
|
+
* @param {string} startDate Original Start Date
|
|
999
|
+
* @param {SubEnrollment} subEnrollment
|
|
1000
|
+
* @param {*} [options] Override http request option.
|
|
1001
|
+
* @throws {RequiredError}
|
|
1002
|
+
* @memberof SubscriberEnrollmentsApi
|
|
1003
|
+
*/
|
|
1004
|
+
public modifySubEnrollment(vbasoftwareDatabase: string, subscriberID: string, groupID: string, divisionID: string, groupCoverageStart: string, startDate: string, subEnrollment: SubEnrollment, options?: RawAxiosRequestConfig) {
|
|
1005
|
+
return SubscriberEnrollmentsApiFp(this.configuration).modifySubEnrollment(vbasoftwareDatabase, subscriberID, groupID, divisionID, groupCoverageStart, startDate, subEnrollment, options).then((request) => request(this.axios, this.basePath));
|
|
1006
|
+
}
|
|
1007
|
+
|
|
870
1008
|
/**
|
|
871
1009
|
* Sets the Paid Through value on the Subenrollment based on existing Premium Billing paid invoices.
|
|
872
1010
|
* @summary Set SubEnrollment Paid Through
|
package/api/vbareports-api.ts
CHANGED
|
@@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
// @ts-ignore
|
|
23
23
|
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
24
|
// @ts-ignore
|
|
25
|
+
import type { TrackableReport } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
25
27
|
import type { VBAReportListVBAResponse } from '../models';
|
|
26
28
|
// @ts-ignore
|
|
27
29
|
import type { VBAReportVBAResponse } from '../models';
|
|
@@ -116,6 +118,55 @@ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
116
118
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
117
119
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
118
120
|
|
|
121
|
+
return {
|
|
122
|
+
url: toPathString(localVarUrlObj),
|
|
123
|
+
options: localVarRequestOptions,
|
|
124
|
+
};
|
|
125
|
+
},
|
|
126
|
+
/**
|
|
127
|
+
* Tracks a Report.
|
|
128
|
+
* @summary Track a Report
|
|
129
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
130
|
+
* @param {TrackableReport} trackableReport
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
trackReport: async (vbasoftwareDatabase: string, trackableReport: TrackableReport, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
135
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
136
|
+
assertParamExists('trackReport', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
137
|
+
// verify required parameter 'trackableReport' is not null or undefined
|
|
138
|
+
assertParamExists('trackReport', 'trackableReport', trackableReport)
|
|
139
|
+
const localVarPath = `/reports/track`;
|
|
140
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
141
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
142
|
+
let baseOptions;
|
|
143
|
+
if (configuration) {
|
|
144
|
+
baseOptions = configuration.baseOptions;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
148
|
+
const localVarHeaderParameter = {} as any;
|
|
149
|
+
const localVarQueryParameter = {} as any;
|
|
150
|
+
|
|
151
|
+
// authentication apiKeyAuth required
|
|
152
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
153
|
+
|
|
154
|
+
// authentication bearerAuth required
|
|
155
|
+
// http bearer authentication required
|
|
156
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
161
|
+
|
|
162
|
+
if (vbasoftwareDatabase != null) {
|
|
163
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
164
|
+
}
|
|
165
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
166
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
167
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
168
|
+
localVarRequestOptions.data = serializeDataIfNeeded(trackableReport, localVarRequestOptions, configuration)
|
|
169
|
+
|
|
119
170
|
return {
|
|
120
171
|
url: toPathString(localVarUrlObj),
|
|
121
172
|
options: localVarRequestOptions,
|
|
@@ -158,6 +209,20 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
158
209
|
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.listVBAReports']?.[localVarOperationServerIndex]?.url;
|
|
159
210
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
160
211
|
},
|
|
212
|
+
/**
|
|
213
|
+
* Tracks a Report.
|
|
214
|
+
* @summary Track a Report
|
|
215
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
216
|
+
* @param {TrackableReport} trackableReport
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
async trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
221
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.trackReport(vbasoftwareDatabase, trackableReport, options);
|
|
222
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
223
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.trackReport']?.[localVarOperationServerIndex]?.url;
|
|
224
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
225
|
+
},
|
|
161
226
|
}
|
|
162
227
|
};
|
|
163
228
|
|
|
@@ -189,6 +254,17 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
189
254
|
listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse> {
|
|
190
255
|
return localVarFp.listVBAReports(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
191
256
|
},
|
|
257
|
+
/**
|
|
258
|
+
* Tracks a Report.
|
|
259
|
+
* @summary Track a Report
|
|
260
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
261
|
+
* @param {TrackableReport} trackableReport
|
|
262
|
+
* @param {*} [options] Override http request option.
|
|
263
|
+
* @throws {RequiredError}
|
|
264
|
+
*/
|
|
265
|
+
trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
266
|
+
return localVarFp.trackReport(vbasoftwareDatabase, trackableReport, options).then((request) => request(axios, basePath));
|
|
267
|
+
},
|
|
192
268
|
};
|
|
193
269
|
};
|
|
194
270
|
|
|
@@ -219,6 +295,17 @@ export interface VBAReportsApiInterface {
|
|
|
219
295
|
*/
|
|
220
296
|
listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse>;
|
|
221
297
|
|
|
298
|
+
/**
|
|
299
|
+
* Tracks a Report.
|
|
300
|
+
* @summary Track a Report
|
|
301
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
302
|
+
* @param {TrackableReport} trackableReport
|
|
303
|
+
* @param {*} [options] Override http request option.
|
|
304
|
+
* @throws {RequiredError}
|
|
305
|
+
* @memberof VBAReportsApiInterface
|
|
306
|
+
*/
|
|
307
|
+
trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
308
|
+
|
|
222
309
|
}
|
|
223
310
|
|
|
224
311
|
/**
|
|
@@ -252,5 +339,18 @@ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
|
252
339
|
public listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
253
340
|
return VBAReportsApiFp(this.configuration).listVBAReports(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
254
341
|
}
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Tracks a Report.
|
|
345
|
+
* @summary Track a Report
|
|
346
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
347
|
+
* @param {TrackableReport} trackableReport
|
|
348
|
+
* @param {*} [options] Override http request option.
|
|
349
|
+
* @throws {RequiredError}
|
|
350
|
+
* @memberof VBAReportsApi
|
|
351
|
+
*/
|
|
352
|
+
public trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig) {
|
|
353
|
+
return VBAReportsApiFp(this.configuration).trackReport(vbasoftwareDatabase, trackableReport, options).then((request) => request(this.axios, this.basePath));
|
|
354
|
+
}
|
|
255
355
|
}
|
|
256
356
|
|
package/api.ts
CHANGED
|
@@ -67,6 +67,7 @@ export * from './api/bill-types-api';
|
|
|
67
67
|
export * from './api/billing-api';
|
|
68
68
|
export * from './api/billing-basis-api';
|
|
69
69
|
export * from './api/billing-cycles-api';
|
|
70
|
+
export * from './api/bold-reports-api';
|
|
70
71
|
export * from './api/brokerage-api';
|
|
71
72
|
export * from './api/cliacertificate-api';
|
|
72
73
|
export * from './api/cliacertificate-procedure-codes-api';
|
|
@@ -575,6 +576,7 @@ export * from './api/note-types-api';
|
|
|
575
576
|
export * from './api/objects-api';
|
|
576
577
|
export * from './api/occupations-api';
|
|
577
578
|
export * from './api/pbmtypes-api';
|
|
579
|
+
export * from './api/patient-status-api';
|
|
578
580
|
export * from './api/pay-frequency-api';
|
|
579
581
|
export * from './api/payee-accounts-api';
|
|
580
582
|
export * from './api/payees-api';
|
package/models/index.ts
CHANGED
|
@@ -1641,6 +1641,9 @@ export * from './option-criteria';
|
|
|
1641
1641
|
export * from './pbmtype';
|
|
1642
1642
|
export * from './pbmtype-list-vbaresponse';
|
|
1643
1643
|
export * from './pbmtype-vbaresponse';
|
|
1644
|
+
export * from './patient-status';
|
|
1645
|
+
export * from './patient-status-list-vbaresponse';
|
|
1646
|
+
export * from './patient-status-vbaresponse';
|
|
1644
1647
|
export * from './payee';
|
|
1645
1648
|
export * from './payee-account';
|
|
1646
1649
|
export * from './payee-account-list-vbaresponse';
|
|
@@ -2435,6 +2438,7 @@ export * from './tooth-quadrant';
|
|
|
2435
2438
|
export * from './tooth-quadrant-list-vbaresponse';
|
|
2436
2439
|
export * from './tooth-quadrant-vbaresponse';
|
|
2437
2440
|
export * from './tooth-vbaresponse';
|
|
2441
|
+
export * from './trackable-report';
|
|
2438
2442
|
export * from './transpose-request-meta-data-result';
|
|
2439
2443
|
export * from './transpose-request-meta-data-result-list-vbaresponse';
|
|
2440
2444
|
export * from './treatment-type';
|
|
@@ -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 { PatientStatus } from './patient-status';
|
|
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 PatientStatusListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface PatientStatusListVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<PatientStatus>}
|
|
35
|
+
* @memberof PatientStatusListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: Array<PatientStatus> | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof PatientStatusListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof PatientStatusListVBAResponse
|
|
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 { PatientStatus } from './patient-status';
|
|
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 PatientStatusVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface PatientStatusVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PatientStatus}
|
|
35
|
+
* @memberof PatientStatusVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: PatientStatus;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof PatientStatusVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof PatientStatusVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 PatientStatus
|
|
21
|
+
*/
|
|
22
|
+
export interface PatientStatus {
|
|
23
|
+
/**
|
|
24
|
+
* Identifier for the specific patient status
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PatientStatus
|
|
27
|
+
*/
|
|
28
|
+
'patient_Status': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description for the specific patient status
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PatientStatus
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PatientStatus
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PatientStatus
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PatientStatus
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PatientStatus
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -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 TrackableReport
|
|
21
|
+
*/
|
|
22
|
+
export interface TrackableReport {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the report definition.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof TrackableReport
|
|
27
|
+
*/
|
|
28
|
+
'reportDefinition_Key'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* ID of the report, often used as a unique string identifier.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof TrackableReport
|
|
33
|
+
*/
|
|
34
|
+
'report_ID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the report.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof TrackableReport
|
|
39
|
+
*/
|
|
40
|
+
'report_Name'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Category under which the report falls.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof TrackableReport
|
|
45
|
+
*/
|
|
46
|
+
'report_Category'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Description of the report and its purpose.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof TrackableReport
|
|
51
|
+
*/
|
|
52
|
+
'report_Description'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* URL for embedding the report in other applications.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof TrackableReport
|
|
57
|
+
*/
|
|
58
|
+
'embed_Url'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Subscriber ID if the report uses it
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof TrackableReport
|
|
63
|
+
*/
|
|
64
|
+
'subscriberID'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* MemberSeq if the report uses it
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof TrackableReport
|
|
69
|
+
*/
|
|
70
|
+
'memberSeq'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Report Parameters used in the report
|
|
73
|
+
* @type {{ [key: string]: string | null; }}
|
|
74
|
+
* @memberof TrackableReport
|
|
75
|
+
*/
|
|
76
|
+
'reportParameters'?: { [key: string]: string | null; } | null;
|
|
77
|
+
}
|
|
78
|
+
|