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