szpt-driver-api 1.0.70 → 1.0.71

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/auth.d.ts CHANGED
@@ -66,6 +66,11 @@ export declare class AccessoryStats {
66
66
  charging: boolean;
67
67
  /** 定位信息 */
68
68
  location: Point;
69
+ /**
70
+ * 心跳频率
71
+ * @format int32
72
+ */
73
+ locationFreq: number;
69
74
  /** 是否在线 */
70
75
  online: boolean;
71
76
  /** 原始信息 */
@@ -150,6 +155,10 @@ export declare class ChangePasswordForm {
150
155
  newPassword?: string;
151
156
  oldPassword?: string;
152
157
  }
158
+ export declare class CheckInDeptAreaResult {
159
+ /** 是否在部门辖区范围 */
160
+ inDeptArea: boolean;
161
+ }
153
162
  export declare class CheckResponse {
154
163
  /** @format int64 */
155
164
  time: number;
@@ -169,6 +178,7 @@ export declare class ConfigReq {
169
178
  value?: any;
170
179
  }
171
180
  export declare class ConfigRes {
181
+ blank: boolean;
172
182
  external: boolean;
173
183
  inherit: boolean;
174
184
  key: string;
@@ -265,6 +275,7 @@ export declare class DepartmentCreateBean {
265
275
  export declare class DepartmentQueryBean {
266
276
  bmdm?: string[];
267
277
  business?: string;
278
+ businessIsEmpty?: boolean;
268
279
  disabled?: boolean;
269
280
  gabmdm?: string;
270
281
  id?: number[];
@@ -277,6 +288,7 @@ export declare class DepartmentQueryBean {
277
288
  parentBmdm?: string;
278
289
  /** @format int64 */
279
290
  parentId?: number;
291
+ parentIsNull?: boolean;
280
292
  xzqh?: string;
281
293
  }
282
294
  export declare class DepartmentSimple {
@@ -778,6 +790,8 @@ export declare class LedgerPushPlanEntity {
778
790
  /** 是否启用 */
779
791
  enable: boolean;
780
792
  errorMessage: string;
793
+ /** 候选IP */
794
+ fallbackIp: string;
781
795
  hasError: boolean;
782
796
  /** @format int64 */
783
797
  id: number;
@@ -1349,6 +1363,24 @@ export declare class PoliceUserUpdateBean {
1349
1363
  */
1350
1364
  sortIndex?: number;
1351
1365
  }
1366
+ export declare class ProcessStartBean {
1367
+ /** 流程业务编号 */
1368
+ businessKey?: string;
1369
+ /** 抄送人员列表 */
1370
+ ccTo?: string[];
1371
+ /** 流程启动部门,默认为当前用户部门 */
1372
+ department?: string;
1373
+ /** 业务编号重复时是否报错 */
1374
+ fallOnDuplicateBusinessKey?: boolean;
1375
+ /** 流程名称 */
1376
+ name?: string;
1377
+ /** 流程启动参数 */
1378
+ params?: any;
1379
+ /** 流程模版Key */
1380
+ processDefinitionKey?: string;
1381
+ /** 流程启动用户,默认为当前用户 */
1382
+ user?: string;
1383
+ }
1352
1384
  export declare class Province {
1353
1385
  /** 城市列表 */
1354
1386
  city: City[];
@@ -1449,6 +1481,14 @@ export declare class RoleCreateBean {
1449
1481
  /** @format int32 */
1450
1482
  sortIndex?: number;
1451
1483
  }
1484
+ export declare class RoleDepartmentExtraPermissionSetBean {
1485
+ /** 部门代码 */
1486
+ department?: string;
1487
+ /** 是否继承上级部门 */
1488
+ inherit?: boolean;
1489
+ /** 权限列表 */
1490
+ permissions?: string[];
1491
+ }
1452
1492
  export declare class RoleSimple {
1453
1493
  /** 说明 */
1454
1494
  description: string;
@@ -1517,6 +1557,22 @@ export declare class RoleUpdateBean {
1517
1557
  /** @format int32 */
1518
1558
  sortIndex?: number;
1519
1559
  }
1560
+ export declare class ScheduleCheckInRequest {
1561
+ /** @format double */
1562
+ latitude?: number;
1563
+ /** @format double */
1564
+ longitude?: number;
1565
+ onlyConsecutiveSchedule?: boolean;
1566
+ /** @format int64 */
1567
+ time?: number;
1568
+ }
1569
+ export declare class SdtaLoginForm {
1570
+ department?: string;
1571
+ idCardNumber?: string;
1572
+ realName?: string;
1573
+ userId?: string;
1574
+ username?: string;
1575
+ }
1520
1576
  export declare class SendMessageRequest {
1521
1577
  /** 内容 */
1522
1578
  content?: string;
@@ -1843,6 +1899,8 @@ export declare class UserLocationQueryBean {
1843
1899
  /** 根据手机号查询 */
1844
1900
  phone?: string;
1845
1901
  phoneLike?: string;
1902
+ /** 根据警号批量查询 */
1903
+ policeCodeIn?: string[];
1846
1904
  /** 根据警号模糊查询 */
1847
1905
  policeCodeLike?: string;
1848
1906
  /**
@@ -1852,8 +1910,12 @@ export declare class UserLocationQueryBean {
1852
1910
  policeId?: number;
1853
1911
  /** 根据警员类型查询 */
1854
1912
  policeType?: string;
1913
+ /** 根据警员类型查询(批量) */
1914
+ policeTypeIn?: string[];
1855
1915
  /** 根据姓名查询 */
1856
1916
  realName?: string;
1917
+ /** 根据姓名批量查询 */
1918
+ realNameIn?: string[];
1857
1919
  realNameLike?: string;
1858
1920
  /**
1859
1921
  * 根据角色id查询
@@ -2010,6 +2072,8 @@ export declare class UserQueryBean {
2010
2072
  /** 根据手机号查询 */
2011
2073
  phone?: string;
2012
2074
  phoneLike?: string;
2075
+ /** 根据警号批量查询 */
2076
+ policeCodeIn?: string[];
2013
2077
  /** 根据警号模糊查询 */
2014
2078
  policeCodeLike?: string;
2015
2079
  /**
@@ -2019,8 +2083,12 @@ export declare class UserQueryBean {
2019
2083
  policeId?: number;
2020
2084
  /** 根据警员类型查询 */
2021
2085
  policeType?: string;
2086
+ /** 根据警员类型查询(批量) */
2087
+ policeTypeIn?: string[];
2022
2088
  /** 根据姓名查询 */
2023
2089
  realName?: string;
2090
+ /** 根据姓名批量查询 */
2091
+ realNameIn?: string[];
2024
2092
  realNameLike?: string;
2025
2093
  /**
2026
2094
  * 根据角色id查询
@@ -2068,6 +2136,10 @@ export declare class UserSimpleEx {
2068
2136
  id: number;
2069
2137
  /** 身份证号 */
2070
2138
  idCardNumber: string;
2139
+ /** 最近登录IP */
2140
+ ip: string;
2141
+ /** 是否被删除 */
2142
+ isDeleted: boolean;
2071
2143
  /** 登录名 */
2072
2144
  loginName: string;
2073
2145
  /** 手机号 */
@@ -2091,6 +2163,11 @@ export declare class UserSimpleEx {
2091
2163
  roleId: number;
2092
2164
  /** 角色名称 */
2093
2165
  roleName: string;
2166
+ /**
2167
+ * 角色级别
2168
+ * @format int32
2169
+ */
2170
+ rolePriority: number;
2094
2171
  /** 用户名 */
2095
2172
  username: string;
2096
2173
  }
@@ -2123,6 +2200,10 @@ export declare class UserSimpleWithAuth {
2123
2200
  id: number;
2124
2201
  /** 身份证号 */
2125
2202
  idCardNumber: string;
2203
+ /** 最近登录IP */
2204
+ ip: string;
2205
+ /** 是否被删除 */
2206
+ isDeleted: boolean;
2126
2207
  /** 是否被锁定 */
2127
2208
  isLocked: boolean;
2128
2209
  /** 登录名 */
@@ -2155,6 +2236,11 @@ export declare class UserSimpleWithAuth {
2155
2236
  roleId: number;
2156
2237
  /** 角色名称 */
2157
2238
  roleName: string;
2239
+ /**
2240
+ * 角色级别
2241
+ * @format int32
2242
+ */
2243
+ rolePriority: number;
2158
2244
  /** 用户名 */
2159
2245
  username: string;
2160
2246
  }
@@ -2178,6 +2264,10 @@ export declare class UserSimpleWithLocation {
2178
2264
  id: number;
2179
2265
  /** 身份证号 */
2180
2266
  idCardNumber: string;
2267
+ /** 最近登录IP */
2268
+ ip: string;
2269
+ /** 是否被删除 */
2270
+ isDeleted: boolean;
2181
2271
  /** 定位信息 */
2182
2272
  location: UserLocation;
2183
2273
  /** 登录名 */
@@ -2203,6 +2293,11 @@ export declare class UserSimpleWithLocation {
2203
2293
  roleId: number;
2204
2294
  /** 角色名称 */
2205
2295
  roleName: string;
2296
+ /**
2297
+ * 角色级别
2298
+ * @format int32
2299
+ */
2300
+ rolePriority: number;
2206
2301
  /** 用户名 */
2207
2302
  username: string;
2208
2303
  }
@@ -2504,6 +2599,12 @@ export declare class ItemsParams {
2504
2599
  excludeDisabled?: boolean;
2505
2600
  /** name */
2506
2601
  name: string;
2602
+ /** orderByUsageFrequency */
2603
+ orderByUsageFrequency?: boolean;
2604
+ /** usageExtras */
2605
+ usageExtras?: string;
2606
+ /** usageScene */
2607
+ usageScene?: string;
2507
2608
  }
2508
2609
  export declare class WithItemsParams {
2509
2610
  /** department */
@@ -2859,6 +2960,18 @@ export declare class TraceOfMineParams {
2859
2960
  */
2860
2961
  pageSize?: number;
2861
2962
  }
2963
+ export declare class UserLocationCheckParams {
2964
+ /**
2965
+ * latitude
2966
+ * @format double
2967
+ */
2968
+ latitude: number;
2969
+ /**
2970
+ * longitude
2971
+ * @format double
2972
+ */
2973
+ longitude: number;
2974
+ }
2862
2975
  export declare class PutBindParams {
2863
2976
  /** accessorySn */
2864
2977
  accessorySn: string;
@@ -2877,6 +2990,7 @@ export declare class PutUnbindParams {
2877
2990
  export declare class GetDepartmentParams {
2878
2991
  bmdm?: string[];
2879
2992
  business?: string;
2993
+ businessIsEmpty?: boolean;
2880
2994
  disabled?: boolean;
2881
2995
  gabmdm?: string;
2882
2996
  id?: number[];
@@ -2889,11 +3003,14 @@ export declare class GetDepartmentParams {
2889
3003
  parentBmdm?: string;
2890
3004
  /** @format int64 */
2891
3005
  parentId?: number;
3006
+ parentIsNull?: boolean;
2892
3007
  xzqh?: string;
2893
3008
  }
2894
3009
  export declare class DepartmentAllChildrenBmdmByBmdmParams {
2895
3010
  /** 业务过滤 */
2896
3011
  business?: string;
3012
+ /** 业务为空 */
3013
+ businessIsEmpty?: boolean;
2897
3014
  /** 是否禁用 */
2898
3015
  disabled?: boolean;
2899
3016
  /** bmdm */
@@ -2908,6 +3025,8 @@ export declare class DepartmentAreasByBmdmParams {
2908
3025
  export declare class DepartmentChildrenByBmdmParams {
2909
3026
  /** 业务过滤 */
2910
3027
  business?: string;
3028
+ /** 业务为空 */
3029
+ businessIsEmpty?: boolean;
2911
3030
  /** 是否禁用 */
2912
3031
  disabled?: boolean;
2913
3032
  /** bmdm */
@@ -2916,6 +3035,8 @@ export declare class DepartmentChildrenByBmdmParams {
2916
3035
  export declare class DepartmentTreeByBmdmParams {
2917
3036
  /** 业务过滤 */
2918
3037
  business?: string;
3038
+ /** 业务为空 */
3039
+ businessIsEmpty?: boolean;
2919
3040
  /** 是否禁用 */
2920
3041
  disabled?: boolean;
2921
3042
  /** bmdm */
@@ -2924,6 +3045,7 @@ export declare class DepartmentTreeByBmdmParams {
2924
3045
  export declare class DepartmentExistParams {
2925
3046
  bmdm?: string[];
2926
3047
  business?: string;
3048
+ businessIsEmpty?: boolean;
2927
3049
  disabled?: boolean;
2928
3050
  gabmdm?: string;
2929
3051
  id?: number[];
@@ -2936,11 +3058,14 @@ export declare class DepartmentExistParams {
2936
3058
  parentBmdm?: string;
2937
3059
  /** @format int64 */
2938
3060
  parentId?: number;
3061
+ parentIsNull?: boolean;
2939
3062
  xzqh?: string;
2940
3063
  }
2941
3064
  export declare class DepartmentTreeParams {
2942
3065
  /** 业务过滤 */
2943
3066
  business?: string;
3067
+ /** 业务为空 */
3068
+ businessIsEmpty?: boolean;
2944
3069
  /** 是否禁用 */
2945
3070
  disabled?: boolean;
2946
3071
  /**
@@ -2961,6 +3086,8 @@ export declare class DeleteDepartmentByIdParams {
2961
3086
  export declare class DepartmentChildrenByIdParams {
2962
3087
  /** 业务过滤 */
2963
3088
  business?: string;
3089
+ /** 业务为空 */
3090
+ businessIsEmpty?: boolean;
2964
3091
  /** 是否禁用 */
2965
3092
  disabled?: boolean;
2966
3093
  /**
@@ -3080,11 +3207,19 @@ export declare class ExistParams {
3080
3207
  export declare class ThirdPlatformTrustwayPortalLoginByAppIdParams {
3081
3208
  /** back */
3082
3209
  back: string;
3210
+ /** external */
3211
+ external?: boolean;
3083
3212
  /** ticket */
3084
3213
  ticket: string;
3085
3214
  /** appId */
3086
3215
  appId: string;
3087
3216
  }
3217
+ export declare class ThirdPlatformZjzzLoginByAppIdParams {
3218
+ /** external */
3219
+ external?: boolean;
3220
+ /** appId */
3221
+ appId: string;
3222
+ }
3088
3223
  export declare class ThirdPlatformHomeByIdParams {
3089
3224
  /** path */
3090
3225
  path?: string;
@@ -3120,7 +3255,7 @@ export declare class GetRoleParams {
3120
3255
  scope?: string;
3121
3256
  type?: "Auditing" | "Common" | "Security" | "System" | "Work";
3122
3257
  }
3123
- export declare class ExistParams8 {
3258
+ export declare class ExistParams6 {
3124
3259
  /** @format int64 */
3125
3260
  createUser?: number;
3126
3261
  descriptionLike?: string;
@@ -3200,6 +3335,19 @@ export declare class ListSimpleParams {
3200
3335
  scope?: string;
3201
3336
  type?: "Auditing" | "Common" | "Security" | "System" | "Work";
3202
3337
  }
3338
+ export declare class GetDepartmentExtraPermissionsByIdParams {
3339
+ /** department */
3340
+ department: string;
3341
+ /**
3342
+ * id
3343
+ * @format int64
3344
+ */
3345
+ id: number;
3346
+ }
3347
+ export declare class ClearIpLimitParams {
3348
+ /** ip */
3349
+ ip: string;
3350
+ }
3203
3351
  export declare class SendLoginVerifyCodeParams {
3204
3352
  /** accessorySn */
3205
3353
  accessorySn: string;
@@ -3291,7 +3439,7 @@ export declare class ToOssParams {
3291
3439
  export declare class UploadPayload {
3292
3440
  file?: File;
3293
3441
  }
3294
- export declare class ByIdParams5 {
3442
+ export declare class ByIdParams1 {
3295
3443
  /** format */
3296
3444
  format?: string;
3297
3445
  /** id */
@@ -3316,6 +3464,10 @@ export declare class ThumbnailByIdParams {
3316
3464
  /** id */
3317
3465
  id: string;
3318
3466
  }
3467
+ export declare class ProxyByIspParams {
3468
+ /** encrypt */
3469
+ encrypt?: boolean;
3470
+ }
3319
3471
  export declare type ProxyPushHandlerDepartmentPayload = Department[];
3320
3472
  export declare type ProxyPushHandlerDepartmentConfigPayload = DepartmentConfig[];
3321
3473
  export declare class ProxyPushHandlerDepartmentConfigParams {
@@ -3468,6 +3620,8 @@ export declare class GetUserParams {
3468
3620
  /** 根据手机号查询 */
3469
3621
  phone?: string;
3470
3622
  phoneLike?: string;
3623
+ /** 根据警号批量查询 */
3624
+ policeCodeIn?: string[];
3471
3625
  /** 根据警号模糊查询 */
3472
3626
  policeCodeLike?: string;
3473
3627
  /**
@@ -3477,8 +3631,12 @@ export declare class GetUserParams {
3477
3631
  policeId?: number;
3478
3632
  /** 根据警员类型查询 */
3479
3633
  policeType?: string;
3634
+ /** 根据警员类型查询(批量) */
3635
+ policeTypeIn?: string[];
3480
3636
  /** 根据姓名查询 */
3481
3637
  realName?: string;
3638
+ /** 根据姓名批量查询 */
3639
+ realNameIn?: string[];
3482
3640
  realNameLike?: string;
3483
3641
  /**
3484
3642
  * 根据角色id查询
@@ -3650,6 +3808,8 @@ export declare class ExistParams2 {
3650
3808
  /** 根据手机号查询 */
3651
3809
  phone?: string;
3652
3810
  phoneLike?: string;
3811
+ /** 根据警号批量查询 */
3812
+ policeCodeIn?: string[];
3653
3813
  /** 根据警号模糊查询 */
3654
3814
  policeCodeLike?: string;
3655
3815
  /**
@@ -3659,8 +3819,12 @@ export declare class ExistParams2 {
3659
3819
  policeId?: number;
3660
3820
  /** 根据警员类型查询 */
3661
3821
  policeType?: string;
3822
+ /** 根据警员类型查询(批量) */
3823
+ policeTypeIn?: string[];
3662
3824
  /** 根据姓名查询 */
3663
3825
  realName?: string;
3826
+ /** 根据姓名批量查询 */
3827
+ realNameIn?: string[];
3664
3828
  realNameLike?: string;
3665
3829
  /**
3666
3830
  * 根据角色id查询
@@ -3739,6 +3903,8 @@ export declare class GetListParams {
3739
3903
  /** 根据手机号查询 */
3740
3904
  phone?: string;
3741
3905
  phoneLike?: string;
3906
+ /** 根据警号批量查询 */
3907
+ policeCodeIn?: string[];
3742
3908
  /** 根据警号模糊查询 */
3743
3909
  policeCodeLike?: string;
3744
3910
  /**
@@ -3748,8 +3914,12 @@ export declare class GetListParams {
3748
3914
  policeId?: number;
3749
3915
  /** 根据警员类型查询 */
3750
3916
  policeType?: string;
3917
+ /** 根据警员类型查询(批量) */
3918
+ policeTypeIn?: string[];
3751
3919
  /** 根据姓名查询 */
3752
3920
  realName?: string;
3921
+ /** 根据姓名批量查询 */
3922
+ realNameIn?: string[];
3753
3923
  realNameLike?: string;
3754
3924
  /**
3755
3925
  * 根据角色id查询
@@ -3819,7 +3989,7 @@ interface HttpClient {
3819
3989
  }
3820
3990
  /**
3821
3991
  * @title 授权服务
3822
- * @version 1.2.31
3992
+ * @version 1.2.39
3823
3993
  * @baseUrl //192.168.200.12:5000
3824
3994
  *
3825
3995
  * 授权服务
@@ -5019,6 +5189,19 @@ declare class Api {
5019
5189
  * @response `404` `void` Not Found
5020
5190
  */
5021
5191
  userAlarmsByUsername: (username: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<LocationAlarmObject[]>;
5192
+ /**
5193
+ * No description
5194
+ *
5195
+ * @tags location
5196
+ * @name UserLocationCheck
5197
+ * @summary 判定定位
5198
+ * @request GET:/auth/location/user-location/check
5199
+ * @response `200` `CheckInDeptAreaResult` OK
5200
+ * @response `401` `void` Unauthorized
5201
+ * @response `403` `void` Forbidden
5202
+ * @response `404` `void` Not Found
5203
+ */
5204
+ userLocationCheck: (query: UserLocationCheckParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<CheckInDeptAreaResult>;
5022
5205
  };
5023
5206
  login: {
5024
5207
  /**
@@ -5983,6 +6166,76 @@ declare class Api {
5983
6166
  * @response `404` `void` Not Found
5984
6167
  */
5985
6168
  processAskForExtendUserExpireDuration: (data: AskForExtendUserExpireDurationRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6169
+ /**
6170
+ * No description
6171
+ *
6172
+ * @tags public
6173
+ * @name ThirdPlatformSdtaBpmnProcessStart
6174
+ * @summary 开启流程
6175
+ * @request POST:/auth/public/third-platform/sdta/bpmn/process/start
6176
+ * @response `200` `AppRestResponse` OK
6177
+ * @response `201` `void` Created
6178
+ * @response `401` `void` Unauthorized
6179
+ * @response `403` `void` Forbidden
6180
+ * @response `404` `void` Not Found
6181
+ */
6182
+ thirdPlatformSdtaBpmnProcessStart: (request: ProcessStartBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6183
+ /**
6184
+ * No description
6185
+ *
6186
+ * @tags public
6187
+ * @name ThirdPlatformSdtaDutyScheduleCheckInToday
6188
+ * @summary 今日排班签到
6189
+ * @request POST:/auth/public/third-platform/sdta/duty/schedule/check-in-today
6190
+ * @response `200` `AppRestResponse` OK
6191
+ * @response `201` `void` Created
6192
+ * @response `401` `void` Unauthorized
6193
+ * @response `403` `void` Forbidden
6194
+ * @response `404` `void` Not Found
6195
+ */
6196
+ thirdPlatformSdtaDutyScheduleCheckInToday: (request: ScheduleCheckInRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6197
+ /**
6198
+ * No description
6199
+ *
6200
+ * @tags public
6201
+ * @name ThirdPlatformSdtaDutyScheduleCheckOutToday
6202
+ * @summary 今日排班签退
6203
+ * @request POST:/auth/public/third-platform/sdta/duty/schedule/check-out-today
6204
+ * @response `200` `AppRestResponse` OK
6205
+ * @response `201` `void` Created
6206
+ * @response `401` `void` Unauthorized
6207
+ * @response `403` `void` Forbidden
6208
+ * @response `404` `void` Not Found
6209
+ */
6210
+ thirdPlatformSdtaDutyScheduleCheckOutToday: (request: ScheduleCheckInRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6211
+ /**
6212
+ * No description
6213
+ *
6214
+ * @tags public
6215
+ * @name ThirdPlatformSdtaLocationUpload
6216
+ * @summary 定位上传
6217
+ * @request POST:/auth/public/third-platform/sdta/location-upload
6218
+ * @response `200` `AppRestResponse` OK
6219
+ * @response `201` `void` Created
6220
+ * @response `401` `void` Unauthorized
6221
+ * @response `403` `void` Forbidden
6222
+ * @response `404` `void` Not Found
6223
+ */
6224
+ thirdPlatformSdtaLocationUpload: (point: Point, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6225
+ /**
6226
+ * No description
6227
+ *
6228
+ * @tags public
6229
+ * @name ThirdPlatformSdtaLogin
6230
+ * @summary APP登录接口
6231
+ * @request POST:/auth/public/third-platform/sdta/login
6232
+ * @response `200` `LoginResponse` OK
6233
+ * @response `201` `void` Created
6234
+ * @response `401` `void` Unauthorized
6235
+ * @response `403` `void` Forbidden
6236
+ * @response `404` `void` Not Found
6237
+ */
6238
+ thirdPlatformSdtaLogin: (loginForm: SdtaLoginForm, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<LoginResponse>;
5986
6239
  /**
5987
6240
  * No description
5988
6241
  *
@@ -6024,6 +6277,19 @@ declare class Api {
6024
6277
  * @response `404` `void` Not Found
6025
6278
  */
6026
6279
  thirdPlatformTrustwayPortalLoginByAppId: ({ appId, ...query }: ThirdPlatformTrustwayPortalLoginByAppIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6280
+ /**
6281
+ * No description
6282
+ *
6283
+ * @tags public
6284
+ * @name ThirdPlatformZjzzLoginByAppId
6285
+ * @summary 浙警智治统一登录接口
6286
+ * @request GET:/auth/public/third-platform/zjzz/{appId}/login
6287
+ * @response `200` `void` OK
6288
+ * @response `401` `void` Unauthorized
6289
+ * @response `403` `void` Forbidden
6290
+ * @response `404` `void` Not Found
6291
+ */
6292
+ thirdPlatformZjzzLoginByAppId: ({ appId, ...query }: ThirdPlatformZjzzLoginByAppIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6027
6293
  /**
6028
6294
  * @description 仅支持IP白名单下的受控访问
6029
6295
  *
@@ -6106,7 +6372,7 @@ declare class Api {
6106
6372
  * @response `403` `void` Forbidden
6107
6373
  * @response `404` `void` Not Found
6108
6374
  */
6109
- exist: (query: ExistParams8, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
6375
+ exist: (query: ExistParams6, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
6110
6376
  /**
6111
6377
  * @description 所需权限:role:list
6112
6378
  *
@@ -6186,6 +6452,33 @@ declare class Api {
6186
6452
  * @response `403` `void` Forbidden
6187
6453
  */
6188
6454
  deleteById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6455
+ /**
6456
+ * @description 所需权限:role:find
6457
+ *
6458
+ * @tags role
6459
+ * @name GetDepartmentExtraPermissionsById
6460
+ * @summary 获取角色部门额外权限
6461
+ * @request GET:/auth/role/{id}/department-extra-permissions
6462
+ * @response `200` `DepartmentConfig` OK
6463
+ * @response `401` `void` Unauthorized
6464
+ * @response `403` `void` Forbidden
6465
+ * @response `404` `void` Not Found
6466
+ */
6467
+ getDepartmentExtraPermissionsById: ({ id, ...query }: GetDepartmentExtraPermissionsByIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DepartmentConfig>;
6468
+ /**
6469
+ * @description 所需权限:role:update
6470
+ *
6471
+ * @tags role
6472
+ * @name PutDepartmentExtraPermissionsById
6473
+ * @summary 对角色设置部门额外权限
6474
+ * @request PUT:/auth/role/{id}/department-extra-permissions
6475
+ * @response `200` `void` OK
6476
+ * @response `201` `void` Created
6477
+ * @response `401` `void` Unauthorized
6478
+ * @response `403` `void` Forbidden
6479
+ * @response `404` `void` Not Found
6480
+ */
6481
+ putDepartmentExtraPermissionsById: (id: number, bean: RoleDepartmentExtraPermissionSetBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6189
6482
  };
6190
6483
  security: {
6191
6484
  /**
@@ -6228,6 +6521,20 @@ declare class Api {
6228
6521
  * @response `403` `void` Forbidden
6229
6522
  */
6230
6523
  deleteAccessKeyByAk: (ak: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6524
+ /**
6525
+ * No description
6526
+ *
6527
+ * @tags security
6528
+ * @name ClearIpLimit
6529
+ * @summary 清除IP封锁限制
6530
+ * @request POST:/auth/security/clear-ip-limit
6531
+ * @response `200` `void` OK
6532
+ * @response `201` `void` Created
6533
+ * @response `401` `void` Unauthorized
6534
+ * @response `403` `void` Forbidden
6535
+ * @response `404` `void` Not Found
6536
+ */
6537
+ clearIpLimit: (query: ClearIpLimitParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6231
6538
  };
6232
6539
  sendLoginVerifyCode: {
6233
6540
  /**
@@ -6301,7 +6608,7 @@ declare class Api {
6301
6608
  */
6302
6609
  postConfigAuth: (configs: object, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6303
6610
  /**
6304
- * @description 所需权限:user:self:config:read
6611
+ * No description
6305
6612
  *
6306
6613
  * @tags settings
6307
6614
  * @name GetConfigCurrentUser
@@ -6314,11 +6621,11 @@ declare class Api {
6314
6621
  */
6315
6622
  getConfigCurrentUser: (query: GetConfigCurrentUserParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<any>;
6316
6623
  /**
6317
- * @description 所需权限:user:self:config:write
6624
+ * No description
6318
6625
  *
6319
6626
  * @tags settings
6320
6627
  * @name PostConfigCurrentUser
6321
- * @summary 写入当前用户配置
6628
+ * @summary writeUserSelfConfig
6322
6629
  * @request POST:/auth/settings/config/current-user
6323
6630
  * @response `200` `void` OK
6324
6631
  * @response `201` `void` Created
@@ -6678,7 +6985,7 @@ declare class Api {
6678
6985
  * @response `403` `void` Forbidden
6679
6986
  * @response `404` `void` Not Found
6680
6987
  */
6681
- byId: ({ id, ...query }: ByIdParams5, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
6988
+ byId: ({ id, ...query }: ByIdParams1, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
6682
6989
  /**
6683
6990
  * No description
6684
6991
  *
@@ -6726,7 +7033,7 @@ declare class Api {
6726
7033
  };
6727
7034
  sync: {
6728
7035
  /**
6729
- * @description 所需权限:supreme:all
7036
+ * No description
6730
7037
  *
6731
7038
  * @tags sync
6732
7039
  * @name CommonDepartmentConfigKeys
@@ -6753,7 +7060,7 @@ declare class Api {
6753
7060
  */
6754
7061
  departmentByBmdm: (bmdm: string, hint: SyncDepartmentHint, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6755
7062
  /**
6756
- * @description 所需权限:supreme:all
7063
+ * No description
6757
7064
  *
6758
7065
  * @tags sync
6759
7066
  * @name Proxy
@@ -6767,7 +7074,7 @@ declare class Api {
6767
7074
  */
6768
7075
  proxy: (request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
6769
7076
  /**
6770
- * @description 所需权限:supreme:all
7077
+ * No description
6771
7078
  *
6772
7079
  * @tags sync
6773
7080
  * @name ProxyByIsp
@@ -6779,7 +7086,7 @@ declare class Api {
6779
7086
  * @response `403` `void` Forbidden
6780
7087
  * @response `404` `void` Not Found
6781
7088
  */
6782
- proxyByIsp: (request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
7089
+ proxyByIsp: (query: ProxyByIspParams, request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
6783
7090
  /**
6784
7091
  * @description 所需权限:department:admin、supreme:all (OR)
6785
7092
  *
@@ -7506,6 +7813,7 @@ declare class Api {
7506
7813
  * @name ListSimpleByRealname
7507
7814
  * @summary 根据用户姓名批量获取用户简项信息
7508
7815
  * @request POST:/auth/user/list/simple-by-realname
7816
+ * @deprecated
7509
7817
  * @response `200` `(UserSimpleEx)[]` OK
7510
7818
  * @response `201` `void` Created
7511
7819
  * @response `401` `void` Unauthorized