@gizone/rrs-client 4.2.6-alpha.416 → 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.
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
15
  import type { JsonResult } from '../models';
16
+ import type { JsonResultVoid } from '../models';
16
17
  import type { ParkPushSettingsAddBO } from '../models';
17
18
  /**
18
19
  * ParkApi - axios parameter creator
@@ -47,6 +48,54 @@ export declare const ParkApiAxiosParamCreator: (configuration?: Configuration) =
47
48
  * @throws {RequiredError}
48
49
  */
49
50
  deptConfigSelectByParkAndKey: (deptId: number, configKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ *
53
+ * @summary 园区初始化
54
+ * @param {number} parkId
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ parkInit: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
59
+ /**
60
+ *
61
+ * @summary 园区初始化-部门
62
+ * @param {number} parkId
63
+ * @param {*} [options] Override http request option.
64
+ * @throws {RequiredError}
65
+ */
66
+ parkInitDept: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
67
+ /**
68
+ *
69
+ * @summary 园区初始化-角色
70
+ * @param {number} parkId
71
+ * @param {*} [options] Override http request option.
72
+ * @throws {RequiredError}
73
+ */
74
+ parkInitRole: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
75
+ /**
76
+ *
77
+ * @summary 园区初始化-工单部门查看权限
78
+ * @param {number} parkId
79
+ * @param {*} [options] Override http request option.
80
+ * @throws {RequiredError}
81
+ */
82
+ parkInitWorkOrderDeptSettings: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83
+ /**
84
+ *
85
+ * @summary 园区初始化-工单问题类型执行时效
86
+ * @param {number} parkId
87
+ * @param {*} [options] Override http request option.
88
+ * @throws {RequiredError}
89
+ */
90
+ parkInitWorkOrderIssueTypeExecutionTimeSettings: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
91
+ /**
92
+ *
93
+ * @summary 园区初始化-工单问题类型部门
94
+ * @param {number} parkId
95
+ * @param {*} [options] Override http request option.
96
+ * @throws {RequiredError}
97
+ */
98
+ parkInitWorkOrderIssueTypeSettings: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
50
99
  /**
51
100
  *
52
101
  * @summary 查询列表
@@ -89,6 +138,54 @@ export declare const ParkApiFp: (configuration?: Configuration) => {
89
138
  * @throws {RequiredError}
90
139
  */
91
140
  deptConfigSelectByParkAndKey(deptId: number, configKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
141
+ /**
142
+ *
143
+ * @summary 园区初始化
144
+ * @param {number} parkId
145
+ * @param {*} [options] Override http request option.
146
+ * @throws {RequiredError}
147
+ */
148
+ parkInit(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
149
+ /**
150
+ *
151
+ * @summary 园区初始化-部门
152
+ * @param {number} parkId
153
+ * @param {*} [options] Override http request option.
154
+ * @throws {RequiredError}
155
+ */
156
+ parkInitDept(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
157
+ /**
158
+ *
159
+ * @summary 园区初始化-角色
160
+ * @param {number} parkId
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ parkInitRole(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
165
+ /**
166
+ *
167
+ * @summary 园区初始化-工单部门查看权限
168
+ * @param {number} parkId
169
+ * @param {*} [options] Override http request option.
170
+ * @throws {RequiredError}
171
+ */
172
+ parkInitWorkOrderDeptSettings(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
173
+ /**
174
+ *
175
+ * @summary 园区初始化-工单问题类型执行时效
176
+ * @param {number} parkId
177
+ * @param {*} [options] Override http request option.
178
+ * @throws {RequiredError}
179
+ */
180
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
181
+ /**
182
+ *
183
+ * @summary 园区初始化-工单问题类型部门
184
+ * @param {number} parkId
185
+ * @param {*} [options] Override http request option.
186
+ * @throws {RequiredError}
187
+ */
188
+ parkInitWorkOrderIssueTypeSettings(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
92
189
  /**
93
190
  *
94
191
  * @summary 查询列表
@@ -127,6 +224,54 @@ export declare const ParkApiFactory: (configuration?: Configuration, basePath?:
127
224
  * @throws {RequiredError}
128
225
  */
129
226
  deptConfigSelectByParkAndKey(requestParameters: ParkApiDeptConfigSelectByParkAndKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
227
+ /**
228
+ *
229
+ * @summary 园区初始化
230
+ * @param {ParkApiParkInitRequest} requestParameters Request parameters.
231
+ * @param {*} [options] Override http request option.
232
+ * @throws {RequiredError}
233
+ */
234
+ parkInit(requestParameters: ParkApiParkInitRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
235
+ /**
236
+ *
237
+ * @summary 园区初始化-部门
238
+ * @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
239
+ * @param {*} [options] Override http request option.
240
+ * @throws {RequiredError}
241
+ */
242
+ parkInitDept(requestParameters: ParkApiParkInitDeptRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
243
+ /**
244
+ *
245
+ * @summary 园区初始化-角色
246
+ * @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
247
+ * @param {*} [options] Override http request option.
248
+ * @throws {RequiredError}
249
+ */
250
+ parkInitRole(requestParameters: ParkApiParkInitRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
251
+ /**
252
+ *
253
+ * @summary 园区初始化-工单部门查看权限
254
+ * @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
255
+ * @param {*} [options] Override http request option.
256
+ * @throws {RequiredError}
257
+ */
258
+ parkInitWorkOrderDeptSettings(requestParameters: ParkApiParkInitWorkOrderDeptSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
259
+ /**
260
+ *
261
+ * @summary 园区初始化-工单问题类型执行时效
262
+ * @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
263
+ * @param {*} [options] Override http request option.
264
+ * @throws {RequiredError}
265
+ */
266
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters: ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
267
+ /**
268
+ *
269
+ * @summary 园区初始化-工单问题类型部门
270
+ * @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
271
+ * @param {*} [options] Override http request option.
272
+ * @throws {RequiredError}
273
+ */
274
+ parkInitWorkOrderIssueTypeSettings(requestParameters: ParkApiParkInitWorkOrderIssueTypeSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
130
275
  /**
131
276
  *
132
277
  * @summary 查询列表
@@ -199,6 +344,84 @@ export interface ParkApiDeptConfigSelectByParkAndKeyRequest {
199
344
  */
200
345
  readonly configKey: string;
201
346
  }
347
+ /**
348
+ * Request parameters for parkInit operation in ParkApi.
349
+ * @export
350
+ * @interface ParkApiParkInitRequest
351
+ */
352
+ export interface ParkApiParkInitRequest {
353
+ /**
354
+ *
355
+ * @type {number}
356
+ * @memberof ParkApiParkInit
357
+ */
358
+ readonly parkId: number;
359
+ }
360
+ /**
361
+ * Request parameters for parkInitDept operation in ParkApi.
362
+ * @export
363
+ * @interface ParkApiParkInitDeptRequest
364
+ */
365
+ export interface ParkApiParkInitDeptRequest {
366
+ /**
367
+ *
368
+ * @type {number}
369
+ * @memberof ParkApiParkInitDept
370
+ */
371
+ readonly parkId: number;
372
+ }
373
+ /**
374
+ * Request parameters for parkInitRole operation in ParkApi.
375
+ * @export
376
+ * @interface ParkApiParkInitRoleRequest
377
+ */
378
+ export interface ParkApiParkInitRoleRequest {
379
+ /**
380
+ *
381
+ * @type {number}
382
+ * @memberof ParkApiParkInitRole
383
+ */
384
+ readonly parkId: number;
385
+ }
386
+ /**
387
+ * Request parameters for parkInitWorkOrderDeptSettings operation in ParkApi.
388
+ * @export
389
+ * @interface ParkApiParkInitWorkOrderDeptSettingsRequest
390
+ */
391
+ export interface ParkApiParkInitWorkOrderDeptSettingsRequest {
392
+ /**
393
+ *
394
+ * @type {number}
395
+ * @memberof ParkApiParkInitWorkOrderDeptSettings
396
+ */
397
+ readonly parkId: number;
398
+ }
399
+ /**
400
+ * Request parameters for parkInitWorkOrderIssueTypeExecutionTimeSettings operation in ParkApi.
401
+ * @export
402
+ * @interface ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest
403
+ */
404
+ export interface ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest {
405
+ /**
406
+ *
407
+ * @type {number}
408
+ * @memberof ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettings
409
+ */
410
+ readonly parkId: number;
411
+ }
412
+ /**
413
+ * Request parameters for parkInitWorkOrderIssueTypeSettings operation in ParkApi.
414
+ * @export
415
+ * @interface ParkApiParkInitWorkOrderIssueTypeSettingsRequest
416
+ */
417
+ export interface ParkApiParkInitWorkOrderIssueTypeSettingsRequest {
418
+ /**
419
+ *
420
+ * @type {number}
421
+ * @memberof ParkApiParkInitWorkOrderIssueTypeSettings
422
+ */
423
+ readonly parkId: number;
424
+ }
202
425
  /**
203
426
  * Request parameters for selectList operation in ParkApi.
204
427
  * @export
@@ -246,6 +469,60 @@ export declare class ParkApi extends BaseAPI {
246
469
  * @memberof ParkApi
247
470
  */
248
471
  deptConfigSelectByParkAndKey(requestParameters: ParkApiDeptConfigSelectByParkAndKeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
472
+ /**
473
+ *
474
+ * @summary 园区初始化
475
+ * @param {ParkApiParkInitRequest} requestParameters Request parameters.
476
+ * @param {*} [options] Override http request option.
477
+ * @throws {RequiredError}
478
+ * @memberof ParkApi
479
+ */
480
+ parkInit(requestParameters: ParkApiParkInitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
481
+ /**
482
+ *
483
+ * @summary 园区初始化-部门
484
+ * @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
485
+ * @param {*} [options] Override http request option.
486
+ * @throws {RequiredError}
487
+ * @memberof ParkApi
488
+ */
489
+ parkInitDept(requestParameters: ParkApiParkInitDeptRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
490
+ /**
491
+ *
492
+ * @summary 园区初始化-角色
493
+ * @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
494
+ * @param {*} [options] Override http request option.
495
+ * @throws {RequiredError}
496
+ * @memberof ParkApi
497
+ */
498
+ parkInitRole(requestParameters: ParkApiParkInitRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
499
+ /**
500
+ *
501
+ * @summary 园区初始化-工单部门查看权限
502
+ * @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
503
+ * @param {*} [options] Override http request option.
504
+ * @throws {RequiredError}
505
+ * @memberof ParkApi
506
+ */
507
+ parkInitWorkOrderDeptSettings(requestParameters: ParkApiParkInitWorkOrderDeptSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
508
+ /**
509
+ *
510
+ * @summary 园区初始化-工单问题类型执行时效
511
+ * @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
512
+ * @param {*} [options] Override http request option.
513
+ * @throws {RequiredError}
514
+ * @memberof ParkApi
515
+ */
516
+ parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters: ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
517
+ /**
518
+ *
519
+ * @summary 园区初始化-工单问题类型部门
520
+ * @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
521
+ * @param {*} [options] Override http request option.
522
+ * @throws {RequiredError}
523
+ * @memberof ParkApi
524
+ */
525
+ parkInitWorkOrderIssueTypeSettings(requestParameters: ParkApiParkInitWorkOrderIssueTypeSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
249
526
  /**
250
527
  *
251
528
  * @summary 查询列表