@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.
@@ -29,33 +29,25 @@ import { ReportSeriesStepArgListVBAResponse } from '../models';
29
29
  // @ts-ignore
30
30
  import { ReportSeriesStepArgVBAResponse } from '../models';
31
31
  /**
32
- * ReportSeriesStepArgumentsApi - axios parameter creator
32
+ * ReportSeriesStepArgsApi - axios parameter creator
33
33
  * @export
34
34
  */
35
- export const ReportSeriesStepArgumentsApiAxiosParamCreator = function (configuration?: Configuration) {
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: ReportSeriesStepArg, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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/{reportSeriesKey}/steps/{reportSeriesStepKey}/arguments`
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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/{reportSeriesKey}/steps/{reportSeriesStepKey}/arguments/{reportSeriesStepArgKey}`
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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/{reportSeriesKey}/steps/{reportSeriesStepKey}/arguments/{reportSeriesStepArgKey}`
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 for the given reportSeriesStepKey
184
+ * Lists all ReportSeriesStepArg
209
185
  * @summary List ReportSeriesStepArg
210
186
  * @param {string} vbasoftwareDatabase Target database
211
- * @param {number} reportSeriesKey ReportSeries Key
212
- * @param {number} reportSeriesStepKey ReportSeriesStep Key
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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, reportSeriesKey: number, reportSeriesStepKey: number, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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
- // verify required parameter 'reportSeriesKey' is not null or undefined
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: Array<ReportSeriesStepArg>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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/{reportSeriesKey}/steps/{reportSeriesStepKey}/arguments-batch`
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
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/{reportSeriesKey}/steps/{reportSeriesStepKey}/arguments/{reportSeriesStepArgKey}`
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
- * ReportSeriesStepArgumentsApi - functional programming interface
355
+ * ReportSeriesStepArgsApi - functional programming interface
394
356
  * @export
395
357
  */
396
- export const ReportSeriesStepArgumentsApiFp = function(configuration?: Configuration) {
397
- const localVarAxiosParamCreator = ReportSeriesStepArgumentsApiAxiosParamCreator(configuration)
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepArgVBAResponse>> {
410
- const localVarAxiosArgs = await localVarAxiosParamCreator.createReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options);
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
424
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options);
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepArgVBAResponse>> {
438
- const localVarAxiosArgs = await localVarAxiosParamCreator.getReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options);
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 for the given reportSeriesStepKey
398
+ * Lists all ReportSeriesStepArg
443
399
  * @summary List ReportSeriesStepArg
444
400
  * @param {string} vbasoftwareDatabase Target database
445
- * @param {number} reportSeriesKey ReportSeries Key
446
- * @param {number} reportSeriesStepKey ReportSeriesStep Key
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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, reportSeriesKey: number, reportSeriesStepKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepArgListVBAResponse>> {
453
- const localVarAxiosArgs = await localVarAxiosParamCreator.listReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, page, pageSize, options);
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: Array<ReportSeriesStepArg>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
467
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options);
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesStepArgVBAResponse>> {
482
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, reportSeriesStepArg, options);
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
- * ReportSeriesStepArgumentsApi - factory interface
441
+ * ReportSeriesStepArgsApi - factory interface
490
442
  * @export
491
443
  */
492
- export const ReportSeriesStepArgumentsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
493
- const localVarFp = ReportSeriesStepArgumentsApiFp(configuration)
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: any): AxiosPromise<ReportSeriesStepArgVBAResponse> {
506
- return localVarFp.createReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options).then((request) => request(axios, basePath));
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: any): AxiosPromise<void> {
519
- return localVarFp.deleteReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options).then((request) => request(axios, basePath));
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: any): AxiosPromise<ReportSeriesStepArgVBAResponse> {
532
- return localVarFp.getReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options).then((request) => request(axios, basePath));
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 for the given reportSeriesStepKey
481
+ * Lists all ReportSeriesStepArg
536
482
  * @summary List ReportSeriesStepArg
537
483
  * @param {string} vbasoftwareDatabase Target database
538
- * @param {number} reportSeriesKey ReportSeries Key
539
- * @param {number} reportSeriesStepKey ReportSeriesStep Key
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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, reportSeriesKey: number, reportSeriesStepKey: number, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportSeriesStepArgListVBAResponse> {
546
- return localVarFp.listReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, page, pageSize, options).then((request) => request(axios, basePath));
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: Array<ReportSeriesStepArg>, options?: any): AxiosPromise<MultiCodeResponseListVBAResponse> {
559
- return localVarFp.updateBatchReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options).then((request) => request(axios, basePath));
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, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: any): AxiosPromise<ReportSeriesStepArgVBAResponse> {
573
- return localVarFp.updateReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, reportSeriesStepArg, options).then((request) => request(axios, basePath));
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
- * ReportSeriesStepArgumentsApi - interface
521
+ * ReportSeriesStepArgsApi - interface
580
522
  * @export
581
- * @interface ReportSeriesStepArgumentsApi
523
+ * @interface ReportSeriesStepArgsApi
582
524
  */
583
- export interface ReportSeriesStepArgumentsApiInterface {
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 ReportSeriesStepArgumentsApiInterface
533
+ * @memberof ReportSeriesStepArgsApiInterface
594
534
  */
595
- createReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgVBAResponse>;
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 ReportSeriesStepArgumentsApiInterface
544
+ * @memberof ReportSeriesStepArgsApiInterface
607
545
  */
608
- deleteReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
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 ReportSeriesStepArgumentsApiInterface
555
+ * @memberof ReportSeriesStepArgsApiInterface
620
556
  */
621
- getReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgVBAResponse>;
557
+ getReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesStepArgKey: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgVBAResponse>;
622
558
 
623
559
  /**
624
- * Lists all ReportSeriesStepArg for the given reportSeriesStepKey
560
+ * Lists all ReportSeriesStepArg
625
561
  * @summary List ReportSeriesStepArg
626
562
  * @param {string} vbasoftwareDatabase Target database
627
- * @param {number} reportSeriesKey ReportSeries Key
628
- * @param {number} reportSeriesStepKey ReportSeriesStep Key
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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 ReportSeriesStepArgumentsApiInterface
569
+ * @memberof ReportSeriesStepArgsApiInterface
634
570
  */
635
- listReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgListVBAResponse>;
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 ReportSeriesStepArgumentsApiInterface
580
+ * @memberof ReportSeriesStepArgsApiInterface
647
581
  */
648
- updateBatchReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: Array<ReportSeriesStepArg>, options?: AxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
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 ReportSeriesStepArgumentsApiInterface
592
+ * @memberof ReportSeriesStepArgsApiInterface
661
593
  */
662
- updateReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgVBAResponse>;
594
+ updateReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesStepArgVBAResponse>;
663
595
 
664
596
  }
665
597
 
666
598
  /**
667
- * ReportSeriesStepArgumentsApi - object-oriented interface
599
+ * ReportSeriesStepArgsApi - object-oriented interface
668
600
  * @export
669
- * @class ReportSeriesStepArgumentsApi
601
+ * @class ReportSeriesStepArgsApi
670
602
  * @extends {BaseAPI}
671
603
  */
672
- export class ReportSeriesStepArgumentsApi extends BaseAPI implements ReportSeriesStepArgumentsApiInterface {
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 ReportSeriesStepArgumentsApi
612
+ * @memberof ReportSeriesStepArgsApi
683
613
  */
684
- public createReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig) {
685
- return ReportSeriesStepArgumentsApiFp(this.configuration).createReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options).then((request) => request(this.axios, this.basePath));
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 ReportSeriesStepArgumentsApi
625
+ * @memberof ReportSeriesStepArgsApi
698
626
  */
699
- public deleteReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig) {
700
- return ReportSeriesStepArgumentsApiFp(this.configuration).deleteReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options).then((request) => request(this.axios, this.basePath));
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 ReportSeriesStepArgumentsApi
638
+ * @memberof ReportSeriesStepArgsApi
713
639
  */
714
- public getReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, options?: AxiosRequestConfig) {
715
- return ReportSeriesStepArgumentsApiFp(this.configuration).getReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, options).then((request) => request(this.axios, this.basePath));
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 for the given reportSeriesStepKey
645
+ * Lists all ReportSeriesStepArg
720
646
  * @summary List ReportSeriesStepArg
721
647
  * @param {string} vbasoftwareDatabase Target database
722
- * @param {number} reportSeriesKey ReportSeries Key
723
- * @param {number} reportSeriesStepKey ReportSeriesStep Key
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., \&#39;Property1:desc,Property2:asc,Property3:asc\&#39; 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 ReportSeriesStepArgumentsApi
654
+ * @memberof ReportSeriesStepArgsApi
729
655
  */
730
- public listReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
731
- return ReportSeriesStepArgumentsApiFp(this.configuration).listReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, page, pageSize, options).then((request) => request(this.axios, this.basePath));
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 ReportSeriesStepArgumentsApi
667
+ * @memberof ReportSeriesStepArgsApi
744
668
  */
745
- public updateBatchReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArg: Array<ReportSeriesStepArg>, options?: AxiosRequestConfig) {
746
- return ReportSeriesStepArgumentsApiFp(this.configuration).updateBatchReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArg, options).then((request) => request(this.axios, this.basePath));
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 ReportSeriesStepArgumentsApi
681
+ * @memberof ReportSeriesStepArgsApi
760
682
  */
761
- public updateReportSeriesStepArg(vbasoftwareDatabase: string, reportSeriesKey: number, reportSeriesStepKey: number, reportSeriesStepArgKey: number, reportSeriesStepArg: ReportSeriesStepArg, options?: AxiosRequestConfig) {
762
- return ReportSeriesStepArgumentsApiFp(this.configuration).updateReportSeriesStepArg(vbasoftwareDatabase, reportSeriesKey, reportSeriesStepKey, reportSeriesStepArgKey, reportSeriesStepArg, options).then((request) => request(this.axios, this.basePath));
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
  }