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