@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230707.1 → 1.20230722.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 +4 -2
- package/api/benefits-api.ts +40 -13
- package/api/modifiers-api.ts +40 -13
- package/api/provider-api.ts +131 -15
- package/api/report-queue-detail-arguments-api.ts +77 -155
- package/api/report-queue-logs-api.ts +77 -155
- package/api/report-queue-schedules-api.ts +77 -107
- package/api/report-series-api.ts +107 -0
- package/api/report-series-process-templates-api.ts +77 -155
- package/api/{report-series-step-arguments-api.ts → report-series-step-args-api.ts} +103 -181
- package/api/report-series-steps-api.ts +77 -107
- package/api/{report-series-tracking-arguments-api.ts → report-series-tracking-args-api.ts} +103 -181
- package/api/report-static-lists-api.ts +242 -0
- package/api/report-tracking-api.ts +68 -155
- package/api.ts +3 -2
- package/models/idcode-type.ts +26 -2
- package/models/index.ts +1 -0
- package/models/modifier.ts +24 -0
- package/models/note-attachment.ts +26 -2
- package/models/provider-list-vbaresponse.ts +45 -0
- package/models/provider.ts +34 -10
- package/models/report-queue-detail-arg.ts +26 -2
- package/models/report-queue-log.ts +27 -3
- package/models/report-queue-schedule.ts +27 -3
- package/models/report-series-process-template.ts +27 -3
- package/models/report-series-step-arg.ts +26 -2
- package/models/report-series-step.ts +34 -10
- package/models/report-series-tracking-arg.ts +27 -3
- package/models/report-track.ts +26 -2
- package/models/sub-enrollment.ts +26 -2
- package/package.json +1 -1
|
@@ -38,20 +38,16 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
38
38
|
* Creates a new ReportQueueSchedule
|
|
39
39
|
* @summary Create ReportQueueSchedule
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
42
41
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createReportQueueSchedule: async (vbasoftwareDatabase: string,
|
|
45
|
+
createReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueSchedule: ReportQueueSchedule, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
50
|
-
assertParamExists('createReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
51
48
|
// verify required parameter 'reportQueueSchedule' is not null or undefined
|
|
52
49
|
assertParamExists('createReportQueueSchedule', 'reportQueueSchedule', reportQueueSchedule)
|
|
53
|
-
const localVarPath = `/report-
|
|
54
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)));
|
|
50
|
+
const localVarPath = `/report-queue-schedules`;
|
|
55
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
53
|
let baseOptions;
|
|
@@ -92,20 +88,16 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
92
88
|
* Deletes an ReportQueueSchedule
|
|
93
89
|
* @summary Delete ReportQueueSchedule
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
96
91
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteReportQueueSchedule: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueScheduleKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
104
|
-
assertParamExists('deleteReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
105
98
|
// verify required parameter 'reportQueueScheduleKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteReportQueueSchedule', 'reportQueueScheduleKey', reportQueueScheduleKey)
|
|
107
|
-
const localVarPath = `/report-
|
|
108
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
100
|
+
const localVarPath = `/report-queue-schedules/{reportQueueScheduleKey}`
|
|
109
101
|
.replace(`{${"reportQueueScheduleKey"}}`, encodeURIComponent(String(reportQueueScheduleKey)));
|
|
110
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
111
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -144,20 +136,16 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
144
136
|
* Gets ReportQueueSchedule
|
|
145
137
|
* @summary Get ReportQueueSchedule
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
148
139
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getReportQueueSchedule: async (vbasoftwareDatabase: string,
|
|
143
|
+
getReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueScheduleKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
156
|
-
assertParamExists('getReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
157
146
|
// verify required parameter 'reportQueueScheduleKey' is not null or undefined
|
|
158
147
|
assertParamExists('getReportQueueSchedule', 'reportQueueScheduleKey', reportQueueScheduleKey)
|
|
159
|
-
const localVarPath = `/report-
|
|
160
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
148
|
+
const localVarPath = `/report-queue-schedules/{reportQueueScheduleKey}`
|
|
161
149
|
.replace(`{${"reportQueueScheduleKey"}}`, encodeURIComponent(String(reportQueueScheduleKey)));
|
|
162
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -193,22 +181,20 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all ReportQueueSchedule
|
|
184
|
+
* Lists all ReportQueueSchedule
|
|
197
185
|
* @summary List ReportQueueSchedule
|
|
198
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
199
|
-
* @param {number} reportQueueKey
|
|
187
|
+
* @param {number} [reportQueueKey] Filter by ReportQueue_Key
|
|
188
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
200
189
|
* @param {number} [page] Page
|
|
201
190
|
* @param {number} [pageSize] Page Size
|
|
202
191
|
* @param {*} [options] Override http request option.
|
|
203
192
|
* @throws {RequiredError}
|
|
204
193
|
*/
|
|
205
|
-
listReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueKey
|
|
194
|
+
listReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueKey?: number, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
206
195
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
207
196
|
assertParamExists('listReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
208
|
-
|
|
209
|
-
assertParamExists('listReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
210
|
-
const localVarPath = `/report-queues/{reportQueueKey}/schedules`
|
|
211
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)));
|
|
197
|
+
const localVarPath = `/report-queue-schedules`;
|
|
212
198
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
213
199
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
214
200
|
let baseOptions;
|
|
@@ -227,6 +213,14 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
227
213
|
// http bearer authentication required
|
|
228
214
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
229
215
|
|
|
216
|
+
if (reportQueueKey !== undefined) {
|
|
217
|
+
localVarQueryParameter['reportQueueKey'] = reportQueueKey;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (sortBy !== undefined) {
|
|
221
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
222
|
+
}
|
|
223
|
+
|
|
230
224
|
if (page !== undefined) {
|
|
231
225
|
localVarQueryParameter['page'] = page;
|
|
232
226
|
}
|
|
@@ -254,20 +248,16 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
254
248
|
* Create or Update multiple ReportQueueSchedule at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
255
249
|
* @summary Create or Update Batch ReportQueueSchedule
|
|
256
250
|
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
258
251
|
* @param {Array<ReportQueueSchedule>} reportQueueSchedule
|
|
259
252
|
* @param {*} [options] Override http request option.
|
|
260
253
|
* @throws {RequiredError}
|
|
261
254
|
*/
|
|
262
|
-
updateBatchReportQueueSchedule: async (vbasoftwareDatabase: string,
|
|
255
|
+
updateBatchReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueSchedule: Array<ReportQueueSchedule>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
263
256
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
264
257
|
assertParamExists('updateBatchReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
265
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
266
|
-
assertParamExists('updateBatchReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
267
258
|
// verify required parameter 'reportQueueSchedule' is not null or undefined
|
|
268
259
|
assertParamExists('updateBatchReportQueueSchedule', 'reportQueueSchedule', reportQueueSchedule)
|
|
269
|
-
const localVarPath = `/report-
|
|
270
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)));
|
|
260
|
+
const localVarPath = `/report-queue-schedules-batch`;
|
|
271
261
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
272
262
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
273
263
|
let baseOptions;
|
|
@@ -308,23 +298,19 @@ export const ReportQueueSchedulesApiAxiosParamCreator = function (configuration?
|
|
|
308
298
|
* Updates a specific ReportQueueSchedule.
|
|
309
299
|
* @summary Update ReportQueueSchedule
|
|
310
300
|
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
312
301
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
313
302
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
314
303
|
* @param {*} [options] Override http request option.
|
|
315
304
|
* @throws {RequiredError}
|
|
316
305
|
*/
|
|
317
|
-
updateReportQueueSchedule: async (vbasoftwareDatabase: string,
|
|
306
|
+
updateReportQueueSchedule: async (vbasoftwareDatabase: string, reportQueueScheduleKey: number, reportQueueSchedule: ReportQueueSchedule, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
307
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
319
308
|
assertParamExists('updateReportQueueSchedule', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
320
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
321
|
-
assertParamExists('updateReportQueueSchedule', 'reportQueueKey', reportQueueKey)
|
|
322
309
|
// verify required parameter 'reportQueueScheduleKey' is not null or undefined
|
|
323
310
|
assertParamExists('updateReportQueueSchedule', 'reportQueueScheduleKey', reportQueueScheduleKey)
|
|
324
311
|
// verify required parameter 'reportQueueSchedule' is not null or undefined
|
|
325
312
|
assertParamExists('updateReportQueueSchedule', 'reportQueueSchedule', reportQueueSchedule)
|
|
326
|
-
const localVarPath = `/report-
|
|
327
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
313
|
+
const localVarPath = `/report-queue-schedules/{reportQueueScheduleKey}`
|
|
328
314
|
.replace(`{${"reportQueueScheduleKey"}}`, encodeURIComponent(String(reportQueueScheduleKey)));
|
|
329
315
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
330
316
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -376,80 +362,76 @@ export const ReportQueueSchedulesApiFp = function(configuration?: Configuration)
|
|
|
376
362
|
* Creates a new ReportQueueSchedule
|
|
377
363
|
* @summary Create ReportQueueSchedule
|
|
378
364
|
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
380
365
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
381
366
|
* @param {*} [options] Override http request option.
|
|
382
367
|
* @throws {RequiredError}
|
|
383
368
|
*/
|
|
384
|
-
async createReportQueueSchedule(vbasoftwareDatabase: string,
|
|
385
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportQueueSchedule(vbasoftwareDatabase,
|
|
369
|
+
async createReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueScheduleVBAResponse>> {
|
|
370
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options);
|
|
386
371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
387
372
|
},
|
|
388
373
|
/**
|
|
389
374
|
* Deletes an ReportQueueSchedule
|
|
390
375
|
* @summary Delete ReportQueueSchedule
|
|
391
376
|
* @param {string} vbasoftwareDatabase Target database
|
|
392
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
393
377
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
394
378
|
* @param {*} [options] Override http request option.
|
|
395
379
|
* @throws {RequiredError}
|
|
396
380
|
*/
|
|
397
|
-
async deleteReportQueueSchedule(vbasoftwareDatabase: string,
|
|
398
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportQueueSchedule(vbasoftwareDatabase,
|
|
381
|
+
async deleteReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
382
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options);
|
|
399
383
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
400
384
|
},
|
|
401
385
|
/**
|
|
402
386
|
* Gets ReportQueueSchedule
|
|
403
387
|
* @summary Get ReportQueueSchedule
|
|
404
388
|
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
406
389
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
407
390
|
* @param {*} [options] Override http request option.
|
|
408
391
|
* @throws {RequiredError}
|
|
409
392
|
*/
|
|
410
|
-
async getReportQueueSchedule(vbasoftwareDatabase: string,
|
|
411
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportQueueSchedule(vbasoftwareDatabase,
|
|
393
|
+
async getReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueScheduleVBAResponse>> {
|
|
394
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options);
|
|
412
395
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
413
396
|
},
|
|
414
397
|
/**
|
|
415
|
-
* Lists all ReportQueueSchedule
|
|
398
|
+
* Lists all ReportQueueSchedule
|
|
416
399
|
* @summary List ReportQueueSchedule
|
|
417
400
|
* @param {string} vbasoftwareDatabase Target database
|
|
418
|
-
* @param {number} reportQueueKey
|
|
401
|
+
* @param {number} [reportQueueKey] Filter by ReportQueue_Key
|
|
402
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
419
403
|
* @param {number} [page] Page
|
|
420
404
|
* @param {number} [pageSize] Page Size
|
|
421
405
|
* @param {*} [options] Override http request option.
|
|
422
406
|
* @throws {RequiredError}
|
|
423
407
|
*/
|
|
424
|
-
async listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey
|
|
425
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, page, pageSize, options);
|
|
408
|
+
async listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueScheduleListVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, sortBy, page, pageSize, options);
|
|
426
410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
411
|
},
|
|
428
412
|
/**
|
|
429
413
|
* Create or Update multiple ReportQueueSchedule at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
430
414
|
* @summary Create or Update Batch ReportQueueSchedule
|
|
431
415
|
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
433
416
|
* @param {Array<ReportQueueSchedule>} reportQueueSchedule
|
|
434
417
|
* @param {*} [options] Override http request option.
|
|
435
418
|
* @throws {RequiredError}
|
|
436
419
|
*/
|
|
437
|
-
async updateBatchReportQueueSchedule(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportQueueSchedule(vbasoftwareDatabase,
|
|
420
|
+
async updateBatchReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: Array<ReportQueueSchedule>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
421
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options);
|
|
439
422
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
423
|
},
|
|
441
424
|
/**
|
|
442
425
|
* Updates a specific ReportQueueSchedule.
|
|
443
426
|
* @summary Update ReportQueueSchedule
|
|
444
427
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
446
428
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
447
429
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
448
430
|
* @param {*} [options] Override http request option.
|
|
449
431
|
* @throws {RequiredError}
|
|
450
432
|
*/
|
|
451
|
-
async updateReportQueueSchedule(vbasoftwareDatabase: string,
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportQueueSchedule(vbasoftwareDatabase,
|
|
433
|
+
async updateReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueScheduleVBAResponse>> {
|
|
434
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, reportQueueSchedule, options);
|
|
453
435
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
436
|
},
|
|
455
437
|
}
|
|
@@ -466,75 +448,71 @@ export const ReportQueueSchedulesApiFactory = function (configuration?: Configur
|
|
|
466
448
|
* Creates a new ReportQueueSchedule
|
|
467
449
|
* @summary Create ReportQueueSchedule
|
|
468
450
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
470
451
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
471
452
|
* @param {*} [options] Override http request option.
|
|
472
453
|
* @throws {RequiredError}
|
|
473
454
|
*/
|
|
474
|
-
createReportQueueSchedule(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.createReportQueueSchedule(vbasoftwareDatabase,
|
|
455
|
+
createReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: ReportQueueSchedule, options?: any): AxiosPromise<ReportQueueScheduleVBAResponse> {
|
|
456
|
+
return localVarFp.createReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options).then((request) => request(axios, basePath));
|
|
476
457
|
},
|
|
477
458
|
/**
|
|
478
459
|
* Deletes an ReportQueueSchedule
|
|
479
460
|
* @summary Delete ReportQueueSchedule
|
|
480
461
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
482
462
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
483
463
|
* @param {*} [options] Override http request option.
|
|
484
464
|
* @throws {RequiredError}
|
|
485
465
|
*/
|
|
486
|
-
deleteReportQueueSchedule(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.deleteReportQueueSchedule(vbasoftwareDatabase,
|
|
466
|
+
deleteReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: any): AxiosPromise<void> {
|
|
467
|
+
return localVarFp.deleteReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options).then((request) => request(axios, basePath));
|
|
488
468
|
},
|
|
489
469
|
/**
|
|
490
470
|
* Gets ReportQueueSchedule
|
|
491
471
|
* @summary Get ReportQueueSchedule
|
|
492
472
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
494
473
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
495
474
|
* @param {*} [options] Override http request option.
|
|
496
475
|
* @throws {RequiredError}
|
|
497
476
|
*/
|
|
498
|
-
getReportQueueSchedule(vbasoftwareDatabase: string,
|
|
499
|
-
return localVarFp.getReportQueueSchedule(vbasoftwareDatabase,
|
|
477
|
+
getReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: any): AxiosPromise<ReportQueueScheduleVBAResponse> {
|
|
478
|
+
return localVarFp.getReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options).then((request) => request(axios, basePath));
|
|
500
479
|
},
|
|
501
480
|
/**
|
|
502
|
-
* Lists all ReportQueueSchedule
|
|
481
|
+
* Lists all ReportQueueSchedule
|
|
503
482
|
* @summary List ReportQueueSchedule
|
|
504
483
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
|
-
* @param {number} reportQueueKey
|
|
484
|
+
* @param {number} [reportQueueKey] Filter by ReportQueue_Key
|
|
485
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
506
486
|
* @param {number} [page] Page
|
|
507
487
|
* @param {number} [pageSize] Page Size
|
|
508
488
|
* @param {*} [options] Override http request option.
|
|
509
489
|
* @throws {RequiredError}
|
|
510
490
|
*/
|
|
511
|
-
listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey
|
|
512
|
-
return localVarFp.listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, page, pageSize, options).then((request) => request(axios, basePath));
|
|
491
|
+
listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportQueueScheduleListVBAResponse> {
|
|
492
|
+
return localVarFp.listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
493
|
},
|
|
514
494
|
/**
|
|
515
495
|
* Create or Update multiple ReportQueueSchedule at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
516
496
|
* @summary Create or Update Batch ReportQueueSchedule
|
|
517
497
|
* @param {string} vbasoftwareDatabase Target database
|
|
518
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
519
498
|
* @param {Array<ReportQueueSchedule>} reportQueueSchedule
|
|
520
499
|
* @param {*} [options] Override http request option.
|
|
521
500
|
* @throws {RequiredError}
|
|
522
501
|
*/
|
|
523
|
-
updateBatchReportQueueSchedule(vbasoftwareDatabase: string,
|
|
524
|
-
return localVarFp.updateBatchReportQueueSchedule(vbasoftwareDatabase,
|
|
502
|
+
updateBatchReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: Array<ReportQueueSchedule>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
503
|
+
return localVarFp.updateBatchReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options).then((request) => request(axios, basePath));
|
|
525
504
|
},
|
|
526
505
|
/**
|
|
527
506
|
* Updates a specific ReportQueueSchedule.
|
|
528
507
|
* @summary Update ReportQueueSchedule
|
|
529
508
|
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
531
509
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
532
510
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
533
511
|
* @param {*} [options] Override http request option.
|
|
534
512
|
* @throws {RequiredError}
|
|
535
513
|
*/
|
|
536
|
-
updateReportQueueSchedule(vbasoftwareDatabase: string,
|
|
537
|
-
return localVarFp.updateReportQueueSchedule(vbasoftwareDatabase,
|
|
514
|
+
updateReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, reportQueueSchedule: ReportQueueSchedule, options?: any): AxiosPromise<ReportQueueScheduleVBAResponse> {
|
|
515
|
+
return localVarFp.updateReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, reportQueueSchedule, options).then((request) => request(axios, basePath));
|
|
538
516
|
},
|
|
539
517
|
};
|
|
540
518
|
};
|
|
@@ -549,75 +527,71 @@ export interface ReportQueueSchedulesApiInterface {
|
|
|
549
527
|
* Creates a new ReportQueueSchedule
|
|
550
528
|
* @summary Create ReportQueueSchedule
|
|
551
529
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
553
530
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
554
531
|
* @param {*} [options] Override http request option.
|
|
555
532
|
* @throws {RequiredError}
|
|
556
533
|
* @memberof ReportQueueSchedulesApiInterface
|
|
557
534
|
*/
|
|
558
|
-
createReportQueueSchedule(vbasoftwareDatabase: string,
|
|
535
|
+
createReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig): AxiosPromise<ReportQueueScheduleVBAResponse>;
|
|
559
536
|
|
|
560
537
|
/**
|
|
561
538
|
* Deletes an ReportQueueSchedule
|
|
562
539
|
* @summary Delete ReportQueueSchedule
|
|
563
540
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
565
541
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
566
542
|
* @param {*} [options] Override http request option.
|
|
567
543
|
* @throws {RequiredError}
|
|
568
544
|
* @memberof ReportQueueSchedulesApiInterface
|
|
569
545
|
*/
|
|
570
|
-
deleteReportQueueSchedule(vbasoftwareDatabase: string,
|
|
546
|
+
deleteReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
571
547
|
|
|
572
548
|
/**
|
|
573
549
|
* Gets ReportQueueSchedule
|
|
574
550
|
* @summary Get ReportQueueSchedule
|
|
575
551
|
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
577
552
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
578
553
|
* @param {*} [options] Override http request option.
|
|
579
554
|
* @throws {RequiredError}
|
|
580
555
|
* @memberof ReportQueueSchedulesApiInterface
|
|
581
556
|
*/
|
|
582
|
-
getReportQueueSchedule(vbasoftwareDatabase: string,
|
|
557
|
+
getReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig): AxiosPromise<ReportQueueScheduleVBAResponse>;
|
|
583
558
|
|
|
584
559
|
/**
|
|
585
|
-
* Lists all ReportQueueSchedule
|
|
560
|
+
* Lists all ReportQueueSchedule
|
|
586
561
|
* @summary List ReportQueueSchedule
|
|
587
562
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {number} reportQueueKey
|
|
563
|
+
* @param {number} [reportQueueKey] Filter by ReportQueue_Key
|
|
564
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
589
565
|
* @param {number} [page] Page
|
|
590
566
|
* @param {number} [pageSize] Page Size
|
|
591
567
|
* @param {*} [options] Override http request option.
|
|
592
568
|
* @throws {RequiredError}
|
|
593
569
|
* @memberof ReportQueueSchedulesApiInterface
|
|
594
570
|
*/
|
|
595
|
-
listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey
|
|
571
|
+
listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportQueueScheduleListVBAResponse>;
|
|
596
572
|
|
|
597
573
|
/**
|
|
598
574
|
* Create or Update multiple ReportQueueSchedule at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
599
575
|
* @summary Create or Update Batch ReportQueueSchedule
|
|
600
576
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
602
577
|
* @param {Array<ReportQueueSchedule>} reportQueueSchedule
|
|
603
578
|
* @param {*} [options] Override http request option.
|
|
604
579
|
* @throws {RequiredError}
|
|
605
580
|
* @memberof ReportQueueSchedulesApiInterface
|
|
606
581
|
*/
|
|
607
|
-
updateBatchReportQueueSchedule(vbasoftwareDatabase: string,
|
|
582
|
+
updateBatchReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: Array<ReportQueueSchedule>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
608
583
|
|
|
609
584
|
/**
|
|
610
585
|
* Updates a specific ReportQueueSchedule.
|
|
611
586
|
* @summary Update ReportQueueSchedule
|
|
612
587
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
614
588
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
615
589
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
616
590
|
* @param {*} [options] Override http request option.
|
|
617
591
|
* @throws {RequiredError}
|
|
618
592
|
* @memberof ReportQueueSchedulesApiInterface
|
|
619
593
|
*/
|
|
620
|
-
updateReportQueueSchedule(vbasoftwareDatabase: string,
|
|
594
|
+
updateReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig): AxiosPromise<ReportQueueScheduleVBAResponse>;
|
|
621
595
|
|
|
622
596
|
}
|
|
623
597
|
|
|
@@ -632,85 +606,81 @@ export class ReportQueueSchedulesApi extends BaseAPI implements ReportQueueSched
|
|
|
632
606
|
* Creates a new ReportQueueSchedule
|
|
633
607
|
* @summary Create ReportQueueSchedule
|
|
634
608
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
636
609
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
637
610
|
* @param {*} [options] Override http request option.
|
|
638
611
|
* @throws {RequiredError}
|
|
639
612
|
* @memberof ReportQueueSchedulesApi
|
|
640
613
|
*/
|
|
641
|
-
public createReportQueueSchedule(vbasoftwareDatabase: string,
|
|
642
|
-
return ReportQueueSchedulesApiFp(this.configuration).createReportQueueSchedule(vbasoftwareDatabase,
|
|
614
|
+
public createReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig) {
|
|
615
|
+
return ReportQueueSchedulesApiFp(this.configuration).createReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options).then((request) => request(this.axios, this.basePath));
|
|
643
616
|
}
|
|
644
617
|
|
|
645
618
|
/**
|
|
646
619
|
* Deletes an ReportQueueSchedule
|
|
647
620
|
* @summary Delete ReportQueueSchedule
|
|
648
621
|
* @param {string} vbasoftwareDatabase Target database
|
|
649
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
650
622
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
651
623
|
* @param {*} [options] Override http request option.
|
|
652
624
|
* @throws {RequiredError}
|
|
653
625
|
* @memberof ReportQueueSchedulesApi
|
|
654
626
|
*/
|
|
655
|
-
public deleteReportQueueSchedule(vbasoftwareDatabase: string,
|
|
656
|
-
return ReportQueueSchedulesApiFp(this.configuration).deleteReportQueueSchedule(vbasoftwareDatabase,
|
|
627
|
+
public deleteReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig) {
|
|
628
|
+
return ReportQueueSchedulesApiFp(this.configuration).deleteReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options).then((request) => request(this.axios, this.basePath));
|
|
657
629
|
}
|
|
658
630
|
|
|
659
631
|
/**
|
|
660
632
|
* Gets ReportQueueSchedule
|
|
661
633
|
* @summary Get ReportQueueSchedule
|
|
662
634
|
* @param {string} vbasoftwareDatabase Target database
|
|
663
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
664
635
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
665
636
|
* @param {*} [options] Override http request option.
|
|
666
637
|
* @throws {RequiredError}
|
|
667
638
|
* @memberof ReportQueueSchedulesApi
|
|
668
639
|
*/
|
|
669
|
-
public getReportQueueSchedule(vbasoftwareDatabase: string,
|
|
670
|
-
return ReportQueueSchedulesApiFp(this.configuration).getReportQueueSchedule(vbasoftwareDatabase,
|
|
640
|
+
public getReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, options?: AxiosRequestConfig) {
|
|
641
|
+
return ReportQueueSchedulesApiFp(this.configuration).getReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, options).then((request) => request(this.axios, this.basePath));
|
|
671
642
|
}
|
|
672
643
|
|
|
673
644
|
/**
|
|
674
|
-
* Lists all ReportQueueSchedule
|
|
645
|
+
* Lists all ReportQueueSchedule
|
|
675
646
|
* @summary List ReportQueueSchedule
|
|
676
647
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {number} reportQueueKey
|
|
648
|
+
* @param {number} [reportQueueKey] Filter by ReportQueue_Key
|
|
649
|
+
* @param {string} [sortBy] Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending.
|
|
678
650
|
* @param {number} [page] Page
|
|
679
651
|
* @param {number} [pageSize] Page Size
|
|
680
652
|
* @param {*} [options] Override http request option.
|
|
681
653
|
* @throws {RequiredError}
|
|
682
654
|
* @memberof ReportQueueSchedulesApi
|
|
683
655
|
*/
|
|
684
|
-
public listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey
|
|
685
|
-
return ReportQueueSchedulesApiFp(this.configuration).listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
656
|
+
public listReportQueueSchedule(vbasoftwareDatabase: string, reportQueueKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
657
|
+
return ReportQueueSchedulesApiFp(this.configuration).listReportQueueSchedule(vbasoftwareDatabase, reportQueueKey, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
658
|
}
|
|
687
659
|
|
|
688
660
|
/**
|
|
689
661
|
* Create or Update multiple ReportQueueSchedule at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
690
662
|
* @summary Create or Update Batch ReportQueueSchedule
|
|
691
663
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
693
664
|
* @param {Array<ReportQueueSchedule>} reportQueueSchedule
|
|
694
665
|
* @param {*} [options] Override http request option.
|
|
695
666
|
* @throws {RequiredError}
|
|
696
667
|
* @memberof ReportQueueSchedulesApi
|
|
697
668
|
*/
|
|
698
|
-
public updateBatchReportQueueSchedule(vbasoftwareDatabase: string,
|
|
699
|
-
return ReportQueueSchedulesApiFp(this.configuration).updateBatchReportQueueSchedule(vbasoftwareDatabase,
|
|
669
|
+
public updateBatchReportQueueSchedule(vbasoftwareDatabase: string, reportQueueSchedule: Array<ReportQueueSchedule>, options?: AxiosRequestConfig) {
|
|
670
|
+
return ReportQueueSchedulesApiFp(this.configuration).updateBatchReportQueueSchedule(vbasoftwareDatabase, reportQueueSchedule, options).then((request) => request(this.axios, this.basePath));
|
|
700
671
|
}
|
|
701
672
|
|
|
702
673
|
/**
|
|
703
674
|
* Updates a specific ReportQueueSchedule.
|
|
704
675
|
* @summary Update ReportQueueSchedule
|
|
705
676
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
707
677
|
* @param {number} reportQueueScheduleKey ReportQueueSchedule Key
|
|
708
678
|
* @param {ReportQueueSchedule} reportQueueSchedule
|
|
709
679
|
* @param {*} [options] Override http request option.
|
|
710
680
|
* @throws {RequiredError}
|
|
711
681
|
* @memberof ReportQueueSchedulesApi
|
|
712
682
|
*/
|
|
713
|
-
public updateReportQueueSchedule(vbasoftwareDatabase: string,
|
|
714
|
-
return ReportQueueSchedulesApiFp(this.configuration).updateReportQueueSchedule(vbasoftwareDatabase,
|
|
683
|
+
public updateReportQueueSchedule(vbasoftwareDatabase: string, reportQueueScheduleKey: number, reportQueueSchedule: ReportQueueSchedule, options?: AxiosRequestConfig) {
|
|
684
|
+
return ReportQueueSchedulesApiFp(this.configuration).updateReportQueueSchedule(vbasoftwareDatabase, reportQueueScheduleKey, reportQueueSchedule, options).then((request) => request(this.axios, this.basePath));
|
|
715
685
|
}
|
|
716
686
|
}
|