@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230710.1 → 1.20230724.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,24 +38,16 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
38
38
|
* Creates a new ReportQueueLog
|
|
39
39
|
* @summary Create ReportQueueLog
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
42
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
43
41
|
* @param {ReportQueueLog} reportQueueLog
|
|
44
42
|
* @param {*} [options] Override http request option.
|
|
45
43
|
* @throws {RequiredError}
|
|
46
44
|
*/
|
|
47
|
-
createReportQueueLog: async (vbasoftwareDatabase: string,
|
|
45
|
+
createReportQueueLog: async (vbasoftwareDatabase: string, reportQueueLog: ReportQueueLog, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
49
47
|
assertParamExists('createReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
50
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
51
|
-
assertParamExists('createReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
52
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
53
|
-
assertParamExists('createReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
54
48
|
// verify required parameter 'reportQueueLog' is not null or undefined
|
|
55
49
|
assertParamExists('createReportQueueLog', 'reportQueueLog', reportQueueLog)
|
|
56
|
-
const localVarPath = `/report-
|
|
57
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
58
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)));
|
|
50
|
+
const localVarPath = `/report-queue-logs`;
|
|
59
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
60
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
61
53
|
let baseOptions;
|
|
@@ -96,24 +88,16 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
96
88
|
* Deletes an ReportQueueLog
|
|
97
89
|
* @summary Delete ReportQueueLog
|
|
98
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
99
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
100
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
101
91
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
102
92
|
* @param {*} [options] Override http request option.
|
|
103
93
|
* @throws {RequiredError}
|
|
104
94
|
*/
|
|
105
|
-
deleteReportQueueLog: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteReportQueueLog: async (vbasoftwareDatabase: string, reportQueueLogKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
106
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
107
97
|
assertParamExists('deleteReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
108
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
109
|
-
assertParamExists('deleteReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
110
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
111
|
-
assertParamExists('deleteReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
112
98
|
// verify required parameter 'reportQueueLogKey' is not null or undefined
|
|
113
99
|
assertParamExists('deleteReportQueueLog', 'reportQueueLogKey', reportQueueLogKey)
|
|
114
|
-
const localVarPath = `/report-
|
|
115
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
116
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)))
|
|
100
|
+
const localVarPath = `/report-queue-logs/{reportQueueLogKey}`
|
|
117
101
|
.replace(`{${"reportQueueLogKey"}}`, encodeURIComponent(String(reportQueueLogKey)));
|
|
118
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -152,24 +136,16 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
152
136
|
* Gets ReportQueueLog
|
|
153
137
|
* @summary Get ReportQueueLog
|
|
154
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
155
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
156
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
157
139
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
158
140
|
* @param {*} [options] Override http request option.
|
|
159
141
|
* @throws {RequiredError}
|
|
160
142
|
*/
|
|
161
|
-
getReportQueueLog: async (vbasoftwareDatabase: string,
|
|
143
|
+
getReportQueueLog: async (vbasoftwareDatabase: string, reportQueueLogKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
162
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
163
145
|
assertParamExists('getReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
164
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
165
|
-
assertParamExists('getReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
166
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
167
|
-
assertParamExists('getReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
168
146
|
// verify required parameter 'reportQueueLogKey' is not null or undefined
|
|
169
147
|
assertParamExists('getReportQueueLog', 'reportQueueLogKey', reportQueueLogKey)
|
|
170
|
-
const localVarPath = `/report-
|
|
171
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
172
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)))
|
|
148
|
+
const localVarPath = `/report-queue-logs/{reportQueueLogKey}`
|
|
173
149
|
.replace(`{${"reportQueueLogKey"}}`, encodeURIComponent(String(reportQueueLogKey)));
|
|
174
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
175
151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -205,26 +181,20 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
205
181
|
};
|
|
206
182
|
},
|
|
207
183
|
/**
|
|
208
|
-
* Lists all ReportQueueLog
|
|
184
|
+
* Lists all ReportQueueLog
|
|
209
185
|
* @summary List ReportQueueLog
|
|
210
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
211
|
-
* @param {number}
|
|
212
|
-
* @param {
|
|
187
|
+
* @param {number} [reportQueueDetailKey] Filter by ReportQueueDetail_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.
|
|
213
189
|
* @param {number} [page] Page
|
|
214
190
|
* @param {number} [pageSize] Page Size
|
|
215
191
|
* @param {*} [options] Override http request option.
|
|
216
192
|
* @throws {RequiredError}
|
|
217
193
|
*/
|
|
218
|
-
listReportQueueLog: async (vbasoftwareDatabase: string,
|
|
194
|
+
listReportQueueLog: async (vbasoftwareDatabase: string, reportQueueDetailKey?: number, sortBy?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
219
195
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
220
196
|
assertParamExists('listReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
221
|
-
|
|
222
|
-
assertParamExists('listReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
223
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
224
|
-
assertParamExists('listReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
225
|
-
const localVarPath = `/report-queues/{reportQueueKey}/details/{reportQueueDetailKey}/logs`
|
|
226
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
227
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)));
|
|
197
|
+
const localVarPath = `/report-queue-logs`;
|
|
228
198
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
229
199
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
230
200
|
let baseOptions;
|
|
@@ -243,6 +213,14 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
243
213
|
// http bearer authentication required
|
|
244
214
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
245
215
|
|
|
216
|
+
if (reportQueueDetailKey !== undefined) {
|
|
217
|
+
localVarQueryParameter['reportQueueDetailKey'] = reportQueueDetailKey;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (sortBy !== undefined) {
|
|
221
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
222
|
+
}
|
|
223
|
+
|
|
246
224
|
if (page !== undefined) {
|
|
247
225
|
localVarQueryParameter['page'] = page;
|
|
248
226
|
}
|
|
@@ -270,24 +248,16 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
270
248
|
* Create or Update multiple ReportQueueLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
271
249
|
* @summary Create or Update Batch ReportQueueLog
|
|
272
250
|
* @param {string} vbasoftwareDatabase Target database
|
|
273
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
274
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
275
251
|
* @param {Array<ReportQueueLog>} reportQueueLog
|
|
276
252
|
* @param {*} [options] Override http request option.
|
|
277
253
|
* @throws {RequiredError}
|
|
278
254
|
*/
|
|
279
|
-
updateBatchReportQueueLog: async (vbasoftwareDatabase: string,
|
|
255
|
+
updateBatchReportQueueLog: async (vbasoftwareDatabase: string, reportQueueLog: Array<ReportQueueLog>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
280
256
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
281
257
|
assertParamExists('updateBatchReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
282
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
283
|
-
assertParamExists('updateBatchReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
284
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
285
|
-
assertParamExists('updateBatchReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
286
258
|
// verify required parameter 'reportQueueLog' is not null or undefined
|
|
287
259
|
assertParamExists('updateBatchReportQueueLog', 'reportQueueLog', reportQueueLog)
|
|
288
|
-
const localVarPath = `/report-
|
|
289
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
290
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)));
|
|
260
|
+
const localVarPath = `/report-queue-logs-batch`;
|
|
291
261
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
292
262
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
293
263
|
let baseOptions;
|
|
@@ -328,27 +298,19 @@ export const ReportQueueLogsApiAxiosParamCreator = function (configuration?: Con
|
|
|
328
298
|
* Updates a specific ReportQueueLog.
|
|
329
299
|
* @summary Update ReportQueueLog
|
|
330
300
|
* @param {string} vbasoftwareDatabase Target database
|
|
331
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
332
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
333
301
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
334
302
|
* @param {ReportQueueLog} reportQueueLog
|
|
335
303
|
* @param {*} [options] Override http request option.
|
|
336
304
|
* @throws {RequiredError}
|
|
337
305
|
*/
|
|
338
|
-
updateReportQueueLog: async (vbasoftwareDatabase: string,
|
|
306
|
+
updateReportQueueLog: async (vbasoftwareDatabase: string, reportQueueLogKey: number, reportQueueLog: ReportQueueLog, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
339
307
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
340
308
|
assertParamExists('updateReportQueueLog', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
341
|
-
// verify required parameter 'reportQueueKey' is not null or undefined
|
|
342
|
-
assertParamExists('updateReportQueueLog', 'reportQueueKey', reportQueueKey)
|
|
343
|
-
// verify required parameter 'reportQueueDetailKey' is not null or undefined
|
|
344
|
-
assertParamExists('updateReportQueueLog', 'reportQueueDetailKey', reportQueueDetailKey)
|
|
345
309
|
// verify required parameter 'reportQueueLogKey' is not null or undefined
|
|
346
310
|
assertParamExists('updateReportQueueLog', 'reportQueueLogKey', reportQueueLogKey)
|
|
347
311
|
// verify required parameter 'reportQueueLog' is not null or undefined
|
|
348
312
|
assertParamExists('updateReportQueueLog', 'reportQueueLog', reportQueueLog)
|
|
349
|
-
const localVarPath = `/report-
|
|
350
|
-
.replace(`{${"reportQueueKey"}}`, encodeURIComponent(String(reportQueueKey)))
|
|
351
|
-
.replace(`{${"reportQueueDetailKey"}}`, encodeURIComponent(String(reportQueueDetailKey)))
|
|
313
|
+
const localVarPath = `/report-queue-logs/{reportQueueLogKey}`
|
|
352
314
|
.replace(`{${"reportQueueLogKey"}}`, encodeURIComponent(String(reportQueueLogKey)));
|
|
353
315
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
354
316
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -400,86 +362,76 @@ export const ReportQueueLogsApiFp = function(configuration?: Configuration) {
|
|
|
400
362
|
* Creates a new ReportQueueLog
|
|
401
363
|
* @summary Create ReportQueueLog
|
|
402
364
|
* @param {string} vbasoftwareDatabase Target database
|
|
403
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
404
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
405
365
|
* @param {ReportQueueLog} reportQueueLog
|
|
406
366
|
* @param {*} [options] Override http request option.
|
|
407
367
|
* @throws {RequiredError}
|
|
408
368
|
*/
|
|
409
|
-
async createReportQueueLog(vbasoftwareDatabase: string,
|
|
410
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportQueueLog(vbasoftwareDatabase,
|
|
369
|
+
async createReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueLogVBAResponse>> {
|
|
370
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportQueueLog(vbasoftwareDatabase, reportQueueLog, options);
|
|
411
371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
412
372
|
},
|
|
413
373
|
/**
|
|
414
374
|
* Deletes an ReportQueueLog
|
|
415
375
|
* @summary Delete ReportQueueLog
|
|
416
376
|
* @param {string} vbasoftwareDatabase Target database
|
|
417
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
418
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
419
377
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
420
378
|
* @param {*} [options] Override http request option.
|
|
421
379
|
* @throws {RequiredError}
|
|
422
380
|
*/
|
|
423
|
-
async deleteReportQueueLog(vbasoftwareDatabase: string,
|
|
424
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportQueueLog(vbasoftwareDatabase,
|
|
381
|
+
async deleteReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
382
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options);
|
|
425
383
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
426
384
|
},
|
|
427
385
|
/**
|
|
428
386
|
* Gets ReportQueueLog
|
|
429
387
|
* @summary Get ReportQueueLog
|
|
430
388
|
* @param {string} vbasoftwareDatabase Target database
|
|
431
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
432
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
433
389
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
434
390
|
* @param {*} [options] Override http request option.
|
|
435
391
|
* @throws {RequiredError}
|
|
436
392
|
*/
|
|
437
|
-
async getReportQueueLog(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportQueueLog(vbasoftwareDatabase,
|
|
393
|
+
async getReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueLogVBAResponse>> {
|
|
394
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options);
|
|
439
395
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
396
|
},
|
|
441
397
|
/**
|
|
442
|
-
* Lists all ReportQueueLog
|
|
398
|
+
* Lists all ReportQueueLog
|
|
443
399
|
* @summary List ReportQueueLog
|
|
444
400
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {number}
|
|
446
|
-
* @param {
|
|
401
|
+
* @param {number} [reportQueueDetailKey] Filter by ReportQueueDetail_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.
|
|
447
403
|
* @param {number} [page] Page
|
|
448
404
|
* @param {number} [pageSize] Page Size
|
|
449
405
|
* @param {*} [options] Override http request option.
|
|
450
406
|
* @throws {RequiredError}
|
|
451
407
|
*/
|
|
452
|
-
async listReportQueueLog(vbasoftwareDatabase: string,
|
|
453
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportQueueLog(vbasoftwareDatabase,
|
|
408
|
+
async listReportQueueLog(vbasoftwareDatabase: string, reportQueueDetailKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueLogListVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportQueueLog(vbasoftwareDatabase, reportQueueDetailKey, sortBy, page, pageSize, options);
|
|
454
410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
455
411
|
},
|
|
456
412
|
/**
|
|
457
413
|
* Create or Update multiple ReportQueueLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
458
414
|
* @summary Create or Update Batch ReportQueueLog
|
|
459
415
|
* @param {string} vbasoftwareDatabase Target database
|
|
460
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
461
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
462
416
|
* @param {Array<ReportQueueLog>} reportQueueLog
|
|
463
417
|
* @param {*} [options] Override http request option.
|
|
464
418
|
* @throws {RequiredError}
|
|
465
419
|
*/
|
|
466
|
-
async updateBatchReportQueueLog(vbasoftwareDatabase: string,
|
|
467
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportQueueLog(vbasoftwareDatabase,
|
|
420
|
+
async updateBatchReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: Array<ReportQueueLog>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
421
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportQueueLog(vbasoftwareDatabase, reportQueueLog, options);
|
|
468
422
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
469
423
|
},
|
|
470
424
|
/**
|
|
471
425
|
* Updates a specific ReportQueueLog.
|
|
472
426
|
* @summary Update ReportQueueLog
|
|
473
427
|
* @param {string} vbasoftwareDatabase Target database
|
|
474
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
475
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
476
428
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
477
429
|
* @param {ReportQueueLog} reportQueueLog
|
|
478
430
|
* @param {*} [options] Override http request option.
|
|
479
431
|
* @throws {RequiredError}
|
|
480
432
|
*/
|
|
481
|
-
async updateReportQueueLog(vbasoftwareDatabase: string,
|
|
482
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportQueueLog(vbasoftwareDatabase,
|
|
433
|
+
async updateReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportQueueLogVBAResponse>> {
|
|
434
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, reportQueueLog, options);
|
|
483
435
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
484
436
|
},
|
|
485
437
|
}
|
|
@@ -496,81 +448,71 @@ export const ReportQueueLogsApiFactory = function (configuration?: Configuration
|
|
|
496
448
|
* Creates a new ReportQueueLog
|
|
497
449
|
* @summary Create ReportQueueLog
|
|
498
450
|
* @param {string} vbasoftwareDatabase Target database
|
|
499
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
500
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
501
451
|
* @param {ReportQueueLog} reportQueueLog
|
|
502
452
|
* @param {*} [options] Override http request option.
|
|
503
453
|
* @throws {RequiredError}
|
|
504
454
|
*/
|
|
505
|
-
createReportQueueLog(vbasoftwareDatabase: string,
|
|
506
|
-
return localVarFp.createReportQueueLog(vbasoftwareDatabase,
|
|
455
|
+
createReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: ReportQueueLog, options?: any): AxiosPromise<ReportQueueLogVBAResponse> {
|
|
456
|
+
return localVarFp.createReportQueueLog(vbasoftwareDatabase, reportQueueLog, options).then((request) => request(axios, basePath));
|
|
507
457
|
},
|
|
508
458
|
/**
|
|
509
459
|
* Deletes an ReportQueueLog
|
|
510
460
|
* @summary Delete ReportQueueLog
|
|
511
461
|
* @param {string} vbasoftwareDatabase Target database
|
|
512
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
513
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
514
462
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
515
463
|
* @param {*} [options] Override http request option.
|
|
516
464
|
* @throws {RequiredError}
|
|
517
465
|
*/
|
|
518
|
-
deleteReportQueueLog(vbasoftwareDatabase: string,
|
|
519
|
-
return localVarFp.deleteReportQueueLog(vbasoftwareDatabase,
|
|
466
|
+
deleteReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: any): AxiosPromise<void> {
|
|
467
|
+
return localVarFp.deleteReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options).then((request) => request(axios, basePath));
|
|
520
468
|
},
|
|
521
469
|
/**
|
|
522
470
|
* Gets ReportQueueLog
|
|
523
471
|
* @summary Get ReportQueueLog
|
|
524
472
|
* @param {string} vbasoftwareDatabase Target database
|
|
525
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
526
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
527
473
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
528
474
|
* @param {*} [options] Override http request option.
|
|
529
475
|
* @throws {RequiredError}
|
|
530
476
|
*/
|
|
531
|
-
getReportQueueLog(vbasoftwareDatabase: string,
|
|
532
|
-
return localVarFp.getReportQueueLog(vbasoftwareDatabase,
|
|
477
|
+
getReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: any): AxiosPromise<ReportQueueLogVBAResponse> {
|
|
478
|
+
return localVarFp.getReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options).then((request) => request(axios, basePath));
|
|
533
479
|
},
|
|
534
480
|
/**
|
|
535
|
-
* Lists all ReportQueueLog
|
|
481
|
+
* Lists all ReportQueueLog
|
|
536
482
|
* @summary List ReportQueueLog
|
|
537
483
|
* @param {string} vbasoftwareDatabase Target database
|
|
538
|
-
* @param {number}
|
|
539
|
-
* @param {
|
|
484
|
+
* @param {number} [reportQueueDetailKey] Filter by ReportQueueDetail_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.
|
|
540
486
|
* @param {number} [page] Page
|
|
541
487
|
* @param {number} [pageSize] Page Size
|
|
542
488
|
* @param {*} [options] Override http request option.
|
|
543
489
|
* @throws {RequiredError}
|
|
544
490
|
*/
|
|
545
|
-
listReportQueueLog(vbasoftwareDatabase: string,
|
|
546
|
-
return localVarFp.listReportQueueLog(vbasoftwareDatabase,
|
|
491
|
+
listReportQueueLog(vbasoftwareDatabase: string, reportQueueDetailKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportQueueLogListVBAResponse> {
|
|
492
|
+
return localVarFp.listReportQueueLog(vbasoftwareDatabase, reportQueueDetailKey, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
547
493
|
},
|
|
548
494
|
/**
|
|
549
495
|
* Create or Update multiple ReportQueueLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
550
496
|
* @summary Create or Update Batch ReportQueueLog
|
|
551
497
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
553
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
554
498
|
* @param {Array<ReportQueueLog>} reportQueueLog
|
|
555
499
|
* @param {*} [options] Override http request option.
|
|
556
500
|
* @throws {RequiredError}
|
|
557
501
|
*/
|
|
558
|
-
updateBatchReportQueueLog(vbasoftwareDatabase: string,
|
|
559
|
-
return localVarFp.updateBatchReportQueueLog(vbasoftwareDatabase,
|
|
502
|
+
updateBatchReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: Array<ReportQueueLog>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
503
|
+
return localVarFp.updateBatchReportQueueLog(vbasoftwareDatabase, reportQueueLog, options).then((request) => request(axios, basePath));
|
|
560
504
|
},
|
|
561
505
|
/**
|
|
562
506
|
* Updates a specific ReportQueueLog.
|
|
563
507
|
* @summary Update ReportQueueLog
|
|
564
508
|
* @param {string} vbasoftwareDatabase Target database
|
|
565
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
566
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
567
509
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
568
510
|
* @param {ReportQueueLog} reportQueueLog
|
|
569
511
|
* @param {*} [options] Override http request option.
|
|
570
512
|
* @throws {RequiredError}
|
|
571
513
|
*/
|
|
572
|
-
updateReportQueueLog(vbasoftwareDatabase: string,
|
|
573
|
-
return localVarFp.updateReportQueueLog(vbasoftwareDatabase,
|
|
514
|
+
updateReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, reportQueueLog: ReportQueueLog, options?: any): AxiosPromise<ReportQueueLogVBAResponse> {
|
|
515
|
+
return localVarFp.updateReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, reportQueueLog, options).then((request) => request(axios, basePath));
|
|
574
516
|
},
|
|
575
517
|
};
|
|
576
518
|
};
|
|
@@ -585,81 +527,71 @@ export interface ReportQueueLogsApiInterface {
|
|
|
585
527
|
* Creates a new ReportQueueLog
|
|
586
528
|
* @summary Create ReportQueueLog
|
|
587
529
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
589
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
590
530
|
* @param {ReportQueueLog} reportQueueLog
|
|
591
531
|
* @param {*} [options] Override http request option.
|
|
592
532
|
* @throws {RequiredError}
|
|
593
533
|
* @memberof ReportQueueLogsApiInterface
|
|
594
534
|
*/
|
|
595
|
-
createReportQueueLog(vbasoftwareDatabase: string,
|
|
535
|
+
createReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig): AxiosPromise<ReportQueueLogVBAResponse>;
|
|
596
536
|
|
|
597
537
|
/**
|
|
598
538
|
* Deletes an ReportQueueLog
|
|
599
539
|
* @summary Delete ReportQueueLog
|
|
600
540
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
602
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
603
541
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
604
542
|
* @param {*} [options] Override http request option.
|
|
605
543
|
* @throws {RequiredError}
|
|
606
544
|
* @memberof ReportQueueLogsApiInterface
|
|
607
545
|
*/
|
|
608
|
-
deleteReportQueueLog(vbasoftwareDatabase: string,
|
|
546
|
+
deleteReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
609
547
|
|
|
610
548
|
/**
|
|
611
549
|
* Gets ReportQueueLog
|
|
612
550
|
* @summary Get ReportQueueLog
|
|
613
551
|
* @param {string} vbasoftwareDatabase Target database
|
|
614
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
615
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
616
552
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
617
553
|
* @param {*} [options] Override http request option.
|
|
618
554
|
* @throws {RequiredError}
|
|
619
555
|
* @memberof ReportQueueLogsApiInterface
|
|
620
556
|
*/
|
|
621
|
-
getReportQueueLog(vbasoftwareDatabase: string,
|
|
557
|
+
getReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig): AxiosPromise<ReportQueueLogVBAResponse>;
|
|
622
558
|
|
|
623
559
|
/**
|
|
624
|
-
* Lists all ReportQueueLog
|
|
560
|
+
* Lists all ReportQueueLog
|
|
625
561
|
* @summary List ReportQueueLog
|
|
626
562
|
* @param {string} vbasoftwareDatabase Target database
|
|
627
|
-
* @param {number}
|
|
628
|
-
* @param {
|
|
563
|
+
* @param {number} [reportQueueDetailKey] Filter by ReportQueueDetail_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.
|
|
629
565
|
* @param {number} [page] Page
|
|
630
566
|
* @param {number} [pageSize] Page Size
|
|
631
567
|
* @param {*} [options] Override http request option.
|
|
632
568
|
* @throws {RequiredError}
|
|
633
569
|
* @memberof ReportQueueLogsApiInterface
|
|
634
570
|
*/
|
|
635
|
-
listReportQueueLog(vbasoftwareDatabase: string,
|
|
571
|
+
listReportQueueLog(vbasoftwareDatabase: string, reportQueueDetailKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportQueueLogListVBAResponse>;
|
|
636
572
|
|
|
637
573
|
/**
|
|
638
574
|
* Create or Update multiple ReportQueueLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
639
575
|
* @summary Create or Update Batch ReportQueueLog
|
|
640
576
|
* @param {string} vbasoftwareDatabase Target database
|
|
641
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
642
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
643
577
|
* @param {Array<ReportQueueLog>} reportQueueLog
|
|
644
578
|
* @param {*} [options] Override http request option.
|
|
645
579
|
* @throws {RequiredError}
|
|
646
580
|
* @memberof ReportQueueLogsApiInterface
|
|
647
581
|
*/
|
|
648
|
-
updateBatchReportQueueLog(vbasoftwareDatabase: string,
|
|
582
|
+
updateBatchReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: Array<ReportQueueLog>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
649
583
|
|
|
650
584
|
/**
|
|
651
585
|
* Updates a specific ReportQueueLog.
|
|
652
586
|
* @summary Update ReportQueueLog
|
|
653
587
|
* @param {string} vbasoftwareDatabase Target database
|
|
654
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
655
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
656
588
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
657
589
|
* @param {ReportQueueLog} reportQueueLog
|
|
658
590
|
* @param {*} [options] Override http request option.
|
|
659
591
|
* @throws {RequiredError}
|
|
660
592
|
* @memberof ReportQueueLogsApiInterface
|
|
661
593
|
*/
|
|
662
|
-
updateReportQueueLog(vbasoftwareDatabase: string,
|
|
594
|
+
updateReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig): AxiosPromise<ReportQueueLogVBAResponse>;
|
|
663
595
|
|
|
664
596
|
}
|
|
665
597
|
|
|
@@ -674,91 +606,81 @@ export class ReportQueueLogsApi extends BaseAPI implements ReportQueueLogsApiInt
|
|
|
674
606
|
* Creates a new ReportQueueLog
|
|
675
607
|
* @summary Create ReportQueueLog
|
|
676
608
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
678
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
679
609
|
* @param {ReportQueueLog} reportQueueLog
|
|
680
610
|
* @param {*} [options] Override http request option.
|
|
681
611
|
* @throws {RequiredError}
|
|
682
612
|
* @memberof ReportQueueLogsApi
|
|
683
613
|
*/
|
|
684
|
-
public createReportQueueLog(vbasoftwareDatabase: string,
|
|
685
|
-
return ReportQueueLogsApiFp(this.configuration).createReportQueueLog(vbasoftwareDatabase,
|
|
614
|
+
public createReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig) {
|
|
615
|
+
return ReportQueueLogsApiFp(this.configuration).createReportQueueLog(vbasoftwareDatabase, reportQueueLog, options).then((request) => request(this.axios, this.basePath));
|
|
686
616
|
}
|
|
687
617
|
|
|
688
618
|
/**
|
|
689
619
|
* Deletes an ReportQueueLog
|
|
690
620
|
* @summary Delete ReportQueueLog
|
|
691
621
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
693
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
694
622
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
695
623
|
* @param {*} [options] Override http request option.
|
|
696
624
|
* @throws {RequiredError}
|
|
697
625
|
* @memberof ReportQueueLogsApi
|
|
698
626
|
*/
|
|
699
|
-
public deleteReportQueueLog(vbasoftwareDatabase: string,
|
|
700
|
-
return ReportQueueLogsApiFp(this.configuration).deleteReportQueueLog(vbasoftwareDatabase,
|
|
627
|
+
public deleteReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig) {
|
|
628
|
+
return ReportQueueLogsApiFp(this.configuration).deleteReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options).then((request) => request(this.axios, this.basePath));
|
|
701
629
|
}
|
|
702
630
|
|
|
703
631
|
/**
|
|
704
632
|
* Gets ReportQueueLog
|
|
705
633
|
* @summary Get ReportQueueLog
|
|
706
634
|
* @param {string} vbasoftwareDatabase Target database
|
|
707
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
708
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
709
635
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
710
636
|
* @param {*} [options] Override http request option.
|
|
711
637
|
* @throws {RequiredError}
|
|
712
638
|
* @memberof ReportQueueLogsApi
|
|
713
639
|
*/
|
|
714
|
-
public getReportQueueLog(vbasoftwareDatabase: string,
|
|
715
|
-
return ReportQueueLogsApiFp(this.configuration).getReportQueueLog(vbasoftwareDatabase,
|
|
640
|
+
public getReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, options?: AxiosRequestConfig) {
|
|
641
|
+
return ReportQueueLogsApiFp(this.configuration).getReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, options).then((request) => request(this.axios, this.basePath));
|
|
716
642
|
}
|
|
717
643
|
|
|
718
644
|
/**
|
|
719
|
-
* Lists all ReportQueueLog
|
|
645
|
+
* Lists all ReportQueueLog
|
|
720
646
|
* @summary List ReportQueueLog
|
|
721
647
|
* @param {string} vbasoftwareDatabase Target database
|
|
722
|
-
* @param {number}
|
|
723
|
-
* @param {
|
|
648
|
+
* @param {number} [reportQueueDetailKey] Filter by ReportQueueDetail_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.
|
|
724
650
|
* @param {number} [page] Page
|
|
725
651
|
* @param {number} [pageSize] Page Size
|
|
726
652
|
* @param {*} [options] Override http request option.
|
|
727
653
|
* @throws {RequiredError}
|
|
728
654
|
* @memberof ReportQueueLogsApi
|
|
729
655
|
*/
|
|
730
|
-
public listReportQueueLog(vbasoftwareDatabase: string,
|
|
731
|
-
return ReportQueueLogsApiFp(this.configuration).listReportQueueLog(vbasoftwareDatabase,
|
|
656
|
+
public listReportQueueLog(vbasoftwareDatabase: string, reportQueueDetailKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
657
|
+
return ReportQueueLogsApiFp(this.configuration).listReportQueueLog(vbasoftwareDatabase, reportQueueDetailKey, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
732
658
|
}
|
|
733
659
|
|
|
734
660
|
/**
|
|
735
661
|
* Create or Update multiple ReportQueueLog at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
736
662
|
* @summary Create or Update Batch ReportQueueLog
|
|
737
663
|
* @param {string} vbasoftwareDatabase Target database
|
|
738
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
739
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
740
664
|
* @param {Array<ReportQueueLog>} reportQueueLog
|
|
741
665
|
* @param {*} [options] Override http request option.
|
|
742
666
|
* @throws {RequiredError}
|
|
743
667
|
* @memberof ReportQueueLogsApi
|
|
744
668
|
*/
|
|
745
|
-
public updateBatchReportQueueLog(vbasoftwareDatabase: string,
|
|
746
|
-
return ReportQueueLogsApiFp(this.configuration).updateBatchReportQueueLog(vbasoftwareDatabase,
|
|
669
|
+
public updateBatchReportQueueLog(vbasoftwareDatabase: string, reportQueueLog: Array<ReportQueueLog>, options?: AxiosRequestConfig) {
|
|
670
|
+
return ReportQueueLogsApiFp(this.configuration).updateBatchReportQueueLog(vbasoftwareDatabase, reportQueueLog, options).then((request) => request(this.axios, this.basePath));
|
|
747
671
|
}
|
|
748
672
|
|
|
749
673
|
/**
|
|
750
674
|
* Updates a specific ReportQueueLog.
|
|
751
675
|
* @summary Update ReportQueueLog
|
|
752
676
|
* @param {string} vbasoftwareDatabase Target database
|
|
753
|
-
* @param {number} reportQueueKey ReportQueue Key
|
|
754
|
-
* @param {number} reportQueueDetailKey ReportQueueDetail Key
|
|
755
677
|
* @param {number} reportQueueLogKey ReportQueueLog Key
|
|
756
678
|
* @param {ReportQueueLog} reportQueueLog
|
|
757
679
|
* @param {*} [options] Override http request option.
|
|
758
680
|
* @throws {RequiredError}
|
|
759
681
|
* @memberof ReportQueueLogsApi
|
|
760
682
|
*/
|
|
761
|
-
public updateReportQueueLog(vbasoftwareDatabase: string,
|
|
762
|
-
return ReportQueueLogsApiFp(this.configuration).updateReportQueueLog(vbasoftwareDatabase,
|
|
683
|
+
public updateReportQueueLog(vbasoftwareDatabase: string, reportQueueLogKey: number, reportQueueLog: ReportQueueLog, options?: AxiosRequestConfig) {
|
|
684
|
+
return ReportQueueLogsApiFp(this.configuration).updateReportQueueLog(vbasoftwareDatabase, reportQueueLogKey, reportQueueLog, options).then((request) => request(this.axios, this.basePath));
|
|
763
685
|
}
|
|
764
686
|
}
|