@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250131.1 → 1.20250221.7
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 +11 -0
- package/api/accounting-api.ts +100 -0
- package/api/adv-accounting-api.ts +100 -0
- package/api/adv-billing-api.ts +196 -0
- package/api/adv-claim-api.ts +142 -3
- package/api/authentication-api.ts +244 -0
- package/api/billing-api.ts +100 -0
- package/api/claim-pre-batches-api.ts +26 -8
- package/api/group-contract-plans-api.ts +106 -0
- package/api/issue-duration-value-detail-api.ts +694 -0
- package/api/plan-coordination-api.ts +685 -0
- package/api/premium-payments-api.ts +96 -0
- package/api/user-account-api.ts +16 -8
- package/api/user-api.ts +32 -16
- package/api.ts +3 -0
- package/models/auth-diag-codes.ts +6 -0
- package/models/billing-apply-payment-on-account-config.ts +48 -0
- package/models/claim-reprice-remove.ts +6 -0
- package/models/company-data.ts +12 -0
- package/models/database-connection.ts +3 -3
- package/models/generate-prem-invoice.ts +6 -0
- package/models/index.ts +8 -0
- package/models/issue-duration-value-detail-list-vbaresponse.ts +51 -0
- package/models/issue-duration-value-detail-vbaresponse.ts +51 -0
- package/models/issue-duration-value-detail.ts +804 -0
- package/models/mem-enrollment-plan.ts +6 -0
- package/models/plan-coordination-list-vbaresponse.ts +51 -0
- package/models/plan-coordination-vbaresponse.ts +51 -0
- package/models/plan-coordination.ts +114 -0
- package/models/prem-invoice-generate-inv-list.ts +6 -0
- package/models/report-series-step.ts +18 -0
- package/models/subscriber-writing-agent.ts +6 -0
- package/models/vbaclient.ts +11 -5
- package/models/vbaprocess-parameter.ts +6 -0
- package/models/vbaupdate-claim-funded-status.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import type { Configuration } from '../configuration';
|
|
17
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
18
|
+
import globalAxios from 'axios';
|
|
19
|
+
// Some imports not used depending on template conditions
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import type { MultiCodeResponseListVBAResponse } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { PlanCoordination } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
import type { PlanCoordinationListVBAResponse } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
import type { PlanCoordinationVBAResponse } from '../models';
|
|
32
|
+
/**
|
|
33
|
+
* PlanCoordinationApi - axios parameter creator
|
|
34
|
+
* @export
|
|
35
|
+
*/
|
|
36
|
+
export const PlanCoordinationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
37
|
+
return {
|
|
38
|
+
/**
|
|
39
|
+
* Creates a new PlanCoordination
|
|
40
|
+
* @summary Create PlanCoordination
|
|
41
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
42
|
+
* @param {PlanCoordination} planCoordination
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
createPlanCoordination: async (vbasoftwareDatabase: string, planCoordination: PlanCoordination, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
|
+
assertParamExists('createPlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
+
// verify required parameter 'planCoordination' is not null or undefined
|
|
50
|
+
assertParamExists('createPlanCoordination', 'planCoordination', planCoordination)
|
|
51
|
+
const localVarPath = `/plan-coordinations`;
|
|
52
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
54
|
+
let baseOptions;
|
|
55
|
+
if (configuration) {
|
|
56
|
+
baseOptions = configuration.baseOptions;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
60
|
+
const localVarHeaderParameter = {} as any;
|
|
61
|
+
const localVarQueryParameter = {} as any;
|
|
62
|
+
|
|
63
|
+
// authentication apiKeyAuth required
|
|
64
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
65
|
+
|
|
66
|
+
// authentication bearerAuth required
|
|
67
|
+
// http bearer authentication required
|
|
68
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
73
|
+
|
|
74
|
+
if (vbasoftwareDatabase != null) {
|
|
75
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
76
|
+
}
|
|
77
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
78
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
79
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
80
|
+
localVarRequestOptions.data = serializeDataIfNeeded(planCoordination, localVarRequestOptions, configuration)
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
url: toPathString(localVarUrlObj),
|
|
84
|
+
options: localVarRequestOptions,
|
|
85
|
+
};
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* Deletes an PlanCoordination
|
|
89
|
+
* @summary Delete PlanCoordination
|
|
90
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
91
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
deletePlanCoordination: async (vbasoftwareDatabase: string, planCoordinationKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
96
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
97
|
+
assertParamExists('deletePlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
98
|
+
// verify required parameter 'planCoordinationKey' is not null or undefined
|
|
99
|
+
assertParamExists('deletePlanCoordination', 'planCoordinationKey', planCoordinationKey)
|
|
100
|
+
const localVarPath = `/plan-coordinations/{PlanCoordination_Key}`
|
|
101
|
+
.replace(`{${"PlanCoordination_Key"}}`, encodeURIComponent(String(planCoordinationKey)));
|
|
102
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
104
|
+
let baseOptions;
|
|
105
|
+
if (configuration) {
|
|
106
|
+
baseOptions = configuration.baseOptions;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
110
|
+
const localVarHeaderParameter = {} as any;
|
|
111
|
+
const localVarQueryParameter = {} as any;
|
|
112
|
+
|
|
113
|
+
// authentication apiKeyAuth required
|
|
114
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
115
|
+
|
|
116
|
+
// authentication bearerAuth required
|
|
117
|
+
// http bearer authentication required
|
|
118
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
if (vbasoftwareDatabase != null) {
|
|
123
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
124
|
+
}
|
|
125
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
126
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
127
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
128
|
+
|
|
129
|
+
return {
|
|
130
|
+
url: toPathString(localVarUrlObj),
|
|
131
|
+
options: localVarRequestOptions,
|
|
132
|
+
};
|
|
133
|
+
},
|
|
134
|
+
/**
|
|
135
|
+
* Gets PlanCoordination
|
|
136
|
+
* @summary Get PlanCoordination
|
|
137
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
138
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
getPlanCoordination: async (vbasoftwareDatabase: string, planCoordinationKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
143
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
144
|
+
assertParamExists('getPlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
145
|
+
// verify required parameter 'planCoordinationKey' is not null or undefined
|
|
146
|
+
assertParamExists('getPlanCoordination', 'planCoordinationKey', planCoordinationKey)
|
|
147
|
+
const localVarPath = `/plan-coordinations/{PlanCoordination_Key}`
|
|
148
|
+
.replace(`{${"PlanCoordination_Key"}}`, encodeURIComponent(String(planCoordinationKey)));
|
|
149
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
150
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
151
|
+
let baseOptions;
|
|
152
|
+
if (configuration) {
|
|
153
|
+
baseOptions = configuration.baseOptions;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
157
|
+
const localVarHeaderParameter = {} as any;
|
|
158
|
+
const localVarQueryParameter = {} as any;
|
|
159
|
+
|
|
160
|
+
// authentication apiKeyAuth required
|
|
161
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
162
|
+
|
|
163
|
+
// authentication bearerAuth required
|
|
164
|
+
// http bearer authentication required
|
|
165
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
if (vbasoftwareDatabase != null) {
|
|
170
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
171
|
+
}
|
|
172
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
173
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
174
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
175
|
+
|
|
176
|
+
return {
|
|
177
|
+
url: toPathString(localVarUrlObj),
|
|
178
|
+
options: localVarRequestOptions,
|
|
179
|
+
};
|
|
180
|
+
},
|
|
181
|
+
/**
|
|
182
|
+
* Lists all PlanCoordination
|
|
183
|
+
* @summary List PlanCoordination
|
|
184
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
185
|
+
* @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.
|
|
186
|
+
* @param {number} [page] Page
|
|
187
|
+
* @param {number} [pageSize] Page Size
|
|
188
|
+
* @param {*} [options] Override http request option.
|
|
189
|
+
* @throws {RequiredError}
|
|
190
|
+
*/
|
|
191
|
+
listPlanCoordination: async (vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
192
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
193
|
+
assertParamExists('listPlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
194
|
+
const localVarPath = `/plan-coordinations`;
|
|
195
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
196
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
197
|
+
let baseOptions;
|
|
198
|
+
if (configuration) {
|
|
199
|
+
baseOptions = configuration.baseOptions;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
203
|
+
const localVarHeaderParameter = {} as any;
|
|
204
|
+
const localVarQueryParameter = {} as any;
|
|
205
|
+
|
|
206
|
+
// authentication apiKeyAuth required
|
|
207
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
208
|
+
|
|
209
|
+
// authentication bearerAuth required
|
|
210
|
+
// http bearer authentication required
|
|
211
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
212
|
+
|
|
213
|
+
if (sortBy !== undefined) {
|
|
214
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
if (page !== undefined) {
|
|
218
|
+
localVarQueryParameter['page'] = page;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
if (pageSize !== undefined) {
|
|
222
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
if (vbasoftwareDatabase != null) {
|
|
228
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
229
|
+
}
|
|
230
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
231
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
232
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
233
|
+
|
|
234
|
+
return {
|
|
235
|
+
url: toPathString(localVarUrlObj),
|
|
236
|
+
options: localVarRequestOptions,
|
|
237
|
+
};
|
|
238
|
+
},
|
|
239
|
+
/**
|
|
240
|
+
* Create or Update multiple PlanCoordination at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
241
|
+
* @summary Create or Update Batch PlanCoordination
|
|
242
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
243
|
+
* @param {Array<PlanCoordination>} planCoordination
|
|
244
|
+
* @param {*} [options] Override http request option.
|
|
245
|
+
* @throws {RequiredError}
|
|
246
|
+
*/
|
|
247
|
+
updateBatchPlanCoordination: async (vbasoftwareDatabase: string, planCoordination: Array<PlanCoordination>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
248
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
249
|
+
assertParamExists('updateBatchPlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
250
|
+
// verify required parameter 'planCoordination' is not null or undefined
|
|
251
|
+
assertParamExists('updateBatchPlanCoordination', 'planCoordination', planCoordination)
|
|
252
|
+
const localVarPath = `/plan-coordinations-batch`;
|
|
253
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
254
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
255
|
+
let baseOptions;
|
|
256
|
+
if (configuration) {
|
|
257
|
+
baseOptions = configuration.baseOptions;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
261
|
+
const localVarHeaderParameter = {} as any;
|
|
262
|
+
const localVarQueryParameter = {} as any;
|
|
263
|
+
|
|
264
|
+
// authentication apiKeyAuth required
|
|
265
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
266
|
+
|
|
267
|
+
// authentication bearerAuth required
|
|
268
|
+
// http bearer authentication required
|
|
269
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
274
|
+
|
|
275
|
+
if (vbasoftwareDatabase != null) {
|
|
276
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
277
|
+
}
|
|
278
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
279
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
280
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
281
|
+
localVarRequestOptions.data = serializeDataIfNeeded(planCoordination, localVarRequestOptions, configuration)
|
|
282
|
+
|
|
283
|
+
return {
|
|
284
|
+
url: toPathString(localVarUrlObj),
|
|
285
|
+
options: localVarRequestOptions,
|
|
286
|
+
};
|
|
287
|
+
},
|
|
288
|
+
/**
|
|
289
|
+
* Updates a specific PlanCoordination.
|
|
290
|
+
* @summary Update PlanCoordination
|
|
291
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
292
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
293
|
+
* @param {PlanCoordination} planCoordination
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
*/
|
|
297
|
+
updatePlanCoordination: async (vbasoftwareDatabase: string, planCoordinationKey: number, planCoordination: PlanCoordination, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
298
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
299
|
+
assertParamExists('updatePlanCoordination', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
300
|
+
// verify required parameter 'planCoordinationKey' is not null or undefined
|
|
301
|
+
assertParamExists('updatePlanCoordination', 'planCoordinationKey', planCoordinationKey)
|
|
302
|
+
// verify required parameter 'planCoordination' is not null or undefined
|
|
303
|
+
assertParamExists('updatePlanCoordination', 'planCoordination', planCoordination)
|
|
304
|
+
const localVarPath = `/plan-coordinations/{PlanCoordination_Key}`
|
|
305
|
+
.replace(`{${"PlanCoordination_Key"}}`, encodeURIComponent(String(planCoordinationKey)));
|
|
306
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
307
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
308
|
+
let baseOptions;
|
|
309
|
+
if (configuration) {
|
|
310
|
+
baseOptions = configuration.baseOptions;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
314
|
+
const localVarHeaderParameter = {} as any;
|
|
315
|
+
const localVarQueryParameter = {} as any;
|
|
316
|
+
|
|
317
|
+
// authentication apiKeyAuth required
|
|
318
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
319
|
+
|
|
320
|
+
// authentication bearerAuth required
|
|
321
|
+
// http bearer authentication required
|
|
322
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
327
|
+
|
|
328
|
+
if (vbasoftwareDatabase != null) {
|
|
329
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
330
|
+
}
|
|
331
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
332
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
333
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
334
|
+
localVarRequestOptions.data = serializeDataIfNeeded(planCoordination, localVarRequestOptions, configuration)
|
|
335
|
+
|
|
336
|
+
return {
|
|
337
|
+
url: toPathString(localVarUrlObj),
|
|
338
|
+
options: localVarRequestOptions,
|
|
339
|
+
};
|
|
340
|
+
},
|
|
341
|
+
}
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* PlanCoordinationApi - functional programming interface
|
|
346
|
+
* @export
|
|
347
|
+
*/
|
|
348
|
+
export const PlanCoordinationApiFp = function(configuration?: Configuration) {
|
|
349
|
+
const localVarAxiosParamCreator = PlanCoordinationApiAxiosParamCreator(configuration)
|
|
350
|
+
return {
|
|
351
|
+
/**
|
|
352
|
+
* Creates a new PlanCoordination
|
|
353
|
+
* @summary Create PlanCoordination
|
|
354
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
355
|
+
* @param {PlanCoordination} planCoordination
|
|
356
|
+
* @param {*} [options] Override http request option.
|
|
357
|
+
* @throws {RequiredError}
|
|
358
|
+
*/
|
|
359
|
+
async createPlanCoordination(vbasoftwareDatabase: string, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCoordinationVBAResponse>> {
|
|
360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createPlanCoordination(vbasoftwareDatabase, planCoordination, options);
|
|
361
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
362
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.createPlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
363
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
364
|
+
},
|
|
365
|
+
/**
|
|
366
|
+
* Deletes an PlanCoordination
|
|
367
|
+
* @summary Delete PlanCoordination
|
|
368
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
369
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
370
|
+
* @param {*} [options] Override http request option.
|
|
371
|
+
* @throws {RequiredError}
|
|
372
|
+
*/
|
|
373
|
+
async deletePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
374
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletePlanCoordination(vbasoftwareDatabase, planCoordinationKey, options);
|
|
375
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
376
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.deletePlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
377
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
378
|
+
},
|
|
379
|
+
/**
|
|
380
|
+
* Gets PlanCoordination
|
|
381
|
+
* @summary Get PlanCoordination
|
|
382
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
383
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
384
|
+
* @param {*} [options] Override http request option.
|
|
385
|
+
* @throws {RequiredError}
|
|
386
|
+
*/
|
|
387
|
+
async getPlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCoordinationVBAResponse>> {
|
|
388
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPlanCoordination(vbasoftwareDatabase, planCoordinationKey, options);
|
|
389
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
390
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.getPlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
391
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
392
|
+
},
|
|
393
|
+
/**
|
|
394
|
+
* Lists all PlanCoordination
|
|
395
|
+
* @summary List PlanCoordination
|
|
396
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
397
|
+
* @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.
|
|
398
|
+
* @param {number} [page] Page
|
|
399
|
+
* @param {number} [pageSize] Page Size
|
|
400
|
+
* @param {*} [options] Override http request option.
|
|
401
|
+
* @throws {RequiredError}
|
|
402
|
+
*/
|
|
403
|
+
async listPlanCoordination(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCoordinationListVBAResponse>> {
|
|
404
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlanCoordination(vbasoftwareDatabase, sortBy, page, pageSize, options);
|
|
405
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
406
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.listPlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
407
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
408
|
+
},
|
|
409
|
+
/**
|
|
410
|
+
* Create or Update multiple PlanCoordination at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
411
|
+
* @summary Create or Update Batch PlanCoordination
|
|
412
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
413
|
+
* @param {Array<PlanCoordination>} planCoordination
|
|
414
|
+
* @param {*} [options] Override http request option.
|
|
415
|
+
* @throws {RequiredError}
|
|
416
|
+
*/
|
|
417
|
+
async updateBatchPlanCoordination(vbasoftwareDatabase: string, planCoordination: Array<PlanCoordination>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MultiCodeResponseListVBAResponse>> {
|
|
418
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateBatchPlanCoordination(vbasoftwareDatabase, planCoordination, options);
|
|
419
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
420
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.updateBatchPlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
421
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
422
|
+
},
|
|
423
|
+
/**
|
|
424
|
+
* Updates a specific PlanCoordination.
|
|
425
|
+
* @summary Update PlanCoordination
|
|
426
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
427
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
428
|
+
* @param {PlanCoordination} planCoordination
|
|
429
|
+
* @param {*} [options] Override http request option.
|
|
430
|
+
* @throws {RequiredError}
|
|
431
|
+
*/
|
|
432
|
+
async updatePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCoordinationVBAResponse>> {
|
|
433
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatePlanCoordination(vbasoftwareDatabase, planCoordinationKey, planCoordination, options);
|
|
434
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
435
|
+
const localVarOperationServerBasePath = operationServerMap['PlanCoordinationApi.updatePlanCoordination']?.[localVarOperationServerIndex]?.url;
|
|
436
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
437
|
+
},
|
|
438
|
+
}
|
|
439
|
+
};
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* PlanCoordinationApi - factory interface
|
|
443
|
+
* @export
|
|
444
|
+
*/
|
|
445
|
+
export const PlanCoordinationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
446
|
+
const localVarFp = PlanCoordinationApiFp(configuration)
|
|
447
|
+
return {
|
|
448
|
+
/**
|
|
449
|
+
* Creates a new PlanCoordination
|
|
450
|
+
* @summary Create PlanCoordination
|
|
451
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
452
|
+
* @param {PlanCoordination} planCoordination
|
|
453
|
+
* @param {*} [options] Override http request option.
|
|
454
|
+
* @throws {RequiredError}
|
|
455
|
+
*/
|
|
456
|
+
createPlanCoordination(vbasoftwareDatabase: string, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse> {
|
|
457
|
+
return localVarFp.createPlanCoordination(vbasoftwareDatabase, planCoordination, options).then((request) => request(axios, basePath));
|
|
458
|
+
},
|
|
459
|
+
/**
|
|
460
|
+
* Deletes an PlanCoordination
|
|
461
|
+
* @summary Delete PlanCoordination
|
|
462
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
463
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
464
|
+
* @param {*} [options] Override http request option.
|
|
465
|
+
* @throws {RequiredError}
|
|
466
|
+
*/
|
|
467
|
+
deletePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
468
|
+
return localVarFp.deletePlanCoordination(vbasoftwareDatabase, planCoordinationKey, options).then((request) => request(axios, basePath));
|
|
469
|
+
},
|
|
470
|
+
/**
|
|
471
|
+
* Gets PlanCoordination
|
|
472
|
+
* @summary Get PlanCoordination
|
|
473
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
474
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
475
|
+
* @param {*} [options] Override http request option.
|
|
476
|
+
* @throws {RequiredError}
|
|
477
|
+
*/
|
|
478
|
+
getPlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse> {
|
|
479
|
+
return localVarFp.getPlanCoordination(vbasoftwareDatabase, planCoordinationKey, options).then((request) => request(axios, basePath));
|
|
480
|
+
},
|
|
481
|
+
/**
|
|
482
|
+
* Lists all PlanCoordination
|
|
483
|
+
* @summary List PlanCoordination
|
|
484
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
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.
|
|
486
|
+
* @param {number} [page] Page
|
|
487
|
+
* @param {number} [pageSize] Page Size
|
|
488
|
+
* @param {*} [options] Override http request option.
|
|
489
|
+
* @throws {RequiredError}
|
|
490
|
+
*/
|
|
491
|
+
listPlanCoordination(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationListVBAResponse> {
|
|
492
|
+
return localVarFp.listPlanCoordination(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(axios, basePath));
|
|
493
|
+
},
|
|
494
|
+
/**
|
|
495
|
+
* Create or Update multiple PlanCoordination at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
496
|
+
* @summary Create or Update Batch PlanCoordination
|
|
497
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
498
|
+
* @param {Array<PlanCoordination>} planCoordination
|
|
499
|
+
* @param {*} [options] Override http request option.
|
|
500
|
+
* @throws {RequiredError}
|
|
501
|
+
*/
|
|
502
|
+
updateBatchPlanCoordination(vbasoftwareDatabase: string, planCoordination: Array<PlanCoordination>, options?: RawAxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse> {
|
|
503
|
+
return localVarFp.updateBatchPlanCoordination(vbasoftwareDatabase, planCoordination, options).then((request) => request(axios, basePath));
|
|
504
|
+
},
|
|
505
|
+
/**
|
|
506
|
+
* Updates a specific PlanCoordination.
|
|
507
|
+
* @summary Update PlanCoordination
|
|
508
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
509
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
510
|
+
* @param {PlanCoordination} planCoordination
|
|
511
|
+
* @param {*} [options] Override http request option.
|
|
512
|
+
* @throws {RequiredError}
|
|
513
|
+
*/
|
|
514
|
+
updatePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse> {
|
|
515
|
+
return localVarFp.updatePlanCoordination(vbasoftwareDatabase, planCoordinationKey, planCoordination, options).then((request) => request(axios, basePath));
|
|
516
|
+
},
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* PlanCoordinationApi - interface
|
|
522
|
+
* @export
|
|
523
|
+
* @interface PlanCoordinationApi
|
|
524
|
+
*/
|
|
525
|
+
export interface PlanCoordinationApiInterface {
|
|
526
|
+
/**
|
|
527
|
+
* Creates a new PlanCoordination
|
|
528
|
+
* @summary Create PlanCoordination
|
|
529
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
530
|
+
* @param {PlanCoordination} planCoordination
|
|
531
|
+
* @param {*} [options] Override http request option.
|
|
532
|
+
* @throws {RequiredError}
|
|
533
|
+
* @memberof PlanCoordinationApiInterface
|
|
534
|
+
*/
|
|
535
|
+
createPlanCoordination(vbasoftwareDatabase: string, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse>;
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* Deletes an PlanCoordination
|
|
539
|
+
* @summary Delete PlanCoordination
|
|
540
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
541
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
542
|
+
* @param {*} [options] Override http request option.
|
|
543
|
+
* @throws {RequiredError}
|
|
544
|
+
* @memberof PlanCoordinationApiInterface
|
|
545
|
+
*/
|
|
546
|
+
deletePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Gets PlanCoordination
|
|
550
|
+
* @summary Get PlanCoordination
|
|
551
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
552
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
553
|
+
* @param {*} [options] Override http request option.
|
|
554
|
+
* @throws {RequiredError}
|
|
555
|
+
* @memberof PlanCoordinationApiInterface
|
|
556
|
+
*/
|
|
557
|
+
getPlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse>;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Lists all PlanCoordination
|
|
561
|
+
* @summary List PlanCoordination
|
|
562
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
563
|
+
* @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.
|
|
564
|
+
* @param {number} [page] Page
|
|
565
|
+
* @param {number} [pageSize] Page Size
|
|
566
|
+
* @param {*} [options] Override http request option.
|
|
567
|
+
* @throws {RequiredError}
|
|
568
|
+
* @memberof PlanCoordinationApiInterface
|
|
569
|
+
*/
|
|
570
|
+
listPlanCoordination(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationListVBAResponse>;
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Create or Update multiple PlanCoordination at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
574
|
+
* @summary Create or Update Batch PlanCoordination
|
|
575
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
576
|
+
* @param {Array<PlanCoordination>} planCoordination
|
|
577
|
+
* @param {*} [options] Override http request option.
|
|
578
|
+
* @throws {RequiredError}
|
|
579
|
+
* @memberof PlanCoordinationApiInterface
|
|
580
|
+
*/
|
|
581
|
+
updateBatchPlanCoordination(vbasoftwareDatabase: string, planCoordination: Array<PlanCoordination>, options?: RawAxiosRequestConfig): AxiosPromise<MultiCodeResponseListVBAResponse>;
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* Updates a specific PlanCoordination.
|
|
585
|
+
* @summary Update PlanCoordination
|
|
586
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
587
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
588
|
+
* @param {PlanCoordination} planCoordination
|
|
589
|
+
* @param {*} [options] Override http request option.
|
|
590
|
+
* @throws {RequiredError}
|
|
591
|
+
* @memberof PlanCoordinationApiInterface
|
|
592
|
+
*/
|
|
593
|
+
updatePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig): AxiosPromise<PlanCoordinationVBAResponse>;
|
|
594
|
+
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* PlanCoordinationApi - object-oriented interface
|
|
599
|
+
* @export
|
|
600
|
+
* @class PlanCoordinationApi
|
|
601
|
+
* @extends {BaseAPI}
|
|
602
|
+
*/
|
|
603
|
+
export class PlanCoordinationApi extends BaseAPI implements PlanCoordinationApiInterface {
|
|
604
|
+
/**
|
|
605
|
+
* Creates a new PlanCoordination
|
|
606
|
+
* @summary Create PlanCoordination
|
|
607
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
608
|
+
* @param {PlanCoordination} planCoordination
|
|
609
|
+
* @param {*} [options] Override http request option.
|
|
610
|
+
* @throws {RequiredError}
|
|
611
|
+
* @memberof PlanCoordinationApi
|
|
612
|
+
*/
|
|
613
|
+
public createPlanCoordination(vbasoftwareDatabase: string, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig) {
|
|
614
|
+
return PlanCoordinationApiFp(this.configuration).createPlanCoordination(vbasoftwareDatabase, planCoordination, options).then((request) => request(this.axios, this.basePath));
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* Deletes an PlanCoordination
|
|
619
|
+
* @summary Delete PlanCoordination
|
|
620
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
621
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
622
|
+
* @param {*} [options] Override http request option.
|
|
623
|
+
* @throws {RequiredError}
|
|
624
|
+
* @memberof PlanCoordinationApi
|
|
625
|
+
*/
|
|
626
|
+
public deletePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig) {
|
|
627
|
+
return PlanCoordinationApiFp(this.configuration).deletePlanCoordination(vbasoftwareDatabase, planCoordinationKey, options).then((request) => request(this.axios, this.basePath));
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Gets PlanCoordination
|
|
632
|
+
* @summary Get PlanCoordination
|
|
633
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
634
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
635
|
+
* @param {*} [options] Override http request option.
|
|
636
|
+
* @throws {RequiredError}
|
|
637
|
+
* @memberof PlanCoordinationApi
|
|
638
|
+
*/
|
|
639
|
+
public getPlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, options?: RawAxiosRequestConfig) {
|
|
640
|
+
return PlanCoordinationApiFp(this.configuration).getPlanCoordination(vbasoftwareDatabase, planCoordinationKey, options).then((request) => request(this.axios, this.basePath));
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* Lists all PlanCoordination
|
|
645
|
+
* @summary List PlanCoordination
|
|
646
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
647
|
+
* @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.
|
|
648
|
+
* @param {number} [page] Page
|
|
649
|
+
* @param {number} [pageSize] Page Size
|
|
650
|
+
* @param {*} [options] Override http request option.
|
|
651
|
+
* @throws {RequiredError}
|
|
652
|
+
* @memberof PlanCoordinationApi
|
|
653
|
+
*/
|
|
654
|
+
public listPlanCoordination(vbasoftwareDatabase: string, sortBy?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
655
|
+
return PlanCoordinationApiFp(this.configuration).listPlanCoordination(vbasoftwareDatabase, sortBy, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* Create or Update multiple PlanCoordination at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
660
|
+
* @summary Create or Update Batch PlanCoordination
|
|
661
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
662
|
+
* @param {Array<PlanCoordination>} planCoordination
|
|
663
|
+
* @param {*} [options] Override http request option.
|
|
664
|
+
* @throws {RequiredError}
|
|
665
|
+
* @memberof PlanCoordinationApi
|
|
666
|
+
*/
|
|
667
|
+
public updateBatchPlanCoordination(vbasoftwareDatabase: string, planCoordination: Array<PlanCoordination>, options?: RawAxiosRequestConfig) {
|
|
668
|
+
return PlanCoordinationApiFp(this.configuration).updateBatchPlanCoordination(vbasoftwareDatabase, planCoordination, options).then((request) => request(this.axios, this.basePath));
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* Updates a specific PlanCoordination.
|
|
673
|
+
* @summary Update PlanCoordination
|
|
674
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
675
|
+
* @param {number} planCoordinationKey PlanCoordination Key
|
|
676
|
+
* @param {PlanCoordination} planCoordination
|
|
677
|
+
* @param {*} [options] Override http request option.
|
|
678
|
+
* @throws {RequiredError}
|
|
679
|
+
* @memberof PlanCoordinationApi
|
|
680
|
+
*/
|
|
681
|
+
public updatePlanCoordination(vbasoftwareDatabase: string, planCoordinationKey: number, planCoordination: PlanCoordination, options?: RawAxiosRequestConfig) {
|
|
682
|
+
return PlanCoordinationApiFp(this.configuration).updatePlanCoordination(vbasoftwareDatabase, planCoordinationKey, planCoordination, options).then((request) => request(this.axios, this.basePath));
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
|