szpt-driver-api 1.0.70 → 1.0.72

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;
@@ -1292,6 +1306,8 @@ export declare class PoliceUserCreateBean {
1292
1306
  * @format int32
1293
1307
  */
1294
1308
  sortIndex?: number;
1309
+ /** 用户额外信息 */
1310
+ userProfileAdditional?: UserProfileAdditional;
1295
1311
  }
1296
1312
  export declare class PoliceUserUpdateBean {
1297
1313
  /** 头像 */
@@ -1348,6 +1364,26 @@ export declare class PoliceUserUpdateBean {
1348
1364
  * @format int32
1349
1365
  */
1350
1366
  sortIndex?: number;
1367
+ /** 用户额外信息 */
1368
+ userProfileAdditional?: UserProfileAdditional;
1369
+ }
1370
+ export declare class ProcessStartBean {
1371
+ /** 流程业务编号 */
1372
+ businessKey?: string;
1373
+ /** 抄送人员列表 */
1374
+ ccTo?: string[];
1375
+ /** 流程启动部门,默认为当前用户部门 */
1376
+ department?: string;
1377
+ /** 业务编号重复时是否报错 */
1378
+ fallOnDuplicateBusinessKey?: boolean;
1379
+ /** 流程名称 */
1380
+ name?: string;
1381
+ /** 流程启动参数 */
1382
+ params?: any;
1383
+ /** 流程模版Key */
1384
+ processDefinitionKey?: string;
1385
+ /** 流程启动用户,默认为当前用户 */
1386
+ user?: string;
1351
1387
  }
1352
1388
  export declare class Province {
1353
1389
  /** 城市列表 */
@@ -1449,6 +1485,14 @@ export declare class RoleCreateBean {
1449
1485
  /** @format int32 */
1450
1486
  sortIndex?: number;
1451
1487
  }
1488
+ export declare class RoleDepartmentExtraPermissionSetBean {
1489
+ /** 部门代码 */
1490
+ department?: string;
1491
+ /** 是否继承上级部门 */
1492
+ inherit?: boolean;
1493
+ /** 权限列表 */
1494
+ permissions?: string[];
1495
+ }
1452
1496
  export declare class RoleSimple {
1453
1497
  /** 说明 */
1454
1498
  description: string;
@@ -1517,6 +1561,22 @@ export declare class RoleUpdateBean {
1517
1561
  /** @format int32 */
1518
1562
  sortIndex?: number;
1519
1563
  }
1564
+ export declare class ScheduleCheckInRequest {
1565
+ /** @format double */
1566
+ latitude?: number;
1567
+ /** @format double */
1568
+ longitude?: number;
1569
+ onlyConsecutiveSchedule?: boolean;
1570
+ /** @format int64 */
1571
+ time?: number;
1572
+ }
1573
+ export declare class SdtaLoginForm {
1574
+ department?: string;
1575
+ idCardNumber?: string;
1576
+ realName?: string;
1577
+ userId?: string;
1578
+ username?: string;
1579
+ }
1520
1580
  export declare class SendMessageRequest {
1521
1581
  /** 内容 */
1522
1582
  content?: string;
@@ -1537,7 +1597,7 @@ export declare class SendResponse {
1537
1597
  }
1538
1598
  export declare class SmsVerifyCheckRequest {
1539
1599
  /** 动作标识 */
1540
- action?: "Common" | "Login" | "ResetPassword";
1600
+ action?: "Common" | "ExternalUserLogin" | "Login" | "ResetPassword";
1541
1601
  /** 验证码 */
1542
1602
  code?: string;
1543
1603
  /** 手机号 */
@@ -1692,6 +1752,8 @@ export declare class UserAccessoryLoginForm {
1692
1752
  messageRequestId?: string;
1693
1753
  }
1694
1754
  export declare class UserBatchUpdateBean {
1755
+ /** @format int64 */
1756
+ departmentId?: number;
1695
1757
  ids?: number[];
1696
1758
  /** @format int64 */
1697
1759
  passwordExpire?: number;
@@ -1719,6 +1781,11 @@ export declare class UserConfigs {
1719
1781
  export declare class UserCreateBean {
1720
1782
  /** 头像 */
1721
1783
  avatar?: string;
1784
+ /**
1785
+ * 关联部门ID
1786
+ * @format int64
1787
+ */
1788
+ departmentId?: number;
1722
1789
  /** Email */
1723
1790
  email?: string;
1724
1791
  /**
@@ -1753,6 +1820,8 @@ export declare class UserCreateBean {
1753
1820
  * @format int64
1754
1821
  */
1755
1822
  roleId?: number;
1823
+ /** 用户额外信息 */
1824
+ userProfileAdditional?: UserProfileAdditional;
1756
1825
  }
1757
1826
  export declare class UserLocation {
1758
1827
  /** @format double */
@@ -1843,6 +1912,8 @@ export declare class UserLocationQueryBean {
1843
1912
  /** 根据手机号查询 */
1844
1913
  phone?: string;
1845
1914
  phoneLike?: string;
1915
+ /** 根据警号批量查询 */
1916
+ policeCodeIn?: string[];
1846
1917
  /** 根据警号模糊查询 */
1847
1918
  policeCodeLike?: string;
1848
1919
  /**
@@ -1852,8 +1923,12 @@ export declare class UserLocationQueryBean {
1852
1923
  policeId?: number;
1853
1924
  /** 根据警员类型查询 */
1854
1925
  policeType?: string;
1926
+ /** 根据警员类型查询(批量) */
1927
+ policeTypeIn?: string[];
1855
1928
  /** 根据姓名查询 */
1856
1929
  realName?: string;
1930
+ /** 根据姓名批量查询 */
1931
+ realNameIn?: string[];
1857
1932
  realNameLike?: string;
1858
1933
  /**
1859
1934
  * 根据角色id查询
@@ -1890,6 +1965,8 @@ export declare class UserOnlineTimeRanges {
1890
1965
  username: string;
1891
1966
  }
1892
1967
  export declare class UserOrganizationUpdateBean {
1968
+ /** @format int64 */
1969
+ departmentId?: number;
1893
1970
  /** @format int64 */
1894
1971
  id?: number;
1895
1972
  /** @format int64 */
@@ -1906,6 +1983,7 @@ export declare class UserPhoneLoginForm {
1906
1983
  phone?: string;
1907
1984
  }
1908
1985
  export declare class UserProfile {
1986
+ additional: UserProfileAdditional;
1909
1987
  avatar: string;
1910
1988
  department: Department;
1911
1989
  digest: EntityDigest;
@@ -1921,7 +1999,31 @@ export declare class UserProfile {
1921
1999
  realName: string;
1922
2000
  role: Role;
1923
2001
  }
2002
+ export declare class UserProfileAdditional {
2003
+ /** 现居地址 */
2004
+ address: string;
2005
+ /** 银行卡名称 */
2006
+ bankAccountName: string;
2007
+ /** 银行卡号 */
2008
+ bankAccountNumber: string;
2009
+ /** 通讯地址 */
2010
+ contactAddress: string;
2011
+ /** 紧急联系人 */
2012
+ emergencyContact: string;
2013
+ /** 紧急联系人电话 */
2014
+ emergencyContactPhone: string;
2015
+ /** 人脸正面照片 */
2016
+ facePicture: string;
2017
+ /** 家庭住址 */
2018
+ homeAddress: string;
2019
+ /** 身份证反面照片 */
2020
+ idCardBackPicture: string;
2021
+ /** 身份证正面照片 */
2022
+ idCardFrontPicture: string;
2023
+ }
1924
2024
  export declare class UserProfileUpdateBean {
2025
+ /** 用户额外信息 */
2026
+ additional?: UserProfileAdditional;
1925
2027
  avatar?: string;
1926
2028
  email?: string;
1927
2029
  gender?: "Female" | "Male" | "Other" | "Unknown";
@@ -2010,6 +2112,8 @@ export declare class UserQueryBean {
2010
2112
  /** 根据手机号查询 */
2011
2113
  phone?: string;
2012
2114
  phoneLike?: string;
2115
+ /** 根据警号批量查询 */
2116
+ policeCodeIn?: string[];
2013
2117
  /** 根据警号模糊查询 */
2014
2118
  policeCodeLike?: string;
2015
2119
  /**
@@ -2019,8 +2123,12 @@ export declare class UserQueryBean {
2019
2123
  policeId?: number;
2020
2124
  /** 根据警员类型查询 */
2021
2125
  policeType?: string;
2126
+ /** 根据警员类型查询(批量) */
2127
+ policeTypeIn?: string[];
2022
2128
  /** 根据姓名查询 */
2023
2129
  realName?: string;
2130
+ /** 根据姓名批量查询 */
2131
+ realNameIn?: string[];
2024
2132
  realNameLike?: string;
2025
2133
  /**
2026
2134
  * 根据角色id查询
@@ -2068,6 +2176,10 @@ export declare class UserSimpleEx {
2068
2176
  id: number;
2069
2177
  /** 身份证号 */
2070
2178
  idCardNumber: string;
2179
+ /** 最近登录IP */
2180
+ ip: string;
2181
+ /** 是否被删除 */
2182
+ isDeleted: boolean;
2071
2183
  /** 登录名 */
2072
2184
  loginName: string;
2073
2185
  /** 手机号 */
@@ -2091,6 +2203,11 @@ export declare class UserSimpleEx {
2091
2203
  roleId: number;
2092
2204
  /** 角色名称 */
2093
2205
  roleName: string;
2206
+ /**
2207
+ * 角色级别
2208
+ * @format int32
2209
+ */
2210
+ rolePriority: number;
2094
2211
  /** 用户名 */
2095
2212
  username: string;
2096
2213
  }
@@ -2123,6 +2240,10 @@ export declare class UserSimpleWithAuth {
2123
2240
  id: number;
2124
2241
  /** 身份证号 */
2125
2242
  idCardNumber: string;
2243
+ /** 最近登录IP */
2244
+ ip: string;
2245
+ /** 是否被删除 */
2246
+ isDeleted: boolean;
2126
2247
  /** 是否被锁定 */
2127
2248
  isLocked: boolean;
2128
2249
  /** 登录名 */
@@ -2155,6 +2276,11 @@ export declare class UserSimpleWithAuth {
2155
2276
  roleId: number;
2156
2277
  /** 角色名称 */
2157
2278
  roleName: string;
2279
+ /**
2280
+ * 角色级别
2281
+ * @format int32
2282
+ */
2283
+ rolePriority: number;
2158
2284
  /** 用户名 */
2159
2285
  username: string;
2160
2286
  }
@@ -2178,6 +2304,10 @@ export declare class UserSimpleWithLocation {
2178
2304
  id: number;
2179
2305
  /** 身份证号 */
2180
2306
  idCardNumber: string;
2307
+ /** 最近登录IP */
2308
+ ip: string;
2309
+ /** 是否被删除 */
2310
+ isDeleted: boolean;
2181
2311
  /** 定位信息 */
2182
2312
  location: UserLocation;
2183
2313
  /** 登录名 */
@@ -2203,6 +2333,11 @@ export declare class UserSimpleWithLocation {
2203
2333
  roleId: number;
2204
2334
  /** 角色名称 */
2205
2335
  roleName: string;
2336
+ /**
2337
+ * 角色级别
2338
+ * @format int32
2339
+ */
2340
+ rolePriority: number;
2206
2341
  /** 用户名 */
2207
2342
  username: string;
2208
2343
  }
@@ -2251,7 +2386,11 @@ export declare class UserTrackQuery {
2251
2386
  username?: string;
2252
2387
  }
2253
2388
  export declare class UserUpdateBean {
2389
+ /** 用户额外信息 */
2390
+ additional?: UserProfileAdditional;
2254
2391
  avatar?: string;
2392
+ /** @format int64 */
2393
+ departmentId?: number;
2255
2394
  email?: string;
2256
2395
  /** @format int64 */
2257
2396
  expire?: number;
@@ -2504,6 +2643,12 @@ export declare class ItemsParams {
2504
2643
  excludeDisabled?: boolean;
2505
2644
  /** name */
2506
2645
  name: string;
2646
+ /** orderByUsageFrequency */
2647
+ orderByUsageFrequency?: boolean;
2648
+ /** usageExtras */
2649
+ usageExtras?: string;
2650
+ /** usageScene */
2651
+ usageScene?: string;
2507
2652
  }
2508
2653
  export declare class WithItemsParams {
2509
2654
  /** department */
@@ -2859,6 +3004,18 @@ export declare class TraceOfMineParams {
2859
3004
  */
2860
3005
  pageSize?: number;
2861
3006
  }
3007
+ export declare class UserLocationCheckParams {
3008
+ /**
3009
+ * latitude
3010
+ * @format double
3011
+ */
3012
+ latitude: number;
3013
+ /**
3014
+ * longitude
3015
+ * @format double
3016
+ */
3017
+ longitude: number;
3018
+ }
2862
3019
  export declare class PutBindParams {
2863
3020
  /** accessorySn */
2864
3021
  accessorySn: string;
@@ -2877,6 +3034,7 @@ export declare class PutUnbindParams {
2877
3034
  export declare class GetDepartmentParams {
2878
3035
  bmdm?: string[];
2879
3036
  business?: string;
3037
+ businessIsEmpty?: boolean;
2880
3038
  disabled?: boolean;
2881
3039
  gabmdm?: string;
2882
3040
  id?: number[];
@@ -2889,11 +3047,14 @@ export declare class GetDepartmentParams {
2889
3047
  parentBmdm?: string;
2890
3048
  /** @format int64 */
2891
3049
  parentId?: number;
3050
+ parentIsNull?: boolean;
2892
3051
  xzqh?: string;
2893
3052
  }
2894
3053
  export declare class DepartmentAllChildrenBmdmByBmdmParams {
2895
3054
  /** 业务过滤 */
2896
3055
  business?: string;
3056
+ /** 业务为空 */
3057
+ businessIsEmpty?: boolean;
2897
3058
  /** 是否禁用 */
2898
3059
  disabled?: boolean;
2899
3060
  /** bmdm */
@@ -2908,6 +3069,8 @@ export declare class DepartmentAreasByBmdmParams {
2908
3069
  export declare class DepartmentChildrenByBmdmParams {
2909
3070
  /** 业务过滤 */
2910
3071
  business?: string;
3072
+ /** 业务为空 */
3073
+ businessIsEmpty?: boolean;
2911
3074
  /** 是否禁用 */
2912
3075
  disabled?: boolean;
2913
3076
  /** bmdm */
@@ -2916,6 +3079,8 @@ export declare class DepartmentChildrenByBmdmParams {
2916
3079
  export declare class DepartmentTreeByBmdmParams {
2917
3080
  /** 业务过滤 */
2918
3081
  business?: string;
3082
+ /** 业务为空 */
3083
+ businessIsEmpty?: boolean;
2919
3084
  /** 是否禁用 */
2920
3085
  disabled?: boolean;
2921
3086
  /** bmdm */
@@ -2924,6 +3089,7 @@ export declare class DepartmentTreeByBmdmParams {
2924
3089
  export declare class DepartmentExistParams {
2925
3090
  bmdm?: string[];
2926
3091
  business?: string;
3092
+ businessIsEmpty?: boolean;
2927
3093
  disabled?: boolean;
2928
3094
  gabmdm?: string;
2929
3095
  id?: number[];
@@ -2936,11 +3102,14 @@ export declare class DepartmentExistParams {
2936
3102
  parentBmdm?: string;
2937
3103
  /** @format int64 */
2938
3104
  parentId?: number;
3105
+ parentIsNull?: boolean;
2939
3106
  xzqh?: string;
2940
3107
  }
2941
3108
  export declare class DepartmentTreeParams {
2942
3109
  /** 业务过滤 */
2943
3110
  business?: string;
3111
+ /** 业务为空 */
3112
+ businessIsEmpty?: boolean;
2944
3113
  /** 是否禁用 */
2945
3114
  disabled?: boolean;
2946
3115
  /**
@@ -2961,6 +3130,8 @@ export declare class DeleteDepartmentByIdParams {
2961
3130
  export declare class DepartmentChildrenByIdParams {
2962
3131
  /** 业务过滤 */
2963
3132
  business?: string;
3133
+ /** 业务为空 */
3134
+ businessIsEmpty?: boolean;
2964
3135
  /** 是否禁用 */
2965
3136
  disabled?: boolean;
2966
3137
  /**
@@ -3080,11 +3251,19 @@ export declare class ExistParams {
3080
3251
  export declare class ThirdPlatformTrustwayPortalLoginByAppIdParams {
3081
3252
  /** back */
3082
3253
  back: string;
3254
+ /** external */
3255
+ external?: boolean;
3083
3256
  /** ticket */
3084
3257
  ticket: string;
3085
3258
  /** appId */
3086
3259
  appId: string;
3087
3260
  }
3261
+ export declare class ThirdPlatformZjzzLoginByAppIdParams {
3262
+ /** external */
3263
+ external?: boolean;
3264
+ /** appId */
3265
+ appId: string;
3266
+ }
3088
3267
  export declare class ThirdPlatformHomeByIdParams {
3089
3268
  /** path */
3090
3269
  path?: string;
@@ -3120,7 +3299,7 @@ export declare class GetRoleParams {
3120
3299
  scope?: string;
3121
3300
  type?: "Auditing" | "Common" | "Security" | "System" | "Work";
3122
3301
  }
3123
- export declare class ExistParams8 {
3302
+ export declare class ExistParams6 {
3124
3303
  /** @format int64 */
3125
3304
  createUser?: number;
3126
3305
  descriptionLike?: string;
@@ -3200,6 +3379,19 @@ export declare class ListSimpleParams {
3200
3379
  scope?: string;
3201
3380
  type?: "Auditing" | "Common" | "Security" | "System" | "Work";
3202
3381
  }
3382
+ export declare class GetDepartmentExtraPermissionsByIdParams {
3383
+ /** department */
3384
+ department: string;
3385
+ /**
3386
+ * id
3387
+ * @format int64
3388
+ */
3389
+ id: number;
3390
+ }
3391
+ export declare class ClearIpLimitParams {
3392
+ /** ip */
3393
+ ip: string;
3394
+ }
3203
3395
  export declare class SendLoginVerifyCodeParams {
3204
3396
  /** accessorySn */
3205
3397
  accessorySn: string;
@@ -3291,7 +3483,7 @@ export declare class ToOssParams {
3291
3483
  export declare class UploadPayload {
3292
3484
  file?: File;
3293
3485
  }
3294
- export declare class ByIdParams5 {
3486
+ export declare class ByIdParams10 {
3295
3487
  /** format */
3296
3488
  format?: string;
3297
3489
  /** id */
@@ -3316,6 +3508,10 @@ export declare class ThumbnailByIdParams {
3316
3508
  /** id */
3317
3509
  id: string;
3318
3510
  }
3511
+ export declare class ProxyByIspParams {
3512
+ /** encrypt */
3513
+ encrypt?: boolean;
3514
+ }
3319
3515
  export declare type ProxyPushHandlerDepartmentPayload = Department[];
3320
3516
  export declare type ProxyPushHandlerDepartmentConfigPayload = DepartmentConfig[];
3321
3517
  export declare class ProxyPushHandlerDepartmentConfigParams {
@@ -3468,6 +3664,8 @@ export declare class GetUserParams {
3468
3664
  /** 根据手机号查询 */
3469
3665
  phone?: string;
3470
3666
  phoneLike?: string;
3667
+ /** 根据警号批量查询 */
3668
+ policeCodeIn?: string[];
3471
3669
  /** 根据警号模糊查询 */
3472
3670
  policeCodeLike?: string;
3473
3671
  /**
@@ -3477,8 +3675,12 @@ export declare class GetUserParams {
3477
3675
  policeId?: number;
3478
3676
  /** 根据警员类型查询 */
3479
3677
  policeType?: string;
3678
+ /** 根据警员类型查询(批量) */
3679
+ policeTypeIn?: string[];
3480
3680
  /** 根据姓名查询 */
3481
3681
  realName?: string;
3682
+ /** 根据姓名批量查询 */
3683
+ realNameIn?: string[];
3482
3684
  realNameLike?: string;
3483
3685
  /**
3484
3686
  * 根据角色id查询
@@ -3589,7 +3791,7 @@ export declare class PutBusinessDepartmentUserDepartmentsByUsernameParams {
3589
3791
  /** user */
3590
3792
  user: string;
3591
3793
  }
3592
- export declare class ExistParams2 {
3794
+ export declare class ExistParams8 {
3593
3795
  /** 根据可管理部门id查询。支持多选 */
3594
3796
  adminDepartmentId?: number[];
3595
3797
  /** 基于业务部门业务标识匹配 */
@@ -3650,6 +3852,8 @@ export declare class ExistParams2 {
3650
3852
  /** 根据手机号查询 */
3651
3853
  phone?: string;
3652
3854
  phoneLike?: string;
3855
+ /** 根据警号批量查询 */
3856
+ policeCodeIn?: string[];
3653
3857
  /** 根据警号模糊查询 */
3654
3858
  policeCodeLike?: string;
3655
3859
  /**
@@ -3659,8 +3863,12 @@ export declare class ExistParams2 {
3659
3863
  policeId?: number;
3660
3864
  /** 根据警员类型查询 */
3661
3865
  policeType?: string;
3866
+ /** 根据警员类型查询(批量) */
3867
+ policeTypeIn?: string[];
3662
3868
  /** 根据姓名查询 */
3663
3869
  realName?: string;
3870
+ /** 根据姓名批量查询 */
3871
+ realNameIn?: string[];
3664
3872
  realNameLike?: string;
3665
3873
  /**
3666
3874
  * 根据角色id查询
@@ -3739,6 +3947,8 @@ export declare class GetListParams {
3739
3947
  /** 根据手机号查询 */
3740
3948
  phone?: string;
3741
3949
  phoneLike?: string;
3950
+ /** 根据警号批量查询 */
3951
+ policeCodeIn?: string[];
3742
3952
  /** 根据警号模糊查询 */
3743
3953
  policeCodeLike?: string;
3744
3954
  /**
@@ -3748,8 +3958,12 @@ export declare class GetListParams {
3748
3958
  policeId?: number;
3749
3959
  /** 根据警员类型查询 */
3750
3960
  policeType?: string;
3961
+ /** 根据警员类型查询(批量) */
3962
+ policeTypeIn?: string[];
3751
3963
  /** 根据姓名查询 */
3752
3964
  realName?: string;
3965
+ /** 根据姓名批量查询 */
3966
+ realNameIn?: string[];
3753
3967
  realNameLike?: string;
3754
3968
  /**
3755
3969
  * 根据角色id查询
@@ -3819,7 +4033,7 @@ interface HttpClient {
3819
4033
  }
3820
4034
  /**
3821
4035
  * @title 授权服务
3822
- * @version 1.2.31
4036
+ * @version 1.2.39
3823
4037
  * @baseUrl //192.168.200.12:5000
3824
4038
  *
3825
4039
  * 授权服务
@@ -5019,6 +5233,19 @@ declare class Api {
5019
5233
  * @response `404` `void` Not Found
5020
5234
  */
5021
5235
  userAlarmsByUsername: (username: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<LocationAlarmObject[]>;
5236
+ /**
5237
+ * No description
5238
+ *
5239
+ * @tags location
5240
+ * @name UserLocationCheck
5241
+ * @summary 判定定位
5242
+ * @request GET:/auth/location/user-location/check
5243
+ * @response `200` `CheckInDeptAreaResult` OK
5244
+ * @response `401` `void` Unauthorized
5245
+ * @response `403` `void` Forbidden
5246
+ * @response `404` `void` Not Found
5247
+ */
5248
+ userLocationCheck: (query: UserLocationCheckParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<CheckInDeptAreaResult>;
5022
5249
  };
5023
5250
  login: {
5024
5251
  /**
@@ -5462,6 +5689,19 @@ declare class Api {
5462
5689
  * @response `404` `void` Not Found
5463
5690
  */
5464
5691
  departmentTreeByBmdm: ({ bmdm, ...query }: DepartmentTreeByBmdmParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DepartmentTree>;
5692
+ /**
5693
+ * @description 所需权限:department:list
5694
+ *
5695
+ * @tags organization
5696
+ * @name DeleteDepartmentCacheClear
5697
+ * @summary 清除部门数据缓存
5698
+ * @request DELETE:/auth/organization/department/cache-clear
5699
+ * @response `200` `void` OK
5700
+ * @response `204` `void` No Content
5701
+ * @response `401` `void` Unauthorized
5702
+ * @response `403` `void` Forbidden
5703
+ */
5704
+ deleteDepartmentCacheClear: (axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
5465
5705
  /**
5466
5706
  * @description 所需权限:department:find
5467
5707
  *
@@ -5983,6 +6223,76 @@ declare class Api {
5983
6223
  * @response `404` `void` Not Found
5984
6224
  */
5985
6225
  processAskForExtendUserExpireDuration: (data: AskForExtendUserExpireDurationRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6226
+ /**
6227
+ * No description
6228
+ *
6229
+ * @tags public
6230
+ * @name ThirdPlatformSdtaBpmnProcessStart
6231
+ * @summary 开启流程
6232
+ * @request POST:/auth/public/third-platform/sdta/bpmn/process/start
6233
+ * @response `200` `AppRestResponse` OK
6234
+ * @response `201` `void` Created
6235
+ * @response `401` `void` Unauthorized
6236
+ * @response `403` `void` Forbidden
6237
+ * @response `404` `void` Not Found
6238
+ */
6239
+ thirdPlatformSdtaBpmnProcessStart: (request: ProcessStartBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6240
+ /**
6241
+ * No description
6242
+ *
6243
+ * @tags public
6244
+ * @name ThirdPlatformSdtaDutyScheduleCheckInToday
6245
+ * @summary 今日排班签到
6246
+ * @request POST:/auth/public/third-platform/sdta/duty/schedule/check-in-today
6247
+ * @response `200` `AppRestResponse` OK
6248
+ * @response `201` `void` Created
6249
+ * @response `401` `void` Unauthorized
6250
+ * @response `403` `void` Forbidden
6251
+ * @response `404` `void` Not Found
6252
+ */
6253
+ thirdPlatformSdtaDutyScheduleCheckInToday: (request: ScheduleCheckInRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6254
+ /**
6255
+ * No description
6256
+ *
6257
+ * @tags public
6258
+ * @name ThirdPlatformSdtaDutyScheduleCheckOutToday
6259
+ * @summary 今日排班签退
6260
+ * @request POST:/auth/public/third-platform/sdta/duty/schedule/check-out-today
6261
+ * @response `200` `AppRestResponse` OK
6262
+ * @response `201` `void` Created
6263
+ * @response `401` `void` Unauthorized
6264
+ * @response `403` `void` Forbidden
6265
+ * @response `404` `void` Not Found
6266
+ */
6267
+ thirdPlatformSdtaDutyScheduleCheckOutToday: (request: ScheduleCheckInRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6268
+ /**
6269
+ * No description
6270
+ *
6271
+ * @tags public
6272
+ * @name ThirdPlatformSdtaLocationUpload
6273
+ * @summary 定位上传
6274
+ * @request POST:/auth/public/third-platform/sdta/location-upload
6275
+ * @response `200` `AppRestResponse` OK
6276
+ * @response `201` `void` Created
6277
+ * @response `401` `void` Unauthorized
6278
+ * @response `403` `void` Forbidden
6279
+ * @response `404` `void` Not Found
6280
+ */
6281
+ thirdPlatformSdtaLocationUpload: (point: Point, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6282
+ /**
6283
+ * No description
6284
+ *
6285
+ * @tags public
6286
+ * @name ThirdPlatformSdtaLogin
6287
+ * @summary APP登录接口
6288
+ * @request POST:/auth/public/third-platform/sdta/login
6289
+ * @response `200` `LoginResponse` OK
6290
+ * @response `201` `void` Created
6291
+ * @response `401` `void` Unauthorized
6292
+ * @response `403` `void` Forbidden
6293
+ * @response `404` `void` Not Found
6294
+ */
6295
+ thirdPlatformSdtaLogin: (loginForm: SdtaLoginForm, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<LoginResponse>;
5986
6296
  /**
5987
6297
  * No description
5988
6298
  *
@@ -6024,6 +6334,19 @@ declare class Api {
6024
6334
  * @response `404` `void` Not Found
6025
6335
  */
6026
6336
  thirdPlatformTrustwayPortalLoginByAppId: ({ appId, ...query }: ThirdPlatformTrustwayPortalLoginByAppIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6337
+ /**
6338
+ * No description
6339
+ *
6340
+ * @tags public
6341
+ * @name ThirdPlatformZjzzLoginByAppId
6342
+ * @summary 浙警智治统一登录接口
6343
+ * @request GET:/auth/public/third-platform/zjzz/{appId}/login
6344
+ * @response `200` `void` OK
6345
+ * @response `401` `void` Unauthorized
6346
+ * @response `403` `void` Forbidden
6347
+ * @response `404` `void` Not Found
6348
+ */
6349
+ thirdPlatformZjzzLoginByAppId: ({ appId, ...query }: ThirdPlatformZjzzLoginByAppIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6027
6350
  /**
6028
6351
  * @description 仅支持IP白名单下的受控访问
6029
6352
  *
@@ -6106,7 +6429,7 @@ declare class Api {
6106
6429
  * @response `403` `void` Forbidden
6107
6430
  * @response `404` `void` Not Found
6108
6431
  */
6109
- exist: (query: ExistParams8, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
6432
+ exist: (query: ExistParams6, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
6110
6433
  /**
6111
6434
  * @description 所需权限:role:list
6112
6435
  *
@@ -6186,6 +6509,33 @@ declare class Api {
6186
6509
  * @response `403` `void` Forbidden
6187
6510
  */
6188
6511
  deleteById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6512
+ /**
6513
+ * @description 所需权限:role:find
6514
+ *
6515
+ * @tags role
6516
+ * @name GetDepartmentExtraPermissionsById
6517
+ * @summary 获取角色部门额外权限
6518
+ * @request GET:/auth/role/{id}/department-extra-permissions
6519
+ * @response `200` `DepartmentConfig` OK
6520
+ * @response `401` `void` Unauthorized
6521
+ * @response `403` `void` Forbidden
6522
+ * @response `404` `void` Not Found
6523
+ */
6524
+ getDepartmentExtraPermissionsById: ({ id, ...query }: GetDepartmentExtraPermissionsByIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DepartmentConfig>;
6525
+ /**
6526
+ * @description 所需权限:role:update
6527
+ *
6528
+ * @tags role
6529
+ * @name PutDepartmentExtraPermissionsById
6530
+ * @summary 对角色设置部门额外权限
6531
+ * @request PUT:/auth/role/{id}/department-extra-permissions
6532
+ * @response `200` `void` OK
6533
+ * @response `201` `void` Created
6534
+ * @response `401` `void` Unauthorized
6535
+ * @response `403` `void` Forbidden
6536
+ * @response `404` `void` Not Found
6537
+ */
6538
+ putDepartmentExtraPermissionsById: (id: number, bean: RoleDepartmentExtraPermissionSetBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6189
6539
  };
6190
6540
  security: {
6191
6541
  /**
@@ -6228,6 +6578,20 @@ declare class Api {
6228
6578
  * @response `403` `void` Forbidden
6229
6579
  */
6230
6580
  deleteAccessKeyByAk: (ak: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AppRestResponse>;
6581
+ /**
6582
+ * No description
6583
+ *
6584
+ * @tags security
6585
+ * @name ClearIpLimit
6586
+ * @summary 清除IP封锁限制
6587
+ * @request POST:/auth/security/clear-ip-limit
6588
+ * @response `200` `void` OK
6589
+ * @response `201` `void` Created
6590
+ * @response `401` `void` Unauthorized
6591
+ * @response `403` `void` Forbidden
6592
+ * @response `404` `void` Not Found
6593
+ */
6594
+ clearIpLimit: (query: ClearIpLimitParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6231
6595
  };
6232
6596
  sendLoginVerifyCode: {
6233
6597
  /**
@@ -6301,7 +6665,7 @@ declare class Api {
6301
6665
  */
6302
6666
  postConfigAuth: (configs: object, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6303
6667
  /**
6304
- * @description 所需权限:user:self:config:read
6668
+ * No description
6305
6669
  *
6306
6670
  * @tags settings
6307
6671
  * @name GetConfigCurrentUser
@@ -6314,11 +6678,11 @@ declare class Api {
6314
6678
  */
6315
6679
  getConfigCurrentUser: (query: GetConfigCurrentUserParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<any>;
6316
6680
  /**
6317
- * @description 所需权限:user:self:config:write
6681
+ * No description
6318
6682
  *
6319
6683
  * @tags settings
6320
6684
  * @name PostConfigCurrentUser
6321
- * @summary 写入当前用户配置
6685
+ * @summary writeUserSelfConfig
6322
6686
  * @request POST:/auth/settings/config/current-user
6323
6687
  * @response `200` `void` OK
6324
6688
  * @response `201` `void` Created
@@ -6678,7 +7042,7 @@ declare class Api {
6678
7042
  * @response `403` `void` Forbidden
6679
7043
  * @response `404` `void` Not Found
6680
7044
  */
6681
- byId: ({ id, ...query }: ByIdParams5, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
7045
+ byId: ({ id, ...query }: ByIdParams10, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
6682
7046
  /**
6683
7047
  * No description
6684
7048
  *
@@ -6726,7 +7090,7 @@ declare class Api {
6726
7090
  };
6727
7091
  sync: {
6728
7092
  /**
6729
- * @description 所需权限:supreme:all
7093
+ * No description
6730
7094
  *
6731
7095
  * @tags sync
6732
7096
  * @name CommonDepartmentConfigKeys
@@ -6753,7 +7117,7 @@ declare class Api {
6753
7117
  */
6754
7118
  departmentByBmdm: (bmdm: string, hint: SyncDepartmentHint, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
6755
7119
  /**
6756
- * @description 所需权限:supreme:all
7120
+ * No description
6757
7121
  *
6758
7122
  * @tags sync
6759
7123
  * @name Proxy
@@ -6767,7 +7131,7 @@ declare class Api {
6767
7131
  */
6768
7132
  proxy: (request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
6769
7133
  /**
6770
- * @description 所需权限:supreme:all
7134
+ * No description
6771
7135
  *
6772
7136
  * @tags sync
6773
7137
  * @name ProxyByIsp
@@ -6779,7 +7143,7 @@ declare class Api {
6779
7143
  * @response `403` `void` Forbidden
6780
7144
  * @response `404` `void` Not Found
6781
7145
  */
6782
- proxyByIsp: (request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
7146
+ proxyByIsp: (query: ProxyByIspParams, request: ProxyRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ProxyResponse>;
6783
7147
  /**
6784
7148
  * @description 所需权限:department:admin、supreme:all (OR)
6785
7149
  *
@@ -7388,7 +7752,7 @@ declare class Api {
7388
7752
  * @response `403` `void` Forbidden
7389
7753
  * @response `404` `void` Not Found
7390
7754
  */
7391
- exist: (query: ExistParams2, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
7755
+ exist: (query: ExistParams8, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
7392
7756
  /**
7393
7757
  * @description 所需权限:user:admin
7394
7758
  *
@@ -7506,6 +7870,7 @@ declare class Api {
7506
7870
  * @name ListSimpleByRealname
7507
7871
  * @summary 根据用户姓名批量获取用户简项信息
7508
7872
  * @request POST:/auth/user/list/simple-by-realname
7873
+ * @deprecated
7509
7874
  * @response `200` `(UserSimpleEx)[]` OK
7510
7875
  * @response `201` `void` Created
7511
7876
  * @response `401` `void` Unauthorized