@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230710.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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
38
38
|
* Creates a new ReportSeriesStep
|
|
39
39
|
* @summary Create ReportSeriesStep
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
42
41
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createReportSeriesStep: async (vbasoftwareDatabase: string,
|
|
45
|
+
createReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesStep: ReportSeriesStep, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'reportSeriesKey' is not null or undefined
|
|
50
|
-
assertParamExists('createReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
51
48
|
// verify required parameter 'reportSeriesStep' is not null or undefined
|
|
52
49
|
assertParamExists('createReportSeriesStep', 'reportSeriesStep', reportSeriesStep)
|
|
53
|
-
const localVarPath = `/report-series
|
|
54
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)));
|
|
50
|
+
const localVarPath = `/report-series-steps`;
|
|
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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
92
88
|
* Deletes an ReportSeriesStep
|
|
93
89
|
* @summary Delete ReportSeriesStep
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
96
91
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteReportSeriesStep: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesStepKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'reportSeriesKey' is not null or undefined
|
|
104
|
-
assertParamExists('deleteReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
105
98
|
// verify required parameter 'reportSeriesStepKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteReportSeriesStep', 'reportSeriesStepKey', reportSeriesStepKey)
|
|
107
|
-
const localVarPath = `/report-series
|
|
108
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)))
|
|
100
|
+
const localVarPath = `/report-series-steps/{reportSeriesStepKey}`
|
|
109
101
|
.replace(`{${"reportSeriesStepKey"}}`, encodeURIComponent(String(reportSeriesStepKey)));
|
|
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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
144
136
|
* Gets ReportSeriesStep
|
|
145
137
|
* @summary Get ReportSeriesStep
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
148
139
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
149
140
|
* @param {*} [options] Override http request option.
|
|
150
141
|
* @throws {RequiredError}
|
|
151
142
|
*/
|
|
152
|
-
getReportSeriesStep: async (vbasoftwareDatabase: string,
|
|
143
|
+
getReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesStepKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
154
145
|
assertParamExists('getReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
155
|
-
// verify required parameter 'reportSeriesKey' is not null or undefined
|
|
156
|
-
assertParamExists('getReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
157
146
|
// verify required parameter 'reportSeriesStepKey' is not null or undefined
|
|
158
147
|
assertParamExists('getReportSeriesStep', 'reportSeriesStepKey', reportSeriesStepKey)
|
|
159
|
-
const localVarPath = `/report-series
|
|
160
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)))
|
|
148
|
+
const localVarPath = `/report-series-steps/{reportSeriesStepKey}`
|
|
161
149
|
.replace(`{${"reportSeriesStepKey"}}`, encodeURIComponent(String(reportSeriesStepKey)));
|
|
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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
193
181
|
};
|
|
194
182
|
},
|
|
195
183
|
/**
|
|
196
|
-
* Lists all ReportSeriesStep
|
|
184
|
+
* Lists all ReportSeriesStep
|
|
197
185
|
* @summary List ReportSeriesStep
|
|
198
186
|
* @param {string} vbasoftwareDatabase Target database
|
|
199
|
-
* @param {number} reportSeriesKey
|
|
187
|
+
* @param {number} [reportSeriesKey] Filter by ReportSeries_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
|
-
listReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesKey
|
|
194
|
+
listReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesKey?: 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('listReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
208
|
-
|
|
209
|
-
assertParamExists('listReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
210
|
-
const localVarPath = `/report-series/{reportSeriesKey}/steps`
|
|
211
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)));
|
|
197
|
+
const localVarPath = `/report-series-steps`;
|
|
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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
227
213
|
// http bearer authentication required
|
|
228
214
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
229
215
|
|
|
216
|
+
if (reportSeriesKey !== undefined) {
|
|
217
|
+
localVarQueryParameter['reportSeriesKey'] = reportSeriesKey;
|
|
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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
254
248
|
* Create or Update multiple ReportSeriesStep 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 ReportSeriesStep
|
|
256
250
|
* @param {string} vbasoftwareDatabase Target database
|
|
257
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
258
251
|
* @param {Array<ReportSeriesStep>} reportSeriesStep
|
|
259
252
|
* @param {*} [options] Override http request option.
|
|
260
253
|
* @throws {RequiredError}
|
|
261
254
|
*/
|
|
262
|
-
updateBatchReportSeriesStep: async (vbasoftwareDatabase: string,
|
|
255
|
+
updateBatchReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesStep: Array<ReportSeriesStep>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
263
256
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
264
257
|
assertParamExists('updateBatchReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
265
|
-
// verify required parameter 'reportSeriesKey' is not null or undefined
|
|
266
|
-
assertParamExists('updateBatchReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
267
258
|
// verify required parameter 'reportSeriesStep' is not null or undefined
|
|
268
259
|
assertParamExists('updateBatchReportSeriesStep', 'reportSeriesStep', reportSeriesStep)
|
|
269
|
-
const localVarPath = `/report-series
|
|
270
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)));
|
|
260
|
+
const localVarPath = `/report-series-steps-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 ReportSeriesStepsApiAxiosParamCreator = function (configuration?: C
|
|
|
308
298
|
* Updates a specific ReportSeriesStep.
|
|
309
299
|
* @summary Update ReportSeriesStep
|
|
310
300
|
* @param {string} vbasoftwareDatabase Target database
|
|
311
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
312
301
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
313
302
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
314
303
|
* @param {*} [options] Override http request option.
|
|
315
304
|
* @throws {RequiredError}
|
|
316
305
|
*/
|
|
317
|
-
updateReportSeriesStep: async (vbasoftwareDatabase: string,
|
|
306
|
+
updateReportSeriesStep: async (vbasoftwareDatabase: string, reportSeriesStepKey: number, reportSeriesStep: ReportSeriesStep, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
307
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
319
308
|
assertParamExists('updateReportSeriesStep', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
320
|
-
// verify required parameter 'reportSeriesKey' is not null or undefined
|
|
321
|
-
assertParamExists('updateReportSeriesStep', 'reportSeriesKey', reportSeriesKey)
|
|
322
309
|
// verify required parameter 'reportSeriesStepKey' is not null or undefined
|
|
323
310
|
assertParamExists('updateReportSeriesStep', 'reportSeriesStepKey', reportSeriesStepKey)
|
|
324
311
|
// verify required parameter 'reportSeriesStep' is not null or undefined
|
|
325
312
|
assertParamExists('updateReportSeriesStep', 'reportSeriesStep', reportSeriesStep)
|
|
326
|
-
const localVarPath = `/report-series
|
|
327
|
-
.replace(`{${"reportSeriesKey"}}`, encodeURIComponent(String(reportSeriesKey)))
|
|
313
|
+
const localVarPath = `/report-series-steps/{reportSeriesStepKey}`
|
|
328
314
|
.replace(`{${"reportSeriesStepKey"}}`, encodeURIComponent(String(reportSeriesStepKey)));
|
|
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 ReportSeriesStepsApiFp = function(configuration?: Configuration) {
|
|
|
376
362
|
* Creates a new ReportSeriesStep
|
|
377
363
|
* @summary Create ReportSeriesStep
|
|
378
364
|
* @param {string} vbasoftwareDatabase Target database
|
|
379
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
380
365
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
381
366
|
* @param {*} [options] Override http request option.
|
|
382
367
|
* @throws {RequiredError}
|
|
383
368
|
*/
|
|
384
|
-
async createReportSeriesStep(vbasoftwareDatabase: string,
|
|
385
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportSeriesStep(vbasoftwareDatabase,
|
|
369
|
+
async createReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepVBAResponse>> {
|
|
370
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options);
|
|
386
371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
387
372
|
},
|
|
388
373
|
/**
|
|
389
374
|
* Deletes an ReportSeriesStep
|
|
390
375
|
* @summary Delete ReportSeriesStep
|
|
391
376
|
* @param {string} vbasoftwareDatabase Target database
|
|
392
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
393
377
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
394
378
|
* @param {*} [options] Override http request option.
|
|
395
379
|
* @throws {RequiredError}
|
|
396
380
|
*/
|
|
397
|
-
async deleteReportSeriesStep(vbasoftwareDatabase: string,
|
|
398
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportSeriesStep(vbasoftwareDatabase,
|
|
381
|
+
async deleteReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
382
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options);
|
|
399
383
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
400
384
|
},
|
|
401
385
|
/**
|
|
402
386
|
* Gets ReportSeriesStep
|
|
403
387
|
* @summary Get ReportSeriesStep
|
|
404
388
|
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
406
389
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
407
390
|
* @param {*} [options] Override http request option.
|
|
408
391
|
* @throws {RequiredError}
|
|
409
392
|
*/
|
|
410
|
-
async getReportSeriesStep(vbasoftwareDatabase: string,
|
|
411
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportSeriesStep(vbasoftwareDatabase,
|
|
393
|
+
async getReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepVBAResponse>> {
|
|
394
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options);
|
|
412
395
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
413
396
|
},
|
|
414
397
|
/**
|
|
415
|
-
* Lists all ReportSeriesStep
|
|
398
|
+
* Lists all ReportSeriesStep
|
|
416
399
|
* @summary List ReportSeriesStep
|
|
417
400
|
* @param {string} vbasoftwareDatabase Target database
|
|
418
|
-
* @param {number} reportSeriesKey
|
|
401
|
+
* @param {number} [reportSeriesKey] Filter by ReportSeries_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 listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey
|
|
425
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, page, pageSize, options);
|
|
408
|
+
async listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepListVBAResponse>> {
|
|
409
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, sortBy, page, pageSize, options);
|
|
426
410
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
427
411
|
},
|
|
428
412
|
/**
|
|
429
413
|
* Create or Update multiple ReportSeriesStep 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 ReportSeriesStep
|
|
431
415
|
* @param {string} vbasoftwareDatabase Target database
|
|
432
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
433
416
|
* @param {Array<ReportSeriesStep>} reportSeriesStep
|
|
434
417
|
* @param {*} [options] Override http request option.
|
|
435
418
|
* @throws {RequiredError}
|
|
436
419
|
*/
|
|
437
|
-
async updateBatchReportSeriesStep(vbasoftwareDatabase: string,
|
|
438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportSeriesStep(vbasoftwareDatabase,
|
|
420
|
+
async updateBatchReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: Array<ReportSeriesStep>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
421
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options);
|
|
439
422
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
440
423
|
},
|
|
441
424
|
/**
|
|
442
425
|
* Updates a specific ReportSeriesStep.
|
|
443
426
|
* @summary Update ReportSeriesStep
|
|
444
427
|
* @param {string} vbasoftwareDatabase Target database
|
|
445
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
446
428
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
447
429
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
448
430
|
* @param {*} [options] Override http request option.
|
|
449
431
|
* @throws {RequiredError}
|
|
450
432
|
*/
|
|
451
|
-
async updateReportSeriesStep(vbasoftwareDatabase: string,
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportSeriesStep(vbasoftwareDatabase,
|
|
433
|
+
async updateReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepVBAResponse>> {
|
|
434
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, reportSeriesStep, options);
|
|
453
435
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
436
|
},
|
|
455
437
|
}
|
|
@@ -466,75 +448,71 @@ export const ReportSeriesStepsApiFactory = function (configuration?: Configurati
|
|
|
466
448
|
* Creates a new ReportSeriesStep
|
|
467
449
|
* @summary Create ReportSeriesStep
|
|
468
450
|
* @param {string} vbasoftwareDatabase Target database
|
|
469
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
470
451
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
471
452
|
* @param {*} [options] Override http request option.
|
|
472
453
|
* @throws {RequiredError}
|
|
473
454
|
*/
|
|
474
|
-
createReportSeriesStep(vbasoftwareDatabase: string,
|
|
475
|
-
return localVarFp.createReportSeriesStep(vbasoftwareDatabase,
|
|
455
|
+
createReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: ReportSeriesStep, options?: any): AxiosPromise<ReportSeriesStepVBAResponse> {
|
|
456
|
+
return localVarFp.createReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options).then((request) => request(axios, basePath));
|
|
476
457
|
},
|
|
477
458
|
/**
|
|
478
459
|
* Deletes an ReportSeriesStep
|
|
479
460
|
* @summary Delete ReportSeriesStep
|
|
480
461
|
* @param {string} vbasoftwareDatabase Target database
|
|
481
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
482
462
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
483
463
|
* @param {*} [options] Override http request option.
|
|
484
464
|
* @throws {RequiredError}
|
|
485
465
|
*/
|
|
486
|
-
deleteReportSeriesStep(vbasoftwareDatabase: string,
|
|
487
|
-
return localVarFp.deleteReportSeriesStep(vbasoftwareDatabase,
|
|
466
|
+
deleteReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: any): AxiosPromise<void> {
|
|
467
|
+
return localVarFp.deleteReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options).then((request) => request(axios, basePath));
|
|
488
468
|
},
|
|
489
469
|
/**
|
|
490
470
|
* Gets ReportSeriesStep
|
|
491
471
|
* @summary Get ReportSeriesStep
|
|
492
472
|
* @param {string} vbasoftwareDatabase Target database
|
|
493
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
494
473
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
495
474
|
* @param {*} [options] Override http request option.
|
|
496
475
|
* @throws {RequiredError}
|
|
497
476
|
*/
|
|
498
|
-
getReportSeriesStep(vbasoftwareDatabase: string,
|
|
499
|
-
return localVarFp.getReportSeriesStep(vbasoftwareDatabase,
|
|
477
|
+
getReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: any): AxiosPromise<ReportSeriesStepVBAResponse> {
|
|
478
|
+
return localVarFp.getReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options).then((request) => request(axios, basePath));
|
|
500
479
|
},
|
|
501
480
|
/**
|
|
502
|
-
* Lists all ReportSeriesStep
|
|
481
|
+
* Lists all ReportSeriesStep
|
|
503
482
|
* @summary List ReportSeriesStep
|
|
504
483
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
|
-
* @param {number} reportSeriesKey
|
|
484
|
+
* @param {number} [reportSeriesKey] Filter by ReportSeries_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
|
-
listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey
|
|
512
|
-
return localVarFp.listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, page, pageSize, options).then((request) => request(axios, basePath));
|
|
491
|
+
listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportSeriesStepListVBAResponse> {
|
|
492
|
+
return localVarFp.listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
513
493
|
},
|
|
514
494
|
/**
|
|
515
495
|
* Create or Update multiple ReportSeriesStep 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 ReportSeriesStep
|
|
517
497
|
* @param {string} vbasoftwareDatabase Target database
|
|
518
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
519
498
|
* @param {Array<ReportSeriesStep>} reportSeriesStep
|
|
520
499
|
* @param {*} [options] Override http request option.
|
|
521
500
|
* @throws {RequiredError}
|
|
522
501
|
*/
|
|
523
|
-
updateBatchReportSeriesStep(vbasoftwareDatabase: string,
|
|
524
|
-
return localVarFp.updateBatchReportSeriesStep(vbasoftwareDatabase,
|
|
502
|
+
updateBatchReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: Array<ReportSeriesStep>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
503
|
+
return localVarFp.updateBatchReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options).then((request) => request(axios, basePath));
|
|
525
504
|
},
|
|
526
505
|
/**
|
|
527
506
|
* Updates a specific ReportSeriesStep.
|
|
528
507
|
* @summary Update ReportSeriesStep
|
|
529
508
|
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
531
509
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
532
510
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
533
511
|
* @param {*} [options] Override http request option.
|
|
534
512
|
* @throws {RequiredError}
|
|
535
513
|
*/
|
|
536
|
-
updateReportSeriesStep(vbasoftwareDatabase: string,
|
|
537
|
-
return localVarFp.updateReportSeriesStep(vbasoftwareDatabase,
|
|
514
|
+
updateReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, reportSeriesStep: ReportSeriesStep, options?: any): AxiosPromise<ReportSeriesStepVBAResponse> {
|
|
515
|
+
return localVarFp.updateReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, reportSeriesStep, options).then((request) => request(axios, basePath));
|
|
538
516
|
},
|
|
539
517
|
};
|
|
540
518
|
};
|
|
@@ -549,75 +527,71 @@ export interface ReportSeriesStepsApiInterface {
|
|
|
549
527
|
* Creates a new ReportSeriesStep
|
|
550
528
|
* @summary Create ReportSeriesStep
|
|
551
529
|
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
553
530
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
554
531
|
* @param {*} [options] Override http request option.
|
|
555
532
|
* @throws {RequiredError}
|
|
556
533
|
* @memberof ReportSeriesStepsApiInterface
|
|
557
534
|
*/
|
|
558
|
-
createReportSeriesStep(vbasoftwareDatabase: string,
|
|
535
|
+
createReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepVBAResponse>;
|
|
559
536
|
|
|
560
537
|
/**
|
|
561
538
|
* Deletes an ReportSeriesStep
|
|
562
539
|
* @summary Delete ReportSeriesStep
|
|
563
540
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
565
541
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
566
542
|
* @param {*} [options] Override http request option.
|
|
567
543
|
* @throws {RequiredError}
|
|
568
544
|
* @memberof ReportSeriesStepsApiInterface
|
|
569
545
|
*/
|
|
570
|
-
deleteReportSeriesStep(vbasoftwareDatabase: string,
|
|
546
|
+
deleteReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
571
547
|
|
|
572
548
|
/**
|
|
573
549
|
* Gets ReportSeriesStep
|
|
574
550
|
* @summary Get ReportSeriesStep
|
|
575
551
|
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
577
552
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
578
553
|
* @param {*} [options] Override http request option.
|
|
579
554
|
* @throws {RequiredError}
|
|
580
555
|
* @memberof ReportSeriesStepsApiInterface
|
|
581
556
|
*/
|
|
582
|
-
getReportSeriesStep(vbasoftwareDatabase: string,
|
|
557
|
+
getReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepVBAResponse>;
|
|
583
558
|
|
|
584
559
|
/**
|
|
585
|
-
* Lists all ReportSeriesStep
|
|
560
|
+
* Lists all ReportSeriesStep
|
|
586
561
|
* @summary List ReportSeriesStep
|
|
587
562
|
* @param {string} vbasoftwareDatabase Target database
|
|
588
|
-
* @param {number} reportSeriesKey
|
|
563
|
+
* @param {number} [reportSeriesKey] Filter by ReportSeries_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 ReportSeriesStepsApiInterface
|
|
594
570
|
*/
|
|
595
|
-
listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey
|
|
571
|
+
listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepListVBAResponse>;
|
|
596
572
|
|
|
597
573
|
/**
|
|
598
574
|
* Create or Update multiple ReportSeriesStep 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 ReportSeriesStep
|
|
600
576
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
602
577
|
* @param {Array<ReportSeriesStep>} reportSeriesStep
|
|
603
578
|
* @param {*} [options] Override http request option.
|
|
604
579
|
* @throws {RequiredError}
|
|
605
580
|
* @memberof ReportSeriesStepsApiInterface
|
|
606
581
|
*/
|
|
607
|
-
updateBatchReportSeriesStep(vbasoftwareDatabase: string,
|
|
582
|
+
updateBatchReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: Array<ReportSeriesStep>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
608
583
|
|
|
609
584
|
/**
|
|
610
585
|
* Updates a specific ReportSeriesStep.
|
|
611
586
|
* @summary Update ReportSeriesStep
|
|
612
587
|
* @param {string} vbasoftwareDatabase Target database
|
|
613
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
614
588
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
615
589
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
616
590
|
* @param {*} [options] Override http request option.
|
|
617
591
|
* @throws {RequiredError}
|
|
618
592
|
* @memberof ReportSeriesStepsApiInterface
|
|
619
593
|
*/
|
|
620
|
-
updateReportSeriesStep(vbasoftwareDatabase: string,
|
|
594
|
+
updateReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepVBAResponse>;
|
|
621
595
|
|
|
622
596
|
}
|
|
623
597
|
|
|
@@ -632,85 +606,81 @@ export class ReportSeriesStepsApi extends BaseAPI implements ReportSeriesStepsAp
|
|
|
632
606
|
* Creates a new ReportSeriesStep
|
|
633
607
|
* @summary Create ReportSeriesStep
|
|
634
608
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
636
609
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
637
610
|
* @param {*} [options] Override http request option.
|
|
638
611
|
* @throws {RequiredError}
|
|
639
612
|
* @memberof ReportSeriesStepsApi
|
|
640
613
|
*/
|
|
641
|
-
public createReportSeriesStep(vbasoftwareDatabase: string,
|
|
642
|
-
return ReportSeriesStepsApiFp(this.configuration).createReportSeriesStep(vbasoftwareDatabase,
|
|
614
|
+
public createReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig) {
|
|
615
|
+
return ReportSeriesStepsApiFp(this.configuration).createReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options).then((request) => request(this.axios, this.basePath));
|
|
643
616
|
}
|
|
644
617
|
|
|
645
618
|
/**
|
|
646
619
|
* Deletes an ReportSeriesStep
|
|
647
620
|
* @summary Delete ReportSeriesStep
|
|
648
621
|
* @param {string} vbasoftwareDatabase Target database
|
|
649
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
650
622
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
651
623
|
* @param {*} [options] Override http request option.
|
|
652
624
|
* @throws {RequiredError}
|
|
653
625
|
* @memberof ReportSeriesStepsApi
|
|
654
626
|
*/
|
|
655
|
-
public deleteReportSeriesStep(vbasoftwareDatabase: string,
|
|
656
|
-
return ReportSeriesStepsApiFp(this.configuration).deleteReportSeriesStep(vbasoftwareDatabase,
|
|
627
|
+
public deleteReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig) {
|
|
628
|
+
return ReportSeriesStepsApiFp(this.configuration).deleteReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options).then((request) => request(this.axios, this.basePath));
|
|
657
629
|
}
|
|
658
630
|
|
|
659
631
|
/**
|
|
660
632
|
* Gets ReportSeriesStep
|
|
661
633
|
* @summary Get ReportSeriesStep
|
|
662
634
|
* @param {string} vbasoftwareDatabase Target database
|
|
663
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
664
635
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
665
636
|
* @param {*} [options] Override http request option.
|
|
666
637
|
* @throws {RequiredError}
|
|
667
638
|
* @memberof ReportSeriesStepsApi
|
|
668
639
|
*/
|
|
669
|
-
public getReportSeriesStep(vbasoftwareDatabase: string,
|
|
670
|
-
return ReportSeriesStepsApiFp(this.configuration).getReportSeriesStep(vbasoftwareDatabase,
|
|
640
|
+
public getReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, options?: AxiosRequestConfig) {
|
|
641
|
+
return ReportSeriesStepsApiFp(this.configuration).getReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, options).then((request) => request(this.axios, this.basePath));
|
|
671
642
|
}
|
|
672
643
|
|
|
673
644
|
/**
|
|
674
|
-
* Lists all ReportSeriesStep
|
|
645
|
+
* Lists all ReportSeriesStep
|
|
675
646
|
* @summary List ReportSeriesStep
|
|
676
647
|
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
-
* @param {number} reportSeriesKey
|
|
648
|
+
* @param {number} [reportSeriesKey] Filter by ReportSeries_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 ReportSeriesStepsApi
|
|
683
655
|
*/
|
|
684
|
-
public listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey
|
|
685
|
-
return ReportSeriesStepsApiFp(this.configuration).listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
656
|
+
public listReportSeriesStep(vbasoftwareDatabase: string, reportSeriesKey?: number, sortBy?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
|
|
657
|
+
return ReportSeriesStepsApiFp(this.configuration).listReportSeriesStep(vbasoftwareDatabase, reportSeriesKey, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
686
658
|
}
|
|
687
659
|
|
|
688
660
|
/**
|
|
689
661
|
* Create or Update multiple ReportSeriesStep 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 ReportSeriesStep
|
|
691
663
|
* @param {string} vbasoftwareDatabase Target database
|
|
692
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
693
664
|
* @param {Array<ReportSeriesStep>} reportSeriesStep
|
|
694
665
|
* @param {*} [options] Override http request option.
|
|
695
666
|
* @throws {RequiredError}
|
|
696
667
|
* @memberof ReportSeriesStepsApi
|
|
697
668
|
*/
|
|
698
|
-
public updateBatchReportSeriesStep(vbasoftwareDatabase: string,
|
|
699
|
-
return ReportSeriesStepsApiFp(this.configuration).updateBatchReportSeriesStep(vbasoftwareDatabase,
|
|
669
|
+
public updateBatchReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStep: Array<ReportSeriesStep>, options?: AxiosRequestConfig) {
|
|
670
|
+
return ReportSeriesStepsApiFp(this.configuration).updateBatchReportSeriesStep(vbasoftwareDatabase, reportSeriesStep, options).then((request) => request(this.axios, this.basePath));
|
|
700
671
|
}
|
|
701
672
|
|
|
702
673
|
/**
|
|
703
674
|
* Updates a specific ReportSeriesStep.
|
|
704
675
|
* @summary Update ReportSeriesStep
|
|
705
676
|
* @param {string} vbasoftwareDatabase Target database
|
|
706
|
-
* @param {number} reportSeriesKey ReportSeries Key
|
|
707
677
|
* @param {number} reportSeriesStepKey ReportSeriesStep Key
|
|
708
678
|
* @param {ReportSeriesStep} reportSeriesStep
|
|
709
679
|
* @param {*} [options] Override http request option.
|
|
710
680
|
* @throws {RequiredError}
|
|
711
681
|
* @memberof ReportSeriesStepsApi
|
|
712
682
|
*/
|
|
713
|
-
public updateReportSeriesStep(vbasoftwareDatabase: string,
|
|
714
|
-
return ReportSeriesStepsApiFp(this.configuration).updateReportSeriesStep(vbasoftwareDatabase,
|
|
683
|
+
public updateReportSeriesStep(vbasoftwareDatabase: string, reportSeriesStepKey: number, reportSeriesStep: ReportSeriesStep, options?: AxiosRequestConfig) {
|
|
684
|
+
return ReportSeriesStepsApiFp(this.configuration).updateReportSeriesStep(vbasoftwareDatabase, reportSeriesStepKey, reportSeriesStep, options).then((request) => request(this.axios, this.basePath));
|
|
715
685
|
}
|
|
716
686
|
}
|