szpt-driver-api 1.0.95 → 1.0.96
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 +154 -4
- package/auth.js +1 -1
- package/auth.js.map +1 -1
- package/authBpmnQuery.d.ts +6 -6
- package/authBpmnQuery.js +1 -1
- package/authBpmnQuery.js.map +1 -1
- package/authDuty.d.ts +919 -33
- package/authDuty.js +1 -1
- package/authDuty.js.map +1 -1
- package/authV2.d.ts +16 -0
- package/authV2.js.map +1 -1
- package/common.d.ts +2 -2
- package/common.js +1 -1
- package/common.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/oss.d.ts +4 -4
- package/oss.js +1 -1
- package/oss.js.map +1 -1
- package/package.json +1 -1
- package/query.d.ts +61 -89
- package/query.js +1 -1
- package/query.js.map +1 -1
- package/szAccident.d.ts +6 -2
- package/szAccident.js +1 -1
- package/szAccident.js.map +1 -1
- package/szTraffic.d.ts +744 -4
- package/szTraffic.js +1 -1
- package/szTraffic.js.map +1 -1
- package/videoService.d.ts +6 -6
- package/videoService.js +1 -1
- package/videoService.js.map +1 -1
package/auth.d.ts
CHANGED
|
@@ -1698,6 +1698,9 @@ export declare class ProxyResponse {
|
|
|
1698
1698
|
/** @format int32 */
|
|
1699
1699
|
status: number;
|
|
1700
1700
|
}
|
|
1701
|
+
export declare class ReVerifyResponse {
|
|
1702
|
+
pass: boolean;
|
|
1703
|
+
}
|
|
1701
1704
|
export declare class ReadUserConfigRequest {
|
|
1702
1705
|
keys?: string[];
|
|
1703
1706
|
usernames?: string[];
|
|
@@ -1997,6 +2000,7 @@ export declare class ThirdPlatformEntity {
|
|
|
1997
2000
|
merchantId: string;
|
|
1998
2001
|
permissions: string[];
|
|
1999
2002
|
platform: "CdtZzj" | "Mock" | "Phone" | "ShanDongTong" | "TrustWayPortal" | "Wechat" | "WechatZLB" | "ZheLiBan" | "Zjzz" | "Zzd";
|
|
2003
|
+
userVerifySceneCode: string;
|
|
2000
2004
|
}
|
|
2001
2005
|
export declare class ThirdPlatformEnum {
|
|
2002
2006
|
key: string;
|
|
@@ -2304,6 +2308,16 @@ export declare class UserLocation {
|
|
|
2304
2308
|
export declare class UserLocationQueryBean {
|
|
2305
2309
|
/** 根据可管理部门id查询。支持多选 */
|
|
2306
2310
|
adminDepartmentId?: number[];
|
|
2311
|
+
/**
|
|
2312
|
+
* 根据年龄段查询
|
|
2313
|
+
* @format int32
|
|
2314
|
+
*/
|
|
2315
|
+
ageBegin?: number;
|
|
2316
|
+
/**
|
|
2317
|
+
* 根据年龄段查询
|
|
2318
|
+
* @format int32
|
|
2319
|
+
*/
|
|
2320
|
+
ageEnd?: number;
|
|
2307
2321
|
/** 基于业务部门业务标识匹配 */
|
|
2308
2322
|
business?: string[];
|
|
2309
2323
|
/** 基于业务部门代码匹配 */
|
|
@@ -2314,11 +2328,15 @@ export declare class UserLocationQueryBean {
|
|
|
2314
2328
|
department?: string[];
|
|
2315
2329
|
/** 根据部门id查询。支持多选 */
|
|
2316
2330
|
departmentId?: number[];
|
|
2331
|
+
/** 根据学历批量查询 */
|
|
2332
|
+
educationalBackgrounds?: string[];
|
|
2317
2333
|
/** 根据Email查询 */
|
|
2318
2334
|
email?: string;
|
|
2319
2335
|
emailLike?: string;
|
|
2320
2336
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
2321
2337
|
filterByAdminDepartment?: boolean;
|
|
2338
|
+
/** 根据性别批量查询 */
|
|
2339
|
+
genders?: ("Female" | "Male" | "Other" | "Unknown")[];
|
|
2322
2340
|
/** 根据id查询。支持多选 */
|
|
2323
2341
|
id?: number[];
|
|
2324
2342
|
/** 身份证号查询。支持多选 */
|
|
@@ -2398,6 +2416,8 @@ export declare class UserLocationQueryBean {
|
|
|
2398
2416
|
roleName?: string;
|
|
2399
2417
|
/** 根据角色名称批量查询 */
|
|
2400
2418
|
roleNameIn?: string[];
|
|
2419
|
+
/** 根据保安证等级批量查询 */
|
|
2420
|
+
securityGuardCertificateLevels?: string[];
|
|
2401
2421
|
/** 根据用户名查询。支持多选 */
|
|
2402
2422
|
username?: string[];
|
|
2403
2423
|
/** 用户名模糊查询 */
|
|
@@ -2746,6 +2766,16 @@ export declare class UserPublicInfo {
|
|
|
2746
2766
|
export declare class UserQueryBean {
|
|
2747
2767
|
/** 根据可管理部门id查询。支持多选 */
|
|
2748
2768
|
adminDepartmentId?: number[];
|
|
2769
|
+
/**
|
|
2770
|
+
* 根据年龄段查询
|
|
2771
|
+
* @format int32
|
|
2772
|
+
*/
|
|
2773
|
+
ageBegin?: number;
|
|
2774
|
+
/**
|
|
2775
|
+
* 根据年龄段查询
|
|
2776
|
+
* @format int32
|
|
2777
|
+
*/
|
|
2778
|
+
ageEnd?: number;
|
|
2749
2779
|
/** 基于业务部门业务标识匹配 */
|
|
2750
2780
|
business?: string[];
|
|
2751
2781
|
/** 基于业务部门代码匹配 */
|
|
@@ -2756,11 +2786,15 @@ export declare class UserQueryBean {
|
|
|
2756
2786
|
department?: string[];
|
|
2757
2787
|
/** 根据部门id查询。支持多选 */
|
|
2758
2788
|
departmentId?: number[];
|
|
2789
|
+
/** 根据学历批量查询 */
|
|
2790
|
+
educationalBackgrounds?: string[];
|
|
2759
2791
|
/** 根据Email查询 */
|
|
2760
2792
|
email?: string;
|
|
2761
2793
|
emailLike?: string;
|
|
2762
2794
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
2763
2795
|
filterByAdminDepartment?: boolean;
|
|
2796
|
+
/** 根据性别批量查询 */
|
|
2797
|
+
genders?: ("Female" | "Male" | "Other" | "Unknown")[];
|
|
2764
2798
|
/** 根据id查询。支持多选 */
|
|
2765
2799
|
id?: number[];
|
|
2766
2800
|
/** 身份证号查询。支持多选 */
|
|
@@ -2839,6 +2873,8 @@ export declare class UserQueryBean {
|
|
|
2839
2873
|
roleName?: string;
|
|
2840
2874
|
/** 根据角色名称批量查询 */
|
|
2841
2875
|
roleNameIn?: string[];
|
|
2876
|
+
/** 根据保安证等级批量查询 */
|
|
2877
|
+
securityGuardCertificateLevels?: string[];
|
|
2842
2878
|
/** 根据用户名查询。支持多选 */
|
|
2843
2879
|
username?: string[];
|
|
2844
2880
|
/** 用户名模糊查询 */
|
|
@@ -3125,6 +3161,10 @@ export declare class UserUpdateBean {
|
|
|
3125
3161
|
userProfilePhysicalExaminations?: UserProfilePhysicalExamination[];
|
|
3126
3162
|
username?: string;
|
|
3127
3163
|
}
|
|
3164
|
+
export declare class UserVerifyResponse {
|
|
3165
|
+
requestId: string;
|
|
3166
|
+
verifyFree: boolean;
|
|
3167
|
+
}
|
|
3128
3168
|
export declare class UserWithExtraDetail {
|
|
3129
3169
|
/** 用户的额外信息 */
|
|
3130
3170
|
extraDetail: UserProfileExtraDetail;
|
|
@@ -4046,7 +4086,7 @@ export declare class GetRoleParams {
|
|
|
4046
4086
|
scope?: string;
|
|
4047
4087
|
type?: "Auditing" | "Common" | "Security" | "System" | "Work";
|
|
4048
4088
|
}
|
|
4049
|
-
export declare class
|
|
4089
|
+
export declare class ExistParams5 {
|
|
4050
4090
|
/** @format int64 */
|
|
4051
4091
|
createUser?: number;
|
|
4052
4092
|
department?: string;
|
|
@@ -4362,6 +4402,26 @@ export declare class GetBindingUserByIdParams {
|
|
|
4362
4402
|
/** id */
|
|
4363
4403
|
id: string;
|
|
4364
4404
|
}
|
|
4405
|
+
export declare class ZlbReVerifyByIdParams {
|
|
4406
|
+
/** requestId */
|
|
4407
|
+
requestId: string;
|
|
4408
|
+
/** id */
|
|
4409
|
+
id: string;
|
|
4410
|
+
}
|
|
4411
|
+
export declare class ZlbUserVerifyByIdParams {
|
|
4412
|
+
/** 证件号 */
|
|
4413
|
+
certNo: string;
|
|
4414
|
+
/** 证件类型 */
|
|
4415
|
+
certType: string;
|
|
4416
|
+
/** 渠道 pc: PC端、app: APP端、miniapp: ⽀付宝⼩程序、weixin: 微信⼩程序 */
|
|
4417
|
+
channel?: string;
|
|
4418
|
+
/** 场景码 */
|
|
4419
|
+
fkSceneCode?: string;
|
|
4420
|
+
/** 姓名 */
|
|
4421
|
+
realName: string;
|
|
4422
|
+
/** id */
|
|
4423
|
+
id: string;
|
|
4424
|
+
}
|
|
4365
4425
|
export declare class RefreshParams {
|
|
4366
4426
|
/** refresh */
|
|
4367
4427
|
refresh: string;
|
|
@@ -4369,6 +4429,16 @@ export declare class RefreshParams {
|
|
|
4369
4429
|
export declare class GetUserParams {
|
|
4370
4430
|
/** 根据可管理部门id查询。支持多选 */
|
|
4371
4431
|
adminDepartmentId?: number[];
|
|
4432
|
+
/**
|
|
4433
|
+
* 根据年龄段查询
|
|
4434
|
+
* @format int32
|
|
4435
|
+
*/
|
|
4436
|
+
ageBegin?: number;
|
|
4437
|
+
/**
|
|
4438
|
+
* 根据年龄段查询
|
|
4439
|
+
* @format int32
|
|
4440
|
+
*/
|
|
4441
|
+
ageEnd?: number;
|
|
4372
4442
|
/** 基于业务部门业务标识匹配 */
|
|
4373
4443
|
business?: string[];
|
|
4374
4444
|
/** 基于业务部门代码匹配 */
|
|
@@ -4379,11 +4449,15 @@ export declare class GetUserParams {
|
|
|
4379
4449
|
department?: string[];
|
|
4380
4450
|
/** 根据部门id查询。支持多选 */
|
|
4381
4451
|
departmentId?: number[];
|
|
4452
|
+
/** 根据学历批量查询 */
|
|
4453
|
+
educationalBackgrounds?: string[];
|
|
4382
4454
|
/** 根据Email查询 */
|
|
4383
4455
|
email?: string;
|
|
4384
4456
|
emailLike?: string;
|
|
4385
4457
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
4386
4458
|
filterByAdminDepartment?: boolean;
|
|
4459
|
+
/** 根据性别批量查询 */
|
|
4460
|
+
genders?: "Female" | "Male" | "Other" | "Unknown";
|
|
4387
4461
|
/** 根据id查询。支持多选 */
|
|
4388
4462
|
id?: number[];
|
|
4389
4463
|
/** 身份证号查询。支持多选 */
|
|
@@ -4462,6 +4536,8 @@ export declare class GetUserParams {
|
|
|
4462
4536
|
roleName?: string;
|
|
4463
4537
|
/** 根据角色名称批量查询 */
|
|
4464
4538
|
roleNameIn?: string[];
|
|
4539
|
+
/** 根据保安证等级批量查询 */
|
|
4540
|
+
securityGuardCertificateLevels?: string[];
|
|
4465
4541
|
/** 根据用户名查询。支持多选 */
|
|
4466
4542
|
username?: string[];
|
|
4467
4543
|
/** 用户名模糊查询 */
|
|
@@ -4570,9 +4646,19 @@ export declare class CacheClearParams {
|
|
|
4570
4646
|
/** username */
|
|
4571
4647
|
username: string;
|
|
4572
4648
|
}
|
|
4573
|
-
export declare class
|
|
4649
|
+
export declare class ExistParams1 {
|
|
4574
4650
|
/** 根据可管理部门id查询。支持多选 */
|
|
4575
4651
|
adminDepartmentId?: number[];
|
|
4652
|
+
/**
|
|
4653
|
+
* 根据年龄段查询
|
|
4654
|
+
* @format int32
|
|
4655
|
+
*/
|
|
4656
|
+
ageBegin?: number;
|
|
4657
|
+
/**
|
|
4658
|
+
* 根据年龄段查询
|
|
4659
|
+
* @format int32
|
|
4660
|
+
*/
|
|
4661
|
+
ageEnd?: number;
|
|
4576
4662
|
/** 基于业务部门业务标识匹配 */
|
|
4577
4663
|
business?: string[];
|
|
4578
4664
|
/** 基于业务部门代码匹配 */
|
|
@@ -4583,11 +4669,15 @@ export declare class ExistParams5 {
|
|
|
4583
4669
|
department?: string[];
|
|
4584
4670
|
/** 根据部门id查询。支持多选 */
|
|
4585
4671
|
departmentId?: number[];
|
|
4672
|
+
/** 根据学历批量查询 */
|
|
4673
|
+
educationalBackgrounds?: string[];
|
|
4586
4674
|
/** 根据Email查询 */
|
|
4587
4675
|
email?: string;
|
|
4588
4676
|
emailLike?: string;
|
|
4589
4677
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
4590
4678
|
filterByAdminDepartment?: boolean;
|
|
4679
|
+
/** 根据性别批量查询 */
|
|
4680
|
+
genders?: "Female" | "Male" | "Other" | "Unknown";
|
|
4591
4681
|
/** 根据id查询。支持多选 */
|
|
4592
4682
|
id?: number[];
|
|
4593
4683
|
/** 身份证号查询。支持多选 */
|
|
@@ -4666,6 +4756,8 @@ export declare class ExistParams5 {
|
|
|
4666
4756
|
roleName?: string;
|
|
4667
4757
|
/** 根据角色名称批量查询 */
|
|
4668
4758
|
roleNameIn?: string[];
|
|
4759
|
+
/** 根据保安证等级批量查询 */
|
|
4760
|
+
securityGuardCertificateLevels?: string[];
|
|
4669
4761
|
/** 根据用户名查询。支持多选 */
|
|
4670
4762
|
username?: string[];
|
|
4671
4763
|
/** 用户名模糊查询 */
|
|
@@ -4696,6 +4788,16 @@ export declare class ImportParams {
|
|
|
4696
4788
|
export declare class GetListParams {
|
|
4697
4789
|
/** 根据可管理部门id查询。支持多选 */
|
|
4698
4790
|
adminDepartmentId?: number[];
|
|
4791
|
+
/**
|
|
4792
|
+
* 根据年龄段查询
|
|
4793
|
+
* @format int32
|
|
4794
|
+
*/
|
|
4795
|
+
ageBegin?: number;
|
|
4796
|
+
/**
|
|
4797
|
+
* 根据年龄段查询
|
|
4798
|
+
* @format int32
|
|
4799
|
+
*/
|
|
4800
|
+
ageEnd?: number;
|
|
4699
4801
|
/** 基于业务部门业务标识匹配 */
|
|
4700
4802
|
business?: string[];
|
|
4701
4803
|
/** 基于业务部门代码匹配 */
|
|
@@ -4706,11 +4808,15 @@ export declare class GetListParams {
|
|
|
4706
4808
|
department?: string[];
|
|
4707
4809
|
/** 根据部门id查询。支持多选 */
|
|
4708
4810
|
departmentId?: number[];
|
|
4811
|
+
/** 根据学历批量查询 */
|
|
4812
|
+
educationalBackgrounds?: string[];
|
|
4709
4813
|
/** 根据Email查询 */
|
|
4710
4814
|
email?: string;
|
|
4711
4815
|
emailLike?: string;
|
|
4712
4816
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
4713
4817
|
filterByAdminDepartment?: boolean;
|
|
4818
|
+
/** 根据性别批量查询 */
|
|
4819
|
+
genders?: "Female" | "Male" | "Other" | "Unknown";
|
|
4714
4820
|
/** 根据id查询。支持多选 */
|
|
4715
4821
|
id?: number[];
|
|
4716
4822
|
/** 身份证号查询。支持多选 */
|
|
@@ -4789,6 +4895,8 @@ export declare class GetListParams {
|
|
|
4789
4895
|
roleName?: string;
|
|
4790
4896
|
/** 根据角色名称批量查询 */
|
|
4791
4897
|
roleNameIn?: string[];
|
|
4898
|
+
/** 根据保安证等级批量查询 */
|
|
4899
|
+
securityGuardCertificateLevels?: string[];
|
|
4792
4900
|
/** 根据用户名查询。支持多选 */
|
|
4793
4901
|
username?: string[];
|
|
4794
4902
|
/** 用户名模糊查询 */
|
|
@@ -4797,6 +4905,16 @@ export declare class GetListParams {
|
|
|
4797
4905
|
export declare class ListWithExtraParams {
|
|
4798
4906
|
/** 根据可管理部门id查询。支持多选 */
|
|
4799
4907
|
adminDepartmentId?: number[];
|
|
4908
|
+
/**
|
|
4909
|
+
* 根据年龄段查询
|
|
4910
|
+
* @format int32
|
|
4911
|
+
*/
|
|
4912
|
+
ageBegin?: number;
|
|
4913
|
+
/**
|
|
4914
|
+
* 根据年龄段查询
|
|
4915
|
+
* @format int32
|
|
4916
|
+
*/
|
|
4917
|
+
ageEnd?: number;
|
|
4800
4918
|
/** 基于业务部门业务标识匹配 */
|
|
4801
4919
|
business?: string[];
|
|
4802
4920
|
/** 基于业务部门代码匹配 */
|
|
@@ -4807,11 +4925,15 @@ export declare class ListWithExtraParams {
|
|
|
4807
4925
|
department?: string[];
|
|
4808
4926
|
/** 根据部门id查询。支持多选 */
|
|
4809
4927
|
departmentId?: number[];
|
|
4928
|
+
/** 根据学历批量查询 */
|
|
4929
|
+
educationalBackgrounds?: string[];
|
|
4810
4930
|
/** 根据Email查询 */
|
|
4811
4931
|
email?: string;
|
|
4812
4932
|
emailLike?: string;
|
|
4813
4933
|
/** 是否根据当前用户的管理部门进行过滤 */
|
|
4814
4934
|
filterByAdminDepartment?: boolean;
|
|
4935
|
+
/** 根据性别批量查询 */
|
|
4936
|
+
genders?: "Female" | "Male" | "Other" | "Unknown";
|
|
4815
4937
|
/** 根据id查询。支持多选 */
|
|
4816
4938
|
id?: number[];
|
|
4817
4939
|
/** 身份证号查询。支持多选 */
|
|
@@ -4890,6 +5012,8 @@ export declare class ListWithExtraParams {
|
|
|
4890
5012
|
roleName?: string;
|
|
4891
5013
|
/** 根据角色名称批量查询 */
|
|
4892
5014
|
roleNameIn?: string[];
|
|
5015
|
+
/** 根据保安证等级批量查询 */
|
|
5016
|
+
securityGuardCertificateLevels?: string[];
|
|
4893
5017
|
/** 根据用户名查询。支持多选 */
|
|
4894
5018
|
username?: string[];
|
|
4895
5019
|
/** 用户名模糊查询 */
|
|
@@ -7533,7 +7657,7 @@ declare class Api {
|
|
|
7533
7657
|
* @response `403` `void` Forbidden
|
|
7534
7658
|
* @response `404` `void` Not Found
|
|
7535
7659
|
*/
|
|
7536
|
-
exist: (query:
|
|
7660
|
+
exist: (query: ExistParams5, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
7537
7661
|
/**
|
|
7538
7662
|
* @description 所需权限:role:list
|
|
7539
7663
|
*
|
|
@@ -8660,6 +8784,32 @@ declare class Api {
|
|
|
8660
8784
|
* @response `404` `void` Not Found
|
|
8661
8785
|
*/
|
|
8662
8786
|
sendMessageById: (id: string, request: SendMessageRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
8787
|
+
/**
|
|
8788
|
+
* No description
|
|
8789
|
+
*
|
|
8790
|
+
* @tags thirdPlatform
|
|
8791
|
+
* @name ZlbReVerifyById
|
|
8792
|
+
* @summary 核查浙里办身份认证结果
|
|
8793
|
+
* @request GET:/auth/third-platform/{id}/zlb-re-verify
|
|
8794
|
+
* @response `200` `ReVerifyResponse` OK
|
|
8795
|
+
* @response `401` `void` Unauthorized
|
|
8796
|
+
* @response `403` `void` Forbidden
|
|
8797
|
+
* @response `404` `void` Not Found
|
|
8798
|
+
*/
|
|
8799
|
+
zlbReVerifyById: ({ id, ...query }: ZlbReVerifyByIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ReVerifyResponse>;
|
|
8800
|
+
/**
|
|
8801
|
+
* @description 如果verifyFree为true,就不需要发起认证
|
|
8802
|
+
*
|
|
8803
|
+
* @tags thirdPlatform
|
|
8804
|
+
* @name ZlbUserVerifyById
|
|
8805
|
+
* @summary 申请浙里办身份认证
|
|
8806
|
+
* @request GET:/auth/third-platform/{id}/zlb-user-verify
|
|
8807
|
+
* @response `200` `UserVerifyResponse` OK
|
|
8808
|
+
* @response `401` `void` Unauthorized
|
|
8809
|
+
* @response `403` `void` Forbidden
|
|
8810
|
+
* @response `404` `void` Not Found
|
|
8811
|
+
*/
|
|
8812
|
+
zlbUserVerifyById: ({ id, ...query }: ZlbUserVerifyByIdParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<UserVerifyResponse>;
|
|
8663
8813
|
};
|
|
8664
8814
|
thirdPlatformBinding: {
|
|
8665
8815
|
/**
|
|
@@ -8910,7 +9060,7 @@ declare class Api {
|
|
|
8910
9060
|
* @response `403` `void` Forbidden
|
|
8911
9061
|
* @response `404` `void` Not Found
|
|
8912
9062
|
*/
|
|
8913
|
-
exist: (query:
|
|
9063
|
+
exist: (query: ExistParams1, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
8914
9064
|
/**
|
|
8915
9065
|
* @description 所需权限:user:admin
|
|
8916
9066
|
*
|