@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250314.1 → 1.20250328.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 +1 -0
- package/api/report-static-lists-api.ts +176 -0
- package/api/subscriber-enrollments-api.ts +138 -0
- package/api/vbareports-api.ts +188 -0
- package/models/covered-benefit.ts +9 -0
- package/models/database-connection.ts +6 -0
- package/models/index.ts +1 -0
- package/models/reins-contract.ts +1 -1
- package/models/trackable-report.ts +78 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -3324,6 +3324,7 @@ models/tooth-quadrant-vbaresponse.ts
|
|
|
3324
3324
|
models/tooth-quadrant.ts
|
|
3325
3325
|
models/tooth-vbaresponse.ts
|
|
3326
3326
|
models/tooth.ts
|
|
3327
|
+
models/trackable-report.ts
|
|
3327
3328
|
models/transpose-request-meta-data-result-list-vbaresponse.ts
|
|
3328
3329
|
models/transpose-request-meta-data-result.ts
|
|
3329
3330
|
models/treatment-type-list-vbaresponse.ts
|
|
@@ -60,6 +60,92 @@ export const ReportStaticListsApiAxiosParamCreator = function (configuration?: C
|
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
if (vbasoftwareDatabase != null) {
|
|
64
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
65
|
+
}
|
|
66
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
67
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
url: toPathString(localVarUrlObj),
|
|
72
|
+
options: localVarRequestOptions,
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
/**
|
|
76
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
77
|
+
* @summary List Automation Step Delays
|
|
78
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
79
|
+
* @param {*} [options] Override http request option.
|
|
80
|
+
* @throws {RequiredError}
|
|
81
|
+
*/
|
|
82
|
+
listAutomationStepDelays: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
83
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
84
|
+
assertParamExists('listAutomationStepDelays', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
85
|
+
const localVarPath = `/automation-step-delays`;
|
|
86
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
87
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
88
|
+
let baseOptions;
|
|
89
|
+
if (configuration) {
|
|
90
|
+
baseOptions = configuration.baseOptions;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
94
|
+
const localVarHeaderParameter = {} as any;
|
|
95
|
+
const localVarQueryParameter = {} as any;
|
|
96
|
+
|
|
97
|
+
// authentication apiKeyAuth required
|
|
98
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
99
|
+
|
|
100
|
+
// authentication bearerAuth required
|
|
101
|
+
// http bearer authentication required
|
|
102
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
if (vbasoftwareDatabase != null) {
|
|
107
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
108
|
+
}
|
|
109
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
110
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
111
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
112
|
+
|
|
113
|
+
return {
|
|
114
|
+
url: toPathString(localVarUrlObj),
|
|
115
|
+
options: localVarRequestOptions,
|
|
116
|
+
};
|
|
117
|
+
},
|
|
118
|
+
/**
|
|
119
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
120
|
+
* @summary List Automation Step Types
|
|
121
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
122
|
+
* @param {*} [options] Override http request option.
|
|
123
|
+
* @throws {RequiredError}
|
|
124
|
+
*/
|
|
125
|
+
listAutomationStepTypes: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
126
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
127
|
+
assertParamExists('listAutomationStepTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
128
|
+
const localVarPath = `/automation-step-types`;
|
|
129
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
130
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
131
|
+
let baseOptions;
|
|
132
|
+
if (configuration) {
|
|
133
|
+
baseOptions = configuration.baseOptions;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
137
|
+
const localVarHeaderParameter = {} as any;
|
|
138
|
+
const localVarQueryParameter = {} as any;
|
|
139
|
+
|
|
140
|
+
// authentication apiKeyAuth required
|
|
141
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
142
|
+
|
|
143
|
+
// authentication bearerAuth required
|
|
144
|
+
// http bearer authentication required
|
|
145
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
63
149
|
if (vbasoftwareDatabase != null) {
|
|
64
150
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
65
151
|
}
|
|
@@ -138,6 +224,32 @@ export const ReportStaticListsApiFp = function(configuration?: Configuration) {
|
|
|
138
224
|
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStatuses']?.[localVarOperationServerIndex]?.url;
|
|
139
225
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
140
226
|
},
|
|
227
|
+
/**
|
|
228
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
229
|
+
* @summary List Automation Step Delays
|
|
230
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
231
|
+
* @param {*} [options] Override http request option.
|
|
232
|
+
* @throws {RequiredError}
|
|
233
|
+
*/
|
|
234
|
+
async listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
235
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAutomationStepDelays(vbasoftwareDatabase, options);
|
|
236
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
237
|
+
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStepDelays']?.[localVarOperationServerIndex]?.url;
|
|
238
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
239
|
+
},
|
|
240
|
+
/**
|
|
241
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
242
|
+
* @summary List Automation Step Types
|
|
243
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
244
|
+
* @param {*} [options] Override http request option.
|
|
245
|
+
* @throws {RequiredError}
|
|
246
|
+
*/
|
|
247
|
+
async listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
|
|
248
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAutomationStepTypes(vbasoftwareDatabase, options);
|
|
249
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
250
|
+
const localVarOperationServerBasePath = operationServerMap['ReportStaticListsApi.listAutomationStepTypes']?.[localVarOperationServerIndex]?.url;
|
|
251
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
252
|
+
},
|
|
141
253
|
/**
|
|
142
254
|
* List of all Automation Types with Key, Display and Description
|
|
143
255
|
* @summary List Automation Types
|
|
@@ -171,6 +283,26 @@ export const ReportStaticListsApiFactory = function (configuration?: Configurati
|
|
|
171
283
|
listAutomationStatuses(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
172
284
|
return localVarFp.listAutomationStatuses(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
173
285
|
},
|
|
286
|
+
/**
|
|
287
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
288
|
+
* @summary List Automation Step Delays
|
|
289
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
290
|
+
* @param {*} [options] Override http request option.
|
|
291
|
+
* @throws {RequiredError}
|
|
292
|
+
*/
|
|
293
|
+
listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
294
|
+
return localVarFp.listAutomationStepDelays(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
295
|
+
},
|
|
296
|
+
/**
|
|
297
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
298
|
+
* @summary List Automation Step Types
|
|
299
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
300
|
+
* @param {*} [options] Override http request option.
|
|
301
|
+
* @throws {RequiredError}
|
|
302
|
+
*/
|
|
303
|
+
listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse> {
|
|
304
|
+
return localVarFp.listAutomationStepTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
305
|
+
},
|
|
174
306
|
/**
|
|
175
307
|
* List of all Automation Types with Key, Display and Description
|
|
176
308
|
* @summary List Automation Types
|
|
@@ -200,6 +332,26 @@ export interface ReportStaticListsApiInterface {
|
|
|
200
332
|
*/
|
|
201
333
|
listAutomationStatuses(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
202
334
|
|
|
335
|
+
/**
|
|
336
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
337
|
+
* @summary List Automation Step Delays
|
|
338
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
339
|
+
* @param {*} [options] Override http request option.
|
|
340
|
+
* @throws {RequiredError}
|
|
341
|
+
* @memberof ReportStaticListsApiInterface
|
|
342
|
+
*/
|
|
343
|
+
listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
347
|
+
* @summary List Automation Step Types
|
|
348
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
349
|
+
* @param {*} [options] Override http request option.
|
|
350
|
+
* @throws {RequiredError}
|
|
351
|
+
* @memberof ReportStaticListsApiInterface
|
|
352
|
+
*/
|
|
353
|
+
listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
|
|
354
|
+
|
|
203
355
|
/**
|
|
204
356
|
* List of all Automation Types with Key, Display and Description
|
|
205
357
|
* @summary List Automation Types
|
|
@@ -231,6 +383,30 @@ export class ReportStaticListsApi extends BaseAPI implements ReportStaticListsAp
|
|
|
231
383
|
return ReportStaticListsApiFp(this.configuration).listAutomationStatuses(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
232
384
|
}
|
|
233
385
|
|
|
386
|
+
/**
|
|
387
|
+
* List of all Automation Step Delays with Key, Display and Description
|
|
388
|
+
* @summary List Automation Step Delays
|
|
389
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
390
|
+
* @param {*} [options] Override http request option.
|
|
391
|
+
* @throws {RequiredError}
|
|
392
|
+
* @memberof ReportStaticListsApi
|
|
393
|
+
*/
|
|
394
|
+
public listAutomationStepDelays(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
395
|
+
return ReportStaticListsApiFp(this.configuration).listAutomationStepDelays(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* List of all Automation Step Types with Key, Display and Description
|
|
400
|
+
* @summary List Automation Step Types
|
|
401
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
402
|
+
* @param {*} [options] Override http request option.
|
|
403
|
+
* @throws {RequiredError}
|
|
404
|
+
* @memberof ReportStaticListsApi
|
|
405
|
+
*/
|
|
406
|
+
public listAutomationStepTypes(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
407
|
+
return ReportStaticListsApiFp(this.configuration).listAutomationStepTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
408
|
+
}
|
|
409
|
+
|
|
234
410
|
/**
|
|
235
411
|
* List of all Automation Types with Key, Display and Description
|
|
236
412
|
* @summary List Automation Types
|
|
@@ -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';
|
|
@@ -66,6 +68,49 @@ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
66
68
|
|
|
67
69
|
|
|
68
70
|
|
|
71
|
+
if (vbasoftwareDatabase != null) {
|
|
72
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
73
|
+
}
|
|
74
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
75
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
76
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
url: toPathString(localVarUrlObj),
|
|
80
|
+
options: localVarRequestOptions,
|
|
81
|
+
};
|
|
82
|
+
},
|
|
83
|
+
/**
|
|
84
|
+
* Retrieves a token for VBA Report integration.
|
|
85
|
+
* @summary Retrieve VBA Report token
|
|
86
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
87
|
+
* @param {*} [options] Override http request option.
|
|
88
|
+
* @throws {RequiredError}
|
|
89
|
+
*/
|
|
90
|
+
getVBAReportToken: async (vbasoftwareDatabase: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
92
|
+
assertParamExists('getVBAReportToken', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
93
|
+
const localVarPath = `/reports/token`;
|
|
94
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
95
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
96
|
+
let baseOptions;
|
|
97
|
+
if (configuration) {
|
|
98
|
+
baseOptions = configuration.baseOptions;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
102
|
+
const localVarHeaderParameter = {} as any;
|
|
103
|
+
const localVarQueryParameter = {} as any;
|
|
104
|
+
|
|
105
|
+
// authentication apiKeyAuth required
|
|
106
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
107
|
+
|
|
108
|
+
// authentication bearerAuth required
|
|
109
|
+
// http bearer authentication required
|
|
110
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
69
114
|
if (vbasoftwareDatabase != null) {
|
|
70
115
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
71
116
|
}
|
|
@@ -116,6 +161,55 @@ export const VBAReportsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
116
161
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
117
162
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
118
163
|
|
|
164
|
+
return {
|
|
165
|
+
url: toPathString(localVarUrlObj),
|
|
166
|
+
options: localVarRequestOptions,
|
|
167
|
+
};
|
|
168
|
+
},
|
|
169
|
+
/**
|
|
170
|
+
* Tracks a Report.
|
|
171
|
+
* @summary Track a Report
|
|
172
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
173
|
+
* @param {TrackableReport} trackableReport
|
|
174
|
+
* @param {*} [options] Override http request option.
|
|
175
|
+
* @throws {RequiredError}
|
|
176
|
+
*/
|
|
177
|
+
trackReport: async (vbasoftwareDatabase: string, trackableReport: TrackableReport, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
178
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
179
|
+
assertParamExists('trackReport', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
180
|
+
// verify required parameter 'trackableReport' is not null or undefined
|
|
181
|
+
assertParamExists('trackReport', 'trackableReport', trackableReport)
|
|
182
|
+
const localVarPath = `/reports/track`;
|
|
183
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
184
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
185
|
+
let baseOptions;
|
|
186
|
+
if (configuration) {
|
|
187
|
+
baseOptions = configuration.baseOptions;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
191
|
+
const localVarHeaderParameter = {} as any;
|
|
192
|
+
const localVarQueryParameter = {} as any;
|
|
193
|
+
|
|
194
|
+
// authentication apiKeyAuth required
|
|
195
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
196
|
+
|
|
197
|
+
// authentication bearerAuth required
|
|
198
|
+
// http bearer authentication required
|
|
199
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
204
|
+
|
|
205
|
+
if (vbasoftwareDatabase != null) {
|
|
206
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
207
|
+
}
|
|
208
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
209
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
210
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
211
|
+
localVarRequestOptions.data = serializeDataIfNeeded(trackableReport, localVarRequestOptions, configuration)
|
|
212
|
+
|
|
119
213
|
return {
|
|
120
214
|
url: toPathString(localVarUrlObj),
|
|
121
215
|
options: localVarRequestOptions,
|
|
@@ -145,6 +239,19 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
145
239
|
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.getVBAReport']?.[localVarOperationServerIndex]?.url;
|
|
146
240
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
147
241
|
},
|
|
242
|
+
/**
|
|
243
|
+
* Retrieves a token for VBA Report integration.
|
|
244
|
+
* @summary Retrieve VBA Report token
|
|
245
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
async getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAReportVBAResponse>> {
|
|
250
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVBAReportToken(vbasoftwareDatabase, options);
|
|
251
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
252
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.getVBAReportToken']?.[localVarOperationServerIndex]?.url;
|
|
253
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
254
|
+
},
|
|
148
255
|
/**
|
|
149
256
|
* Retrieves a list of all available VBA Reports.
|
|
150
257
|
* @summary List VBA Reports
|
|
@@ -158,6 +265,20 @@ export const VBAReportsApiFp = function(configuration?: Configuration) {
|
|
|
158
265
|
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.listVBAReports']?.[localVarOperationServerIndex]?.url;
|
|
159
266
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
160
267
|
},
|
|
268
|
+
/**
|
|
269
|
+
* Tracks a Report.
|
|
270
|
+
* @summary Track a Report
|
|
271
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
272
|
+
* @param {TrackableReport} trackableReport
|
|
273
|
+
* @param {*} [options] Override http request option.
|
|
274
|
+
* @throws {RequiredError}
|
|
275
|
+
*/
|
|
276
|
+
async trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
277
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.trackReport(vbasoftwareDatabase, trackableReport, options);
|
|
278
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
279
|
+
const localVarOperationServerBasePath = operationServerMap['VBAReportsApi.trackReport']?.[localVarOperationServerIndex]?.url;
|
|
280
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
281
|
+
},
|
|
161
282
|
}
|
|
162
283
|
};
|
|
163
284
|
|
|
@@ -179,6 +300,16 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
179
300
|
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse> {
|
|
180
301
|
return localVarFp.getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(axios, basePath));
|
|
181
302
|
},
|
|
303
|
+
/**
|
|
304
|
+
* Retrieves a token for VBA Report integration.
|
|
305
|
+
* @summary Retrieve VBA Report token
|
|
306
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
307
|
+
* @param {*} [options] Override http request option.
|
|
308
|
+
* @throws {RequiredError}
|
|
309
|
+
*/
|
|
310
|
+
getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse> {
|
|
311
|
+
return localVarFp.getVBAReportToken(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
312
|
+
},
|
|
182
313
|
/**
|
|
183
314
|
* Retrieves a list of all available VBA Reports.
|
|
184
315
|
* @summary List VBA Reports
|
|
@@ -189,6 +320,17 @@ export const VBAReportsApiFactory = function (configuration?: Configuration, bas
|
|
|
189
320
|
listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse> {
|
|
190
321
|
return localVarFp.listVBAReports(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
|
|
191
322
|
},
|
|
323
|
+
/**
|
|
324
|
+
* Tracks a Report.
|
|
325
|
+
* @summary Track a Report
|
|
326
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
327
|
+
* @param {TrackableReport} trackableReport
|
|
328
|
+
* @param {*} [options] Override http request option.
|
|
329
|
+
* @throws {RequiredError}
|
|
330
|
+
*/
|
|
331
|
+
trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
332
|
+
return localVarFp.trackReport(vbasoftwareDatabase, trackableReport, options).then((request) => request(axios, basePath));
|
|
333
|
+
},
|
|
192
334
|
};
|
|
193
335
|
};
|
|
194
336
|
|
|
@@ -209,6 +351,16 @@ export interface VBAReportsApiInterface {
|
|
|
209
351
|
*/
|
|
210
352
|
getVBAReport(vbasoftwareDatabase: string, reportDefinitionKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse>;
|
|
211
353
|
|
|
354
|
+
/**
|
|
355
|
+
* Retrieves a token for VBA Report integration.
|
|
356
|
+
* @summary Retrieve VBA Report token
|
|
357
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
* @memberof VBAReportsApiInterface
|
|
361
|
+
*/
|
|
362
|
+
getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportVBAResponse>;
|
|
363
|
+
|
|
212
364
|
/**
|
|
213
365
|
* Retrieves a list of all available VBA Reports.
|
|
214
366
|
* @summary List VBA Reports
|
|
@@ -219,6 +371,17 @@ export interface VBAReportsApiInterface {
|
|
|
219
371
|
*/
|
|
220
372
|
listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig): AxiosPromise<VBAReportListVBAResponse>;
|
|
221
373
|
|
|
374
|
+
/**
|
|
375
|
+
* Tracks a Report.
|
|
376
|
+
* @summary Track a Report
|
|
377
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
378
|
+
* @param {TrackableReport} trackableReport
|
|
379
|
+
* @param {*} [options] Override http request option.
|
|
380
|
+
* @throws {RequiredError}
|
|
381
|
+
* @memberof VBAReportsApiInterface
|
|
382
|
+
*/
|
|
383
|
+
trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
384
|
+
|
|
222
385
|
}
|
|
223
386
|
|
|
224
387
|
/**
|
|
@@ -241,6 +404,18 @@ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
|
241
404
|
return VBAReportsApiFp(this.configuration).getVBAReport(vbasoftwareDatabase, reportDefinitionKey, options).then((request) => request(this.axios, this.basePath));
|
|
242
405
|
}
|
|
243
406
|
|
|
407
|
+
/**
|
|
408
|
+
* Retrieves a token for VBA Report integration.
|
|
409
|
+
* @summary Retrieve VBA Report token
|
|
410
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
411
|
+
* @param {*} [options] Override http request option.
|
|
412
|
+
* @throws {RequiredError}
|
|
413
|
+
* @memberof VBAReportsApi
|
|
414
|
+
*/
|
|
415
|
+
public getVBAReportToken(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
416
|
+
return VBAReportsApiFp(this.configuration).getVBAReportToken(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
417
|
+
}
|
|
418
|
+
|
|
244
419
|
/**
|
|
245
420
|
* Retrieves a list of all available VBA Reports.
|
|
246
421
|
* @summary List VBA Reports
|
|
@@ -252,5 +427,18 @@ export class VBAReportsApi extends BaseAPI implements VBAReportsApiInterface {
|
|
|
252
427
|
public listVBAReports(vbasoftwareDatabase: string, options?: RawAxiosRequestConfig) {
|
|
253
428
|
return VBAReportsApiFp(this.configuration).listVBAReports(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
|
|
254
429
|
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Tracks a Report.
|
|
433
|
+
* @summary Track a Report
|
|
434
|
+
* @param {string} vbasoftwareDatabase The target database name to query.
|
|
435
|
+
* @param {TrackableReport} trackableReport
|
|
436
|
+
* @param {*} [options] Override http request option.
|
|
437
|
+
* @throws {RequiredError}
|
|
438
|
+
* @memberof VBAReportsApi
|
|
439
|
+
*/
|
|
440
|
+
public trackReport(vbasoftwareDatabase: string, trackableReport: TrackableReport, options?: RawAxiosRequestConfig) {
|
|
441
|
+
return VBAReportsApiFp(this.configuration).trackReport(vbasoftwareDatabase, trackableReport, options).then((request) => request(this.axios, this.basePath));
|
|
442
|
+
}
|
|
255
443
|
}
|
|
256
444
|
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Networks } from './networks';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { PlanBenefitLevel } from './plan-benefit-level';
|
|
@@ -227,5 +230,11 @@ export interface CoveredBenefit {
|
|
|
227
230
|
* @memberof CoveredBenefit
|
|
228
231
|
*/
|
|
229
232
|
'planBenLevels'?: Array<PlanBenefitLevel> | null;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @type {Array<Networks>}
|
|
236
|
+
* @memberof CoveredBenefit
|
|
237
|
+
*/
|
|
238
|
+
'planBenLevelNetworks'?: Array<Networks> | null;
|
|
230
239
|
}
|
|
231
240
|
|
|
@@ -32,5 +32,11 @@ export interface DatabaseConnection {
|
|
|
32
32
|
* @memberof DatabaseConnection
|
|
33
33
|
*/
|
|
34
34
|
'connectionString'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Indicates if single sign-on (SSO) is enabled for the database connection.
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof DatabaseConnection
|
|
39
|
+
*/
|
|
40
|
+
'ssoEnabled'?: boolean;
|
|
35
41
|
}
|
|
36
42
|
|
package/models/index.ts
CHANGED
|
@@ -2438,6 +2438,7 @@ export * from './tooth-quadrant';
|
|
|
2438
2438
|
export * from './tooth-quadrant-list-vbaresponse';
|
|
2439
2439
|
export * from './tooth-quadrant-vbaresponse';
|
|
2440
2440
|
export * from './tooth-vbaresponse';
|
|
2441
|
+
export * from './trackable-report';
|
|
2441
2442
|
export * from './transpose-request-meta-data-result';
|
|
2442
2443
|
export * from './transpose-request-meta-data-result-list-vbaresponse';
|
|
2443
2444
|
export * from './treatment-type';
|
package/models/reins-contract.ts
CHANGED
|
@@ -183,7 +183,7 @@ export interface ReinsContract {
|
|
|
183
183
|
*/
|
|
184
184
|
'policy_Number'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
* Notes if this is \"Spec. Advance Fund\" where all claims are included or \"Pay and Reimburse\" where only paid claims are included in the calculation.
|
|
186
|
+
* Notes if this is \"Spec. Advance Fund\" where all claims are included or \"Pay and Reimburse\" where only paid claims are included in the calculation. IMPORTANT: While you may enter any value here via API, Reports that use this data will will look for the value of \"S\" for \"Spec. Advance Fund\" or \"P\" for \"Pay and Reimburse\".
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof ReinsContract
|
|
189
189
|
*/
|
|
@@ -0,0 +1,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
|
+
|