@gizone/rrs-client 4.2.5-alpha.415 → 4.2.6-alpha.417
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/README.md +2 -2
- package/apis/park-api.ts +524 -0
- package/apis/setting-api.ts +522 -0
- package/configuration.ts +1 -1
- package/dist/apis/park-api.d.ts +277 -0
- package/dist/apis/park-api.js +414 -0
- package/dist/apis/setting-api.d.ts +276 -0
- package/dist/apis/setting-api.js +414 -0
- package/dist/configuration.js +1 -1
- package/dist/esm/apis/park-api.d.ts +277 -0
- package/dist/esm/apis/park-api.js +414 -0
- package/dist/esm/apis/setting-api.d.ts +276 -0
- package/dist/esm/apis/setting-api.js +414 -0
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/esm/models/system-user-msg-source-type-enum.js +3 -1
- package/dist/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/models/system-user-msg-source-type-enum.js +3 -1
- package/models/system-user-msg-source-type-enum.ts +3 -1
- package/package.json +1 -1
package/dist/apis/park-api.js
CHANGED
|
@@ -149,6 +149,198 @@ const ParkApiAxiosParamCreator = function (configuration) {
|
|
|
149
149
|
options: localVarRequestOptions,
|
|
150
150
|
};
|
|
151
151
|
}),
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @summary 园区初始化
|
|
155
|
+
* @param {number} parkId
|
|
156
|
+
* @param {*} [options] Override http request option.
|
|
157
|
+
* @throws {RequiredError}
|
|
158
|
+
*/
|
|
159
|
+
parkInit: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
160
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
161
|
+
(0, common_1.assertParamExists)('parkInit', 'parkId', parkId);
|
|
162
|
+
const localVarPath = `/park/{parkId}/init`
|
|
163
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
164
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
165
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
166
|
+
let baseOptions;
|
|
167
|
+
if (configuration) {
|
|
168
|
+
baseOptions = configuration.baseOptions;
|
|
169
|
+
}
|
|
170
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
171
|
+
const localVarHeaderParameter = {};
|
|
172
|
+
const localVarQueryParameter = {};
|
|
173
|
+
// authentication tokenScheme required
|
|
174
|
+
// http bearer authentication required
|
|
175
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
176
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
177
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
178
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
179
|
+
return {
|
|
180
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
181
|
+
options: localVarRequestOptions,
|
|
182
|
+
};
|
|
183
|
+
}),
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @summary 园区初始化-部门
|
|
187
|
+
* @param {number} parkId
|
|
188
|
+
* @param {*} [options] Override http request option.
|
|
189
|
+
* @throws {RequiredError}
|
|
190
|
+
*/
|
|
191
|
+
parkInitDept: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
192
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
193
|
+
(0, common_1.assertParamExists)('parkInitDept', 'parkId', parkId);
|
|
194
|
+
const localVarPath = `/park/{parkId}/init/dept`
|
|
195
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
196
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
197
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
198
|
+
let baseOptions;
|
|
199
|
+
if (configuration) {
|
|
200
|
+
baseOptions = configuration.baseOptions;
|
|
201
|
+
}
|
|
202
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
203
|
+
const localVarHeaderParameter = {};
|
|
204
|
+
const localVarQueryParameter = {};
|
|
205
|
+
// authentication tokenScheme required
|
|
206
|
+
// http bearer authentication required
|
|
207
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
208
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
209
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
210
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
211
|
+
return {
|
|
212
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
213
|
+
options: localVarRequestOptions,
|
|
214
|
+
};
|
|
215
|
+
}),
|
|
216
|
+
/**
|
|
217
|
+
*
|
|
218
|
+
* @summary 园区初始化-角色
|
|
219
|
+
* @param {number} parkId
|
|
220
|
+
* @param {*} [options] Override http request option.
|
|
221
|
+
* @throws {RequiredError}
|
|
222
|
+
*/
|
|
223
|
+
parkInitRole: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
224
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
225
|
+
(0, common_1.assertParamExists)('parkInitRole', 'parkId', parkId);
|
|
226
|
+
const localVarPath = `/park/{parkId}/init/role`
|
|
227
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
228
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
229
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
230
|
+
let baseOptions;
|
|
231
|
+
if (configuration) {
|
|
232
|
+
baseOptions = configuration.baseOptions;
|
|
233
|
+
}
|
|
234
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
235
|
+
const localVarHeaderParameter = {};
|
|
236
|
+
const localVarQueryParameter = {};
|
|
237
|
+
// authentication tokenScheme required
|
|
238
|
+
// http bearer authentication required
|
|
239
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
240
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
241
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
242
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
243
|
+
return {
|
|
244
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
245
|
+
options: localVarRequestOptions,
|
|
246
|
+
};
|
|
247
|
+
}),
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @summary 园区初始化-工单部门查看权限
|
|
251
|
+
* @param {number} parkId
|
|
252
|
+
* @param {*} [options] Override http request option.
|
|
253
|
+
* @throws {RequiredError}
|
|
254
|
+
*/
|
|
255
|
+
parkInitWorkOrderDeptSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
256
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
257
|
+
(0, common_1.assertParamExists)('parkInitWorkOrderDeptSettings', 'parkId', parkId);
|
|
258
|
+
const localVarPath = `/park/{parkId}/init/workOrderDeptSettings`
|
|
259
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
260
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
261
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
262
|
+
let baseOptions;
|
|
263
|
+
if (configuration) {
|
|
264
|
+
baseOptions = configuration.baseOptions;
|
|
265
|
+
}
|
|
266
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
267
|
+
const localVarHeaderParameter = {};
|
|
268
|
+
const localVarQueryParameter = {};
|
|
269
|
+
// authentication tokenScheme required
|
|
270
|
+
// http bearer authentication required
|
|
271
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
272
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
273
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
274
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
275
|
+
return {
|
|
276
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
277
|
+
options: localVarRequestOptions,
|
|
278
|
+
};
|
|
279
|
+
}),
|
|
280
|
+
/**
|
|
281
|
+
*
|
|
282
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
283
|
+
* @param {number} parkId
|
|
284
|
+
* @param {*} [options] Override http request option.
|
|
285
|
+
* @throws {RequiredError}
|
|
286
|
+
*/
|
|
287
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
288
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
289
|
+
(0, common_1.assertParamExists)('parkInitWorkOrderIssueTypeExecutionTimeSettings', 'parkId', parkId);
|
|
290
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeExecutionTimeSettings`
|
|
291
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
292
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
293
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
294
|
+
let baseOptions;
|
|
295
|
+
if (configuration) {
|
|
296
|
+
baseOptions = configuration.baseOptions;
|
|
297
|
+
}
|
|
298
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
299
|
+
const localVarHeaderParameter = {};
|
|
300
|
+
const localVarQueryParameter = {};
|
|
301
|
+
// authentication tokenScheme required
|
|
302
|
+
// http bearer authentication required
|
|
303
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
304
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
305
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
306
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
307
|
+
return {
|
|
308
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
309
|
+
options: localVarRequestOptions,
|
|
310
|
+
};
|
|
311
|
+
}),
|
|
312
|
+
/**
|
|
313
|
+
*
|
|
314
|
+
* @summary 园区初始化-工单问题类型部门
|
|
315
|
+
* @param {number} parkId
|
|
316
|
+
* @param {*} [options] Override http request option.
|
|
317
|
+
* @throws {RequiredError}
|
|
318
|
+
*/
|
|
319
|
+
parkInitWorkOrderIssueTypeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
320
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
321
|
+
(0, common_1.assertParamExists)('parkInitWorkOrderIssueTypeSettings', 'parkId', parkId);
|
|
322
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeSettings`
|
|
323
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
324
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
325
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
326
|
+
let baseOptions;
|
|
327
|
+
if (configuration) {
|
|
328
|
+
baseOptions = configuration.baseOptions;
|
|
329
|
+
}
|
|
330
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
331
|
+
const localVarHeaderParameter = {};
|
|
332
|
+
const localVarQueryParameter = {};
|
|
333
|
+
// authentication tokenScheme required
|
|
334
|
+
// http bearer authentication required
|
|
335
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
336
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
337
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
338
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
339
|
+
return {
|
|
340
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
341
|
+
options: localVarRequestOptions,
|
|
342
|
+
};
|
|
343
|
+
}),
|
|
152
344
|
/**
|
|
153
345
|
*
|
|
154
346
|
* @summary 查询列表
|
|
@@ -243,6 +435,102 @@ const ParkApiFp = function (configuration) {
|
|
|
243
435
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
244
436
|
});
|
|
245
437
|
},
|
|
438
|
+
/**
|
|
439
|
+
*
|
|
440
|
+
* @summary 园区初始化
|
|
441
|
+
* @param {number} parkId
|
|
442
|
+
* @param {*} [options] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
*/
|
|
445
|
+
parkInit(parkId, options) {
|
|
446
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
447
|
+
var _a, _b, _c;
|
|
448
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInit(parkId, options);
|
|
449
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
450
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInit']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
451
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
452
|
+
});
|
|
453
|
+
},
|
|
454
|
+
/**
|
|
455
|
+
*
|
|
456
|
+
* @summary 园区初始化-部门
|
|
457
|
+
* @param {number} parkId
|
|
458
|
+
* @param {*} [options] Override http request option.
|
|
459
|
+
* @throws {RequiredError}
|
|
460
|
+
*/
|
|
461
|
+
parkInitDept(parkId, options) {
|
|
462
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
463
|
+
var _a, _b, _c;
|
|
464
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitDept(parkId, options);
|
|
465
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
466
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInitDept']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
467
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
468
|
+
});
|
|
469
|
+
},
|
|
470
|
+
/**
|
|
471
|
+
*
|
|
472
|
+
* @summary 园区初始化-角色
|
|
473
|
+
* @param {number} parkId
|
|
474
|
+
* @param {*} [options] Override http request option.
|
|
475
|
+
* @throws {RequiredError}
|
|
476
|
+
*/
|
|
477
|
+
parkInitRole(parkId, options) {
|
|
478
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
479
|
+
var _a, _b, _c;
|
|
480
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitRole(parkId, options);
|
|
481
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
482
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInitRole']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
483
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
484
|
+
});
|
|
485
|
+
},
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @summary 园区初始化-工单部门查看权限
|
|
489
|
+
* @param {number} parkId
|
|
490
|
+
* @param {*} [options] Override http request option.
|
|
491
|
+
* @throws {RequiredError}
|
|
492
|
+
*/
|
|
493
|
+
parkInitWorkOrderDeptSettings(parkId, options) {
|
|
494
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
495
|
+
var _a, _b, _c;
|
|
496
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderDeptSettings(parkId, options);
|
|
497
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
498
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInitWorkOrderDeptSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
499
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
500
|
+
});
|
|
501
|
+
},
|
|
502
|
+
/**
|
|
503
|
+
*
|
|
504
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
505
|
+
* @param {number} parkId
|
|
506
|
+
* @param {*} [options] Override http request option.
|
|
507
|
+
* @throws {RequiredError}
|
|
508
|
+
*/
|
|
509
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options) {
|
|
510
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
511
|
+
var _a, _b, _c;
|
|
512
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options);
|
|
513
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
514
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInitWorkOrderIssueTypeExecutionTimeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
515
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
516
|
+
});
|
|
517
|
+
},
|
|
518
|
+
/**
|
|
519
|
+
*
|
|
520
|
+
* @summary 园区初始化-工单问题类型部门
|
|
521
|
+
* @param {number} parkId
|
|
522
|
+
* @param {*} [options] Override http request option.
|
|
523
|
+
* @throws {RequiredError}
|
|
524
|
+
*/
|
|
525
|
+
parkInitWorkOrderIssueTypeSettings(parkId, options) {
|
|
526
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
527
|
+
var _a, _b, _c;
|
|
528
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeSettings(parkId, options);
|
|
529
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
530
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ParkApi.parkInitWorkOrderIssueTypeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
531
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
532
|
+
});
|
|
533
|
+
},
|
|
246
534
|
/**
|
|
247
535
|
*
|
|
248
536
|
* @summary 查询列表
|
|
@@ -299,6 +587,66 @@ const ParkApiFactory = function (configuration, basePath, axios) {
|
|
|
299
587
|
deptConfigSelectByParkAndKey(requestParameters, options) {
|
|
300
588
|
return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
|
|
301
589
|
},
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @summary 园区初始化
|
|
593
|
+
* @param {ParkApiParkInitRequest} requestParameters Request parameters.
|
|
594
|
+
* @param {*} [options] Override http request option.
|
|
595
|
+
* @throws {RequiredError}
|
|
596
|
+
*/
|
|
597
|
+
parkInit(requestParameters, options) {
|
|
598
|
+
return localVarFp.parkInit(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
599
|
+
},
|
|
600
|
+
/**
|
|
601
|
+
*
|
|
602
|
+
* @summary 园区初始化-部门
|
|
603
|
+
* @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
|
|
604
|
+
* @param {*} [options] Override http request option.
|
|
605
|
+
* @throws {RequiredError}
|
|
606
|
+
*/
|
|
607
|
+
parkInitDept(requestParameters, options) {
|
|
608
|
+
return localVarFp.parkInitDept(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
609
|
+
},
|
|
610
|
+
/**
|
|
611
|
+
*
|
|
612
|
+
* @summary 园区初始化-角色
|
|
613
|
+
* @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
|
|
614
|
+
* @param {*} [options] Override http request option.
|
|
615
|
+
* @throws {RequiredError}
|
|
616
|
+
*/
|
|
617
|
+
parkInitRole(requestParameters, options) {
|
|
618
|
+
return localVarFp.parkInitRole(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
619
|
+
},
|
|
620
|
+
/**
|
|
621
|
+
*
|
|
622
|
+
* @summary 园区初始化-工单部门查看权限
|
|
623
|
+
* @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
624
|
+
* @param {*} [options] Override http request option.
|
|
625
|
+
* @throws {RequiredError}
|
|
626
|
+
*/
|
|
627
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
628
|
+
return localVarFp.parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
629
|
+
},
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
633
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
634
|
+
* @param {*} [options] Override http request option.
|
|
635
|
+
* @throws {RequiredError}
|
|
636
|
+
*/
|
|
637
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
638
|
+
return localVarFp.parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
639
|
+
},
|
|
640
|
+
/**
|
|
641
|
+
*
|
|
642
|
+
* @summary 园区初始化-工单问题类型部门
|
|
643
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
644
|
+
* @param {*} [options] Override http request option.
|
|
645
|
+
* @throws {RequiredError}
|
|
646
|
+
*/
|
|
647
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
648
|
+
return localVarFp.parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
649
|
+
},
|
|
302
650
|
/**
|
|
303
651
|
*
|
|
304
652
|
* @summary 查询列表
|
|
@@ -352,6 +700,72 @@ class ParkApi extends base_1.BaseAPI {
|
|
|
352
700
|
deptConfigSelectByParkAndKey(requestParameters, options) {
|
|
353
701
|
return (0, exports.ParkApiFp)(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
|
|
354
702
|
}
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @summary 园区初始化
|
|
706
|
+
* @param {ParkApiParkInitRequest} requestParameters Request parameters.
|
|
707
|
+
* @param {*} [options] Override http request option.
|
|
708
|
+
* @throws {RequiredError}
|
|
709
|
+
* @memberof ParkApi
|
|
710
|
+
*/
|
|
711
|
+
parkInit(requestParameters, options) {
|
|
712
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInit(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
*
|
|
716
|
+
* @summary 园区初始化-部门
|
|
717
|
+
* @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
|
|
718
|
+
* @param {*} [options] Override http request option.
|
|
719
|
+
* @throws {RequiredError}
|
|
720
|
+
* @memberof ParkApi
|
|
721
|
+
*/
|
|
722
|
+
parkInitDept(requestParameters, options) {
|
|
723
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInitDept(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
724
|
+
}
|
|
725
|
+
/**
|
|
726
|
+
*
|
|
727
|
+
* @summary 园区初始化-角色
|
|
728
|
+
* @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
|
|
729
|
+
* @param {*} [options] Override http request option.
|
|
730
|
+
* @throws {RequiredError}
|
|
731
|
+
* @memberof ParkApi
|
|
732
|
+
*/
|
|
733
|
+
parkInitRole(requestParameters, options) {
|
|
734
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInitRole(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
735
|
+
}
|
|
736
|
+
/**
|
|
737
|
+
*
|
|
738
|
+
* @summary 园区初始化-工单部门查看权限
|
|
739
|
+
* @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
740
|
+
* @param {*} [options] Override http request option.
|
|
741
|
+
* @throws {RequiredError}
|
|
742
|
+
* @memberof ParkApi
|
|
743
|
+
*/
|
|
744
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
745
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
746
|
+
}
|
|
747
|
+
/**
|
|
748
|
+
*
|
|
749
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
750
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
751
|
+
* @param {*} [options] Override http request option.
|
|
752
|
+
* @throws {RequiredError}
|
|
753
|
+
* @memberof ParkApi
|
|
754
|
+
*/
|
|
755
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
756
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
757
|
+
}
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* @summary 园区初始化-工单问题类型部门
|
|
761
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
762
|
+
* @param {*} [options] Override http request option.
|
|
763
|
+
* @throws {RequiredError}
|
|
764
|
+
* @memberof ParkApi
|
|
765
|
+
*/
|
|
766
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
767
|
+
return (0, exports.ParkApiFp)(this.configuration).parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
768
|
+
}
|
|
355
769
|
/**
|
|
356
770
|
*
|
|
357
771
|
* @summary 查询列表
|