@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.
@@ -393,6 +393,198 @@ const SettingApiAxiosParamCreator = function (configuration) {
393
393
  options: localVarRequestOptions,
394
394
  };
395
395
  }),
396
+ /**
397
+ *
398
+ * @summary 园区初始化
399
+ * @param {number} parkId
400
+ * @param {*} [options] Override http request option.
401
+ * @throws {RequiredError}
402
+ */
403
+ parkInit: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
404
+ // verify required parameter 'parkId' is not null or undefined
405
+ (0, common_1.assertParamExists)('parkInit', 'parkId', parkId);
406
+ const localVarPath = `/park/{parkId}/init`
407
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
408
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
409
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
410
+ let baseOptions;
411
+ if (configuration) {
412
+ baseOptions = configuration.baseOptions;
413
+ }
414
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
415
+ const localVarHeaderParameter = {};
416
+ const localVarQueryParameter = {};
417
+ // authentication tokenScheme required
418
+ // http bearer authentication required
419
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
420
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
421
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
422
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
423
+ return {
424
+ url: (0, common_1.toPathString)(localVarUrlObj),
425
+ options: localVarRequestOptions,
426
+ };
427
+ }),
428
+ /**
429
+ *
430
+ * @summary 园区初始化-部门
431
+ * @param {number} parkId
432
+ * @param {*} [options] Override http request option.
433
+ * @throws {RequiredError}
434
+ */
435
+ parkInitDept: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
436
+ // verify required parameter 'parkId' is not null or undefined
437
+ (0, common_1.assertParamExists)('parkInitDept', 'parkId', parkId);
438
+ const localVarPath = `/park/{parkId}/init/dept`
439
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
440
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
441
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
442
+ let baseOptions;
443
+ if (configuration) {
444
+ baseOptions = configuration.baseOptions;
445
+ }
446
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
447
+ const localVarHeaderParameter = {};
448
+ const localVarQueryParameter = {};
449
+ // authentication tokenScheme required
450
+ // http bearer authentication required
451
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
452
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
453
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
454
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
455
+ return {
456
+ url: (0, common_1.toPathString)(localVarUrlObj),
457
+ options: localVarRequestOptions,
458
+ };
459
+ }),
460
+ /**
461
+ *
462
+ * @summary 园区初始化-角色
463
+ * @param {number} parkId
464
+ * @param {*} [options] Override http request option.
465
+ * @throws {RequiredError}
466
+ */
467
+ parkInitRole: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
468
+ // verify required parameter 'parkId' is not null or undefined
469
+ (0, common_1.assertParamExists)('parkInitRole', 'parkId', parkId);
470
+ const localVarPath = `/park/{parkId}/init/role`
471
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
472
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
473
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
474
+ let baseOptions;
475
+ if (configuration) {
476
+ baseOptions = configuration.baseOptions;
477
+ }
478
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
479
+ const localVarHeaderParameter = {};
480
+ const localVarQueryParameter = {};
481
+ // authentication tokenScheme required
482
+ // http bearer authentication required
483
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
484
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
485
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
486
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
487
+ return {
488
+ url: (0, common_1.toPathString)(localVarUrlObj),
489
+ options: localVarRequestOptions,
490
+ };
491
+ }),
492
+ /**
493
+ *
494
+ * @summary 园区初始化-工单部门查看权限
495
+ * @param {number} parkId
496
+ * @param {*} [options] Override http request option.
497
+ * @throws {RequiredError}
498
+ */
499
+ parkInitWorkOrderDeptSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
500
+ // verify required parameter 'parkId' is not null or undefined
501
+ (0, common_1.assertParamExists)('parkInitWorkOrderDeptSettings', 'parkId', parkId);
502
+ const localVarPath = `/park/{parkId}/init/workOrderDeptSettings`
503
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
504
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
505
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
506
+ let baseOptions;
507
+ if (configuration) {
508
+ baseOptions = configuration.baseOptions;
509
+ }
510
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
511
+ const localVarHeaderParameter = {};
512
+ const localVarQueryParameter = {};
513
+ // authentication tokenScheme required
514
+ // http bearer authentication required
515
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
516
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
517
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
518
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
519
+ return {
520
+ url: (0, common_1.toPathString)(localVarUrlObj),
521
+ options: localVarRequestOptions,
522
+ };
523
+ }),
524
+ /**
525
+ *
526
+ * @summary 园区初始化-工单问题类型执行时效
527
+ * @param {number} parkId
528
+ * @param {*} [options] Override http request option.
529
+ * @throws {RequiredError}
530
+ */
531
+ parkInitWorkOrderIssueTypeExecutionTimeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
532
+ // verify required parameter 'parkId' is not null or undefined
533
+ (0, common_1.assertParamExists)('parkInitWorkOrderIssueTypeExecutionTimeSettings', 'parkId', parkId);
534
+ const localVarPath = `/park/{parkId}/init/workOrderIssueTypeExecutionTimeSettings`
535
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
536
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
537
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
538
+ let baseOptions;
539
+ if (configuration) {
540
+ baseOptions = configuration.baseOptions;
541
+ }
542
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
543
+ const localVarHeaderParameter = {};
544
+ const localVarQueryParameter = {};
545
+ // authentication tokenScheme required
546
+ // http bearer authentication required
547
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
548
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
549
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
550
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
551
+ return {
552
+ url: (0, common_1.toPathString)(localVarUrlObj),
553
+ options: localVarRequestOptions,
554
+ };
555
+ }),
556
+ /**
557
+ *
558
+ * @summary 园区初始化-工单问题类型部门
559
+ * @param {number} parkId
560
+ * @param {*} [options] Override http request option.
561
+ * @throws {RequiredError}
562
+ */
563
+ parkInitWorkOrderIssueTypeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
564
+ // verify required parameter 'parkId' is not null or undefined
565
+ (0, common_1.assertParamExists)('parkInitWorkOrderIssueTypeSettings', 'parkId', parkId);
566
+ const localVarPath = `/park/{parkId}/init/workOrderIssueTypeSettings`
567
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
568
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
569
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
570
+ let baseOptions;
571
+ if (configuration) {
572
+ baseOptions = configuration.baseOptions;
573
+ }
574
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
575
+ const localVarHeaderParameter = {};
576
+ const localVarQueryParameter = {};
577
+ // authentication tokenScheme required
578
+ // http bearer authentication required
579
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
580
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
581
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
582
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
583
+ return {
584
+ url: (0, common_1.toPathString)(localVarUrlObj),
585
+ options: localVarRequestOptions,
586
+ };
587
+ }),
396
588
  /**
397
589
  *
398
590
  * @summary 根据时间区间查询
@@ -1141,6 +1333,102 @@ const SettingApiFp = function (configuration) {
1141
1333
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1142
1334
  });
1143
1335
  },
1336
+ /**
1337
+ *
1338
+ * @summary 园区初始化
1339
+ * @param {number} parkId
1340
+ * @param {*} [options] Override http request option.
1341
+ * @throws {RequiredError}
1342
+ */
1343
+ parkInit(parkId, options) {
1344
+ return __awaiter(this, void 0, void 0, function* () {
1345
+ var _a, _b, _c;
1346
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInit(parkId, options);
1347
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1348
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInit']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1349
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1350
+ });
1351
+ },
1352
+ /**
1353
+ *
1354
+ * @summary 园区初始化-部门
1355
+ * @param {number} parkId
1356
+ * @param {*} [options] Override http request option.
1357
+ * @throws {RequiredError}
1358
+ */
1359
+ parkInitDept(parkId, options) {
1360
+ return __awaiter(this, void 0, void 0, function* () {
1361
+ var _a, _b, _c;
1362
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitDept(parkId, options);
1363
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1364
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInitDept']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1365
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1366
+ });
1367
+ },
1368
+ /**
1369
+ *
1370
+ * @summary 园区初始化-角色
1371
+ * @param {number} parkId
1372
+ * @param {*} [options] Override http request option.
1373
+ * @throws {RequiredError}
1374
+ */
1375
+ parkInitRole(parkId, options) {
1376
+ return __awaiter(this, void 0, void 0, function* () {
1377
+ var _a, _b, _c;
1378
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitRole(parkId, options);
1379
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1380
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInitRole']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1381
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1382
+ });
1383
+ },
1384
+ /**
1385
+ *
1386
+ * @summary 园区初始化-工单部门查看权限
1387
+ * @param {number} parkId
1388
+ * @param {*} [options] Override http request option.
1389
+ * @throws {RequiredError}
1390
+ */
1391
+ parkInitWorkOrderDeptSettings(parkId, options) {
1392
+ return __awaiter(this, void 0, void 0, function* () {
1393
+ var _a, _b, _c;
1394
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderDeptSettings(parkId, options);
1395
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1396
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInitWorkOrderDeptSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1397
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1398
+ });
1399
+ },
1400
+ /**
1401
+ *
1402
+ * @summary 园区初始化-工单问题类型执行时效
1403
+ * @param {number} parkId
1404
+ * @param {*} [options] Override http request option.
1405
+ * @throws {RequiredError}
1406
+ */
1407
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options) {
1408
+ return __awaiter(this, void 0, void 0, function* () {
1409
+ var _a, _b, _c;
1410
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options);
1411
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1412
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInitWorkOrderIssueTypeExecutionTimeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1413
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1414
+ });
1415
+ },
1416
+ /**
1417
+ *
1418
+ * @summary 园区初始化-工单问题类型部门
1419
+ * @param {number} parkId
1420
+ * @param {*} [options] Override http request option.
1421
+ * @throws {RequiredError}
1422
+ */
1423
+ parkInitWorkOrderIssueTypeSettings(parkId, options) {
1424
+ return __awaiter(this, void 0, void 0, function* () {
1425
+ var _a, _b, _c;
1426
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeSettings(parkId, options);
1427
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1428
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.parkInitWorkOrderIssueTypeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1429
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1430
+ });
1431
+ },
1144
1432
  /**
1145
1433
  *
1146
1434
  * @summary 根据时间区间查询
@@ -1517,6 +1805,66 @@ const SettingApiFactory = function (configuration, basePath, axios) {
1517
1805
  getByDate(requestParameters, options) {
1518
1806
  return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
1519
1807
  },
1808
+ /**
1809
+ *
1810
+ * @summary 园区初始化
1811
+ * @param {SettingApiParkInitRequest} requestParameters Request parameters.
1812
+ * @param {*} [options] Override http request option.
1813
+ * @throws {RequiredError}
1814
+ */
1815
+ parkInit(requestParameters, options) {
1816
+ return localVarFp.parkInit(requestParameters.parkId, options).then((request) => request(axios, basePath));
1817
+ },
1818
+ /**
1819
+ *
1820
+ * @summary 园区初始化-部门
1821
+ * @param {SettingApiParkInitDeptRequest} requestParameters Request parameters.
1822
+ * @param {*} [options] Override http request option.
1823
+ * @throws {RequiredError}
1824
+ */
1825
+ parkInitDept(requestParameters, options) {
1826
+ return localVarFp.parkInitDept(requestParameters.parkId, options).then((request) => request(axios, basePath));
1827
+ },
1828
+ /**
1829
+ *
1830
+ * @summary 园区初始化-角色
1831
+ * @param {SettingApiParkInitRoleRequest} requestParameters Request parameters.
1832
+ * @param {*} [options] Override http request option.
1833
+ * @throws {RequiredError}
1834
+ */
1835
+ parkInitRole(requestParameters, options) {
1836
+ return localVarFp.parkInitRole(requestParameters.parkId, options).then((request) => request(axios, basePath));
1837
+ },
1838
+ /**
1839
+ *
1840
+ * @summary 园区初始化-工单部门查看权限
1841
+ * @param {SettingApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
1842
+ * @param {*} [options] Override http request option.
1843
+ * @throws {RequiredError}
1844
+ */
1845
+ parkInitWorkOrderDeptSettings(requestParameters, options) {
1846
+ return localVarFp.parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
1847
+ },
1848
+ /**
1849
+ *
1850
+ * @summary 园区初始化-工单问题类型执行时效
1851
+ * @param {SettingApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
1852
+ * @param {*} [options] Override http request option.
1853
+ * @throws {RequiredError}
1854
+ */
1855
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
1856
+ return localVarFp.parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
1857
+ },
1858
+ /**
1859
+ *
1860
+ * @summary 园区初始化-工单问题类型部门
1861
+ * @param {SettingApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
1862
+ * @param {*} [options] Override http request option.
1863
+ * @throws {RequiredError}
1864
+ */
1865
+ parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
1866
+ return localVarFp.parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
1867
+ },
1520
1868
  /**
1521
1869
  *
1522
1870
  * @summary 根据时间区间查询
@@ -1795,6 +2143,72 @@ class SettingApi extends base_1.BaseAPI {
1795
2143
  getByDate(requestParameters, options) {
1796
2144
  return (0, exports.SettingApiFp)(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
1797
2145
  }
2146
+ /**
2147
+ *
2148
+ * @summary 园区初始化
2149
+ * @param {SettingApiParkInitRequest} requestParameters Request parameters.
2150
+ * @param {*} [options] Override http request option.
2151
+ * @throws {RequiredError}
2152
+ * @memberof SettingApi
2153
+ */
2154
+ parkInit(requestParameters, options) {
2155
+ return (0, exports.SettingApiFp)(this.configuration).parkInit(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2156
+ }
2157
+ /**
2158
+ *
2159
+ * @summary 园区初始化-部门
2160
+ * @param {SettingApiParkInitDeptRequest} requestParameters Request parameters.
2161
+ * @param {*} [options] Override http request option.
2162
+ * @throws {RequiredError}
2163
+ * @memberof SettingApi
2164
+ */
2165
+ parkInitDept(requestParameters, options) {
2166
+ return (0, exports.SettingApiFp)(this.configuration).parkInitDept(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2167
+ }
2168
+ /**
2169
+ *
2170
+ * @summary 园区初始化-角色
2171
+ * @param {SettingApiParkInitRoleRequest} requestParameters Request parameters.
2172
+ * @param {*} [options] Override http request option.
2173
+ * @throws {RequiredError}
2174
+ * @memberof SettingApi
2175
+ */
2176
+ parkInitRole(requestParameters, options) {
2177
+ return (0, exports.SettingApiFp)(this.configuration).parkInitRole(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2178
+ }
2179
+ /**
2180
+ *
2181
+ * @summary 园区初始化-工单部门查看权限
2182
+ * @param {SettingApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
2183
+ * @param {*} [options] Override http request option.
2184
+ * @throws {RequiredError}
2185
+ * @memberof SettingApi
2186
+ */
2187
+ parkInitWorkOrderDeptSettings(requestParameters, options) {
2188
+ return (0, exports.SettingApiFp)(this.configuration).parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2189
+ }
2190
+ /**
2191
+ *
2192
+ * @summary 园区初始化-工单问题类型执行时效
2193
+ * @param {SettingApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
2194
+ * @param {*} [options] Override http request option.
2195
+ * @throws {RequiredError}
2196
+ * @memberof SettingApi
2197
+ */
2198
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
2199
+ return (0, exports.SettingApiFp)(this.configuration).parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2200
+ }
2201
+ /**
2202
+ *
2203
+ * @summary 园区初始化-工单问题类型部门
2204
+ * @param {SettingApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
2205
+ * @param {*} [options] Override http request option.
2206
+ * @throws {RequiredError}
2207
+ * @memberof SettingApi
2208
+ */
2209
+ parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
2210
+ return (0, exports.SettingApiFp)(this.configuration).parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
2211
+ }
1798
2212
  /**
1799
2213
  *
1800
2214
  * @summary 根据时间区间查询
@@ -23,7 +23,7 @@ class Configuration {
23
23
  this.accessToken = param.accessToken;
24
24
  this.basePath = param.basePath;
25
25
  this.serverIndex = param.serverIndex;
26
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.2.5/typescript-axios" }) }, param.baseOptions);
26
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.2.6/typescript-axios" }) }, param.baseOptions);
27
27
  this.formDataCtor = param.formDataCtor;
28
28
  }
29
29
  /**