szpt-driver-api 1.0.72 → 1.0.74
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 +97 -117
- package/auth.js +1 -1
- package/auth.js.map +1 -1
- package/authBpmn.d.ts +1 -0
- package/authBpmn.js.map +1 -1
- package/authBpmnQuery.d.ts +579 -64
- package/authBpmnQuery.js +1 -1
- package/authBpmnQuery.js.map +1 -1
- package/authV2.d.ts +1 -1
- 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 +20 -16
- package/query.js +1 -1
- package/query.js.map +1 -1
- package/szAccident.d.ts +2 -2
- package/szAccident.js +1 -1
- package/szAccident.js.map +1 -1
- package/szTraffic.d.ts +4 -4
- package/szTraffic.js +1 -1
- package/szTraffic.js.map +1 -1
- package/videoService.d.ts +4 -4
- package/videoService.js +1 -1
- package/videoService.js.map +1 -1
package/auth.d.ts
CHANGED
|
@@ -2022,8 +2022,6 @@ export declare class UserProfileAdditional {
|
|
|
2022
2022
|
idCardFrontPicture: string;
|
|
2023
2023
|
}
|
|
2024
2024
|
export declare class UserProfileUpdateBean {
|
|
2025
|
-
/** 用户额外信息 */
|
|
2026
|
-
additional?: UserProfileAdditional;
|
|
2027
2025
|
avatar?: string;
|
|
2028
2026
|
email?: string;
|
|
2029
2027
|
gender?: "Female" | "Male" | "Other" | "Unknown";
|
|
@@ -2032,6 +2030,8 @@ export declare class UserProfileUpdateBean {
|
|
|
2032
2030
|
idCardNumber?: string;
|
|
2033
2031
|
phone?: string;
|
|
2034
2032
|
realName?: string;
|
|
2033
|
+
/** 用户额外信息 */
|
|
2034
|
+
userProfileAdditional?: UserProfileAdditional;
|
|
2035
2035
|
}
|
|
2036
2036
|
export declare class UserPublicInfo {
|
|
2037
2037
|
/** 部门代码 */
|
|
@@ -2386,8 +2386,6 @@ export declare class UserTrackQuery {
|
|
|
2386
2386
|
username?: string;
|
|
2387
2387
|
}
|
|
2388
2388
|
export declare class UserUpdateBean {
|
|
2389
|
-
/** 用户额外信息 */
|
|
2390
|
-
additional?: UserProfileAdditional;
|
|
2391
2389
|
avatar?: string;
|
|
2392
2390
|
/** @format int64 */
|
|
2393
2391
|
departmentId?: number;
|
|
@@ -2407,6 +2405,8 @@ export declare class UserUpdateBean {
|
|
|
2407
2405
|
realName?: string;
|
|
2408
2406
|
/** @format int64 */
|
|
2409
2407
|
roleId?: number;
|
|
2408
|
+
/** 用户额外信息 */
|
|
2409
|
+
userProfileAdditional?: UserProfileAdditional;
|
|
2410
2410
|
}
|
|
2411
2411
|
export declare class UsernamePasswordLoginForm {
|
|
2412
2412
|
/** 用户登录名 */
|
|
@@ -3299,25 +3299,100 @@ export declare class GetRoleParams {
|
|
|
3299
3299
|
scope?: string;
|
|
3300
3300
|
type?: "Auditing" | "Common" | "Security" | "System" | "Work";
|
|
3301
3301
|
}
|
|
3302
|
-
export declare class
|
|
3303
|
-
/**
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3302
|
+
export declare class ExistParams3 {
|
|
3303
|
+
/** 根据可管理部门id查询。支持多选 */
|
|
3304
|
+
adminDepartmentId?: number[];
|
|
3305
|
+
/** 基于业务部门业务标识匹配 */
|
|
3306
|
+
business?: string[];
|
|
3307
|
+
/** 基于业务部门代码匹配 */
|
|
3308
|
+
businessDepartment?: string[];
|
|
3309
|
+
/** 根据部门代码查询。支持多选 */
|
|
3310
|
+
department?: string[];
|
|
3311
|
+
/** 根据部门id查询。支持多选 */
|
|
3312
|
+
departmentId?: number[];
|
|
3313
|
+
/** 根据Email查询 */
|
|
3314
|
+
email?: string;
|
|
3315
|
+
emailLike?: string;
|
|
3316
|
+
/** 是否根据当前用户的管理部门进行过滤 */
|
|
3317
|
+
filterByAdminDepartment?: boolean;
|
|
3318
|
+
/** 根据id查询。支持多选 */
|
|
3319
|
+
id?: number[];
|
|
3320
|
+
/** 身份证号查询。支持多选 */
|
|
3321
|
+
idCardNumber?: string[];
|
|
3322
|
+
idCardNumberLike?: string;
|
|
3323
|
+
/** 是否关联查询管理部门 */
|
|
3324
|
+
includeAdminDepartment?: boolean;
|
|
3325
|
+
/** 是否关联查询业务部门 */
|
|
3326
|
+
includeBusinessDepartment?: boolean;
|
|
3327
|
+
/** 是否关联查询权限 */
|
|
3328
|
+
includePermissionDetail?: boolean;
|
|
3329
|
+
/** 是否包含子部门(根据department参数,自动补充子部门) */
|
|
3330
|
+
includeSubDepartment?: boolean;
|
|
3331
|
+
/** 是否为已删除用户 */
|
|
3332
|
+
isDeleted?: boolean;
|
|
3333
|
+
/** 是否被锁定 */
|
|
3334
|
+
isLocked?: boolean;
|
|
3335
|
+
/** 最近登录IP */
|
|
3336
|
+
lastLoginIp?: string;
|
|
3337
|
+
/**
|
|
3338
|
+
* 最近登录时间大于
|
|
3339
|
+
* @format int64
|
|
3340
|
+
*/
|
|
3341
|
+
lastLoginTimeGte?: number;
|
|
3342
|
+
/**
|
|
3343
|
+
* 最近登录时间小于
|
|
3344
|
+
* @format int64
|
|
3345
|
+
*/
|
|
3346
|
+
lastLoginTimeLt?: number;
|
|
3347
|
+
loginName?: string;
|
|
3309
3348
|
orderBy?: string[];
|
|
3310
3349
|
/** @format int32 */
|
|
3311
3350
|
pageIndex?: number;
|
|
3312
3351
|
/** @format int32 */
|
|
3313
3352
|
pageSize?: number;
|
|
3314
|
-
/**
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3353
|
+
/** 根据权限code查询 */
|
|
3354
|
+
permissionCode?: string;
|
|
3355
|
+
/**
|
|
3356
|
+
* 根据权限id查询
|
|
3357
|
+
* @format int64
|
|
3358
|
+
*/
|
|
3318
3359
|
permissionId?: number;
|
|
3319
|
-
|
|
3320
|
-
|
|
3360
|
+
/** 根据手机号查询 */
|
|
3361
|
+
phone?: string;
|
|
3362
|
+
phoneLike?: string;
|
|
3363
|
+
/** 根据警号批量查询 */
|
|
3364
|
+
policeCodeIn?: string[];
|
|
3365
|
+
/** 根据警号模糊查询 */
|
|
3366
|
+
policeCodeLike?: string;
|
|
3367
|
+
/**
|
|
3368
|
+
* 根据警员id查询
|
|
3369
|
+
* @format int64
|
|
3370
|
+
*/
|
|
3371
|
+
policeId?: number;
|
|
3372
|
+
/** 根据警员类型查询 */
|
|
3373
|
+
policeType?: string;
|
|
3374
|
+
/** 根据警员类型查询(批量) */
|
|
3375
|
+
policeTypeIn?: string[];
|
|
3376
|
+
/** 根据姓名查询 */
|
|
3377
|
+
realName?: string;
|
|
3378
|
+
/** 根据姓名批量查询 */
|
|
3379
|
+
realNameIn?: string[];
|
|
3380
|
+
realNameLike?: string;
|
|
3381
|
+
/**
|
|
3382
|
+
* 根据角色id查询
|
|
3383
|
+
* @format int64
|
|
3384
|
+
*/
|
|
3385
|
+
roleId?: number;
|
|
3386
|
+
/** 根据角色id查询 */
|
|
3387
|
+
roleIdIn?: number[];
|
|
3388
|
+
/** 根据角色名称查询 */
|
|
3389
|
+
roleName?: string;
|
|
3390
|
+
/** 根据角色名称批量查询 */
|
|
3391
|
+
roleNameIn?: string[];
|
|
3392
|
+
/** 根据用户名查询。支持多选 */
|
|
3393
|
+
username?: string[];
|
|
3394
|
+
/** 用户名模糊查询 */
|
|
3395
|
+
usernameLike?: string;
|
|
3321
3396
|
}
|
|
3322
3397
|
export declare class ListParams {
|
|
3323
3398
|
/** @format int64 */
|
|
@@ -3483,7 +3558,7 @@ export declare class ToOssParams {
|
|
|
3483
3558
|
export declare class UploadPayload {
|
|
3484
3559
|
file?: File;
|
|
3485
3560
|
}
|
|
3486
|
-
export declare class
|
|
3561
|
+
export declare class ByIdParams8 {
|
|
3487
3562
|
/** format */
|
|
3488
3563
|
format?: string;
|
|
3489
3564
|
/** id */
|
|
@@ -3791,101 +3866,6 @@ export declare class PutBusinessDepartmentUserDepartmentsByUsernameParams {
|
|
|
3791
3866
|
/** user */
|
|
3792
3867
|
user: string;
|
|
3793
3868
|
}
|
|
3794
|
-
export declare class ExistParams8 {
|
|
3795
|
-
/** 根据可管理部门id查询。支持多选 */
|
|
3796
|
-
adminDepartmentId?: number[];
|
|
3797
|
-
/** 基于业务部门业务标识匹配 */
|
|
3798
|
-
business?: string[];
|
|
3799
|
-
/** 基于业务部门代码匹配 */
|
|
3800
|
-
businessDepartment?: string[];
|
|
3801
|
-
/** 根据部门代码查询。支持多选 */
|
|
3802
|
-
department?: string[];
|
|
3803
|
-
/** 根据部门id查询。支持多选 */
|
|
3804
|
-
departmentId?: number[];
|
|
3805
|
-
/** 根据Email查询 */
|
|
3806
|
-
email?: string;
|
|
3807
|
-
emailLike?: string;
|
|
3808
|
-
/** 是否根据当前用户的管理部门进行过滤 */
|
|
3809
|
-
filterByAdminDepartment?: boolean;
|
|
3810
|
-
/** 根据id查询。支持多选 */
|
|
3811
|
-
id?: number[];
|
|
3812
|
-
/** 身份证号查询。支持多选 */
|
|
3813
|
-
idCardNumber?: string[];
|
|
3814
|
-
idCardNumberLike?: string;
|
|
3815
|
-
/** 是否关联查询管理部门 */
|
|
3816
|
-
includeAdminDepartment?: boolean;
|
|
3817
|
-
/** 是否关联查询业务部门 */
|
|
3818
|
-
includeBusinessDepartment?: boolean;
|
|
3819
|
-
/** 是否关联查询权限 */
|
|
3820
|
-
includePermissionDetail?: boolean;
|
|
3821
|
-
/** 是否包含子部门(根据department参数,自动补充子部门) */
|
|
3822
|
-
includeSubDepartment?: boolean;
|
|
3823
|
-
/** 是否为已删除用户 */
|
|
3824
|
-
isDeleted?: boolean;
|
|
3825
|
-
/** 是否被锁定 */
|
|
3826
|
-
isLocked?: boolean;
|
|
3827
|
-
/** 最近登录IP */
|
|
3828
|
-
lastLoginIp?: string;
|
|
3829
|
-
/**
|
|
3830
|
-
* 最近登录时间大于
|
|
3831
|
-
* @format int64
|
|
3832
|
-
*/
|
|
3833
|
-
lastLoginTimeGte?: number;
|
|
3834
|
-
/**
|
|
3835
|
-
* 最近登录时间小于
|
|
3836
|
-
* @format int64
|
|
3837
|
-
*/
|
|
3838
|
-
lastLoginTimeLt?: number;
|
|
3839
|
-
loginName?: string;
|
|
3840
|
-
orderBy?: string[];
|
|
3841
|
-
/** @format int32 */
|
|
3842
|
-
pageIndex?: number;
|
|
3843
|
-
/** @format int32 */
|
|
3844
|
-
pageSize?: number;
|
|
3845
|
-
/** 根据权限code查询 */
|
|
3846
|
-
permissionCode?: string;
|
|
3847
|
-
/**
|
|
3848
|
-
* 根据权限id查询
|
|
3849
|
-
* @format int64
|
|
3850
|
-
*/
|
|
3851
|
-
permissionId?: number;
|
|
3852
|
-
/** 根据手机号查询 */
|
|
3853
|
-
phone?: string;
|
|
3854
|
-
phoneLike?: string;
|
|
3855
|
-
/** 根据警号批量查询 */
|
|
3856
|
-
policeCodeIn?: string[];
|
|
3857
|
-
/** 根据警号模糊查询 */
|
|
3858
|
-
policeCodeLike?: string;
|
|
3859
|
-
/**
|
|
3860
|
-
* 根据警员id查询
|
|
3861
|
-
* @format int64
|
|
3862
|
-
*/
|
|
3863
|
-
policeId?: number;
|
|
3864
|
-
/** 根据警员类型查询 */
|
|
3865
|
-
policeType?: string;
|
|
3866
|
-
/** 根据警员类型查询(批量) */
|
|
3867
|
-
policeTypeIn?: string[];
|
|
3868
|
-
/** 根据姓名查询 */
|
|
3869
|
-
realName?: string;
|
|
3870
|
-
/** 根据姓名批量查询 */
|
|
3871
|
-
realNameIn?: string[];
|
|
3872
|
-
realNameLike?: string;
|
|
3873
|
-
/**
|
|
3874
|
-
* 根据角色id查询
|
|
3875
|
-
* @format int64
|
|
3876
|
-
*/
|
|
3877
|
-
roleId?: number;
|
|
3878
|
-
/** 根据角色id查询 */
|
|
3879
|
-
roleIdIn?: number[];
|
|
3880
|
-
/** 根据角色名称查询 */
|
|
3881
|
-
roleName?: string;
|
|
3882
|
-
/** 根据角色名称批量查询 */
|
|
3883
|
-
roleNameIn?: string[];
|
|
3884
|
-
/** 根据用户名查询。支持多选 */
|
|
3885
|
-
username?: string[];
|
|
3886
|
-
/** 用户名模糊查询 */
|
|
3887
|
-
usernameLike?: string;
|
|
3888
|
-
}
|
|
3889
3869
|
export declare class GetListParams {
|
|
3890
3870
|
/** 根据可管理部门id查询。支持多选 */
|
|
3891
3871
|
adminDepartmentId?: number[];
|
|
@@ -4033,7 +4013,7 @@ interface HttpClient {
|
|
|
4033
4013
|
}
|
|
4034
4014
|
/**
|
|
4035
4015
|
* @title 授权服务
|
|
4036
|
-
* @version 1.2.
|
|
4016
|
+
* @version 1.2.41
|
|
4037
4017
|
* @baseUrl //192.168.200.12:5000
|
|
4038
4018
|
*
|
|
4039
4019
|
* 授权服务
|
|
@@ -6429,7 +6409,7 @@ declare class Api {
|
|
|
6429
6409
|
* @response `403` `void` Forbidden
|
|
6430
6410
|
* @response `404` `void` Not Found
|
|
6431
6411
|
*/
|
|
6432
|
-
exist: (query:
|
|
6412
|
+
exist: (query: ExistParams3, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
6433
6413
|
/**
|
|
6434
6414
|
* @description 所需权限:role:list
|
|
6435
6415
|
*
|
|
@@ -7042,7 +7022,7 @@ declare class Api {
|
|
|
7042
7022
|
* @response `403` `void` Forbidden
|
|
7043
7023
|
* @response `404` `void` Not Found
|
|
7044
7024
|
*/
|
|
7045
|
-
byId: ({ id, ...query }:
|
|
7025
|
+
byId: ({ id, ...query }: ByIdParams8, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
|
|
7046
7026
|
/**
|
|
7047
7027
|
* No description
|
|
7048
7028
|
*
|
|
@@ -7752,7 +7732,7 @@ declare class Api {
|
|
|
7752
7732
|
* @response `403` `void` Forbidden
|
|
7753
7733
|
* @response `404` `void` Not Found
|
|
7754
7734
|
*/
|
|
7755
|
-
exist: (query:
|
|
7735
|
+
exist: (query: ExistParams3, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
7756
7736
|
/**
|
|
7757
7737
|
* @description 所需权限:user:admin
|
|
7758
7738
|
*
|
package/auth.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
(()=>{"use strict";var t={491:(t,e,s)=>{s.d(e,{M:()=>a});const a={request(t){throw new Error("please setup http client first")}}}},e={};function s(a){var r=e[a];if(void 0!==r)return r.exports;var i=e[a]={exports:{}};return t[a](i,i.exports,s),i.exports}s.d=(t,e)=>{for(var a in e)s.o(e,a)&&!s.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},s.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var a={};(()=>{s.r(a),s.d(a,{AccessKey:()=>i,AccessKeyCreateRequest:()=>h,AccessToken:()=>n,AccessTokenByIdParams:()=>Na,AccessoryDTO:()=>u,AccessoryStats:()=>o,AddDictItem:()=>l,AddDictItemRequest:()=>c,Alarm:()=>m,AllDeviceMacAddressParams:()=>Os,AppRestResponse:()=>d,Area:()=>p,AskForExtendUserExpireDurationRequest:()=>g,BaseHint:()=>y,BindPhoneRequest:()=>O,ByIdParams:()=>Cs,ByIdParams10:()=>wa,CdtRequest:()=>b,CdtResponse:()=>P,ChangePasswordForm:()=>T,CheckInDeptAreaResult:()=>q,CheckParams:()=>gs,CheckResponse:()=>j,City:()=>B,ClearIpLimitParams:()=>ja,CommonXzqhParams:()=>js,ConfigCurrentUserDepartmentParams:()=>Sa,ConfigHistoryParams:()=>va,ConfigReq:()=>E,ConfigRes:()=>f,ConfigWithTimestamp:()=>U,ContentType:()=>t,DeleteBusinessDepartmentDepartmentUsersByUsernameParams:()=>mr,DeleteBusinessDepartmentDepartmentUsersParams:()=>or,DeleteDepartmentByIdParams:()=>sa,DeleteItemsByIdParams:()=>Ss,DeleteUserAccessoryParams:()=>rr,Department:()=>S,DepartmentAllChildrenBmdmByBmdmParams:()=>Ns,DepartmentArea:()=>D,DepartmentAreasByBmdmParams:()=>Xs,DepartmentChildrenByBmdmParams:()=>Zs,DepartmentChildrenByIdParams:()=>aa,DepartmentConfig:()=>G,DepartmentCreateBean:()=>I,DepartmentExistParams:()=>ta,DepartmentQueryBean:()=>$,DepartmentSimple:()=>v,DepartmentTree:()=>L,DepartmentTreeByBmdmParams:()=>Ys,DepartmentTreeParams:()=>ea,DepartmentUpdateBean:()=>C,DeptDictItem:()=>R,DeptDictionaryWithItems:()=>x,DesensitizePageResultPolice:()=>Ve,DesensitizePageResultUser:()=>Ne,DesensitizePageResultUserSimpleEx:()=>Je,DesensitizePageResultUserSimpleWithLocation:()=>_e,DeviceDTO:()=>A,DeviceInfo:()=>k,DictItem:()=>w,Dictionary:()=>z,DictionaryCreateBean:()=>M,DictionaryUpdateBean:()=>F,DictionaryWithItems:()=>H,DynamicCodeLoginForm:()=>K,EntityDigest:()=>W,ExistParams:()=>ca,ExistParams6:()=>Oa,ExistParams8:()=>gr,ExtendExpireRequest:()=>Q,ExternalUserDTO:()=>V,ExtraInfo:()=>J,ExtraSecurityMeta:()=>_,FaceIdentifyGetInfoByIdParams:()=>Xa,FaceIdentifyGetUserIdKeyResponse:()=>N,FaceIdentifyGetUserInfo:()=>X,FileObjectMeta:()=>Z,FindByNameParams:()=>Bs,FindMergedParams:()=>qs,FindParams:()=>Ts,GenDeviceIdResult:()=>Y,GenerateUrlLinkByIdParams:()=>Za,GenerateUrlLinkParams:()=>hr,GetAccessoryParams:()=>os,GetBindingUserByIdParams:()=>Ya,GetConfigCurrentUserParams:()=>fa,GetConfigDepartmentConfigParams:()=>Ia,GetConfigDepartmentParams:()=>Da,GetConfigParams:()=>Ea,GetConfigUserParams:()=>La,GetDepartmentExtraPermissionsByIdParams:()=>qa,GetDepartmentParams:()=>_s,GetDeviceParams:()=>ys,GetDictionaryParams:()=>Ps,GetLedgerPushPlanParams:()=>Gs,GetListParams:()=>yr,GetMyTraceParams:()=>Rs,GetPermissionParams:()=>la,GetPoliceParams:()=>ra,GetRoleParams:()=>ya,GetStayPointByUsernameParams:()=>xs,GetThirdPlatformParams:()=>_a,GetTraceByUsernameParams:()=>As,GetUserAccessoryParams:()=>sr,GetUserParams:()=>er,HandlerStoreStats:()=>tt,Health:()=>et,IPBlock:()=>st,IdCardLoginForm:()=>at,ImportResultPoliceImportResultDetail:()=>Xe,IpBlockParams:()=>Ds,ItemsByDictionaryIdParams:()=>Us,ItemsParams:()=>Es,JwtLoginForm:()=>rt,KeyRuleReq:()=>it,KeyRuleRes:()=>ht,Latlng:()=>nt,Ledger:()=>ut,LedgerPushPlanEntity:()=>ot,LedgerSimple:()=>lt,LedgerWriteRequest:()=>ct,LieyingFlushUserDailyPointsParams:()=>ks,LieyingGetStayPointByUsernameParams:()=>ws,LieyingGetTraceByUsernameParams:()=>zs,LieyingKeyRulesCurrentKeyParams:()=>Ms,LieyingTraceOfMineParams:()=>Fs,ListCreateByMeParams:()=>Pa,ListParams:()=>ba,ListSimpleParams:()=>Ta,LocationAlarmObject:()=>Ze,LocationUploadRequest:()=>mt,LoginLedgerParams:()=>Is,LoginLedgerSelfParams:()=>$s,LoginRegisterRequest:()=>dt,LoginResponse:()=>pt,LoginResult:()=>gt,LogoutResult:()=>yt,MessageBody:()=>Ot,MessageBodyWithReceiverObject:()=>Ye,MessageSendRequest:()=>bt,MessageSessionOnlineUsersCountParams:()=>Pr,MessageSessionOnlineUsersParams:()=>br,MultiUserQuery:()=>Pt,MultiUserQueryForTimeRange:()=>Tt,MultiUserTrackQuery:()=>qt,MultiUserTrackTimeRangeQuery:()=>jt,OnlineTimeRangeByUsernameParams:()=>Hs,OperateLedgerParams:()=>vs,PageResultAccessoryDTO:()=>ts,PageResultDeviceDTO:()=>es,PageResultDictionary:()=>ss,PageResultExternalUserDTO:()=>as,PageResultIPBlock:()=>rs,PageResultLedgerPushPlanEntity:()=>is,PageResultLedgerSimple:()=>hs,PageResultString:()=>us,PageResultThirdPlatformEntity:()=>ns,PasswordForm:()=>Bt,Permission:()=>Et,PermissionOptions:()=>ft,Point:()=>Ut,Police:()=>St,PoliceCreateBean:()=>Dt,PoliceExistParams:()=>ia,PoliceFindByJybhParams:()=>ha,PoliceImportParams:()=>na,PoliceImportResultDetail:()=>Gt,PoliceQueryBean:()=>It,PoliceUpdateBean:()=>$t,PoliceUserCreateBean:()=>vt,PoliceUserUpdateBean:()=>Lt,PostBusinessDepartmentDepartmentUsersByUsernameParams:()=>lr,PostBusinessDepartmentDepartmentUsersParams:()=>nr,PostConfigCurrentUserParams:()=>Ua,PostConfigDepartmentConfigParams:()=>$a,PostConfigDepartmentParams:()=>Ga,PostConfigUserParams:()=>Ca,ProcessStartBean:()=>Ct,Province:()=>Rt,ProxyByIspParams:()=>Ma,ProxyPushHandlerDepartmentConfigParams:()=>Fa,ProxyRequest:()=>xt,ProxyResponse:()=>At,PushDepartmentByDepartmentParams:()=>Ka,PushDepartmentConfigByDepartmentParams:()=>Ha,PushDictionaryParams:()=>Wa,PushResourceByResourceIdParams:()=>Qa,PushRoleParams:()=>Va,PutBindParams:()=>Qs,PutBusinessDepartmentDepartmentUsersByUsernameParams:()=>cr,PutBusinessDepartmentDepartmentUsersParams:()=>ur,PutBusinessDepartmentUserDepartmentsByUsernameParams:()=>pr,PutBusinessDepartmentUserDepartmentsParams:()=>dr,PutPoliceSyncBatchParams:()=>ua,PutPoliceSyncByIdParams:()=>oa,PutUnbindParams:()=>Js,PutUserAccessoryParams:()=>ar,PutUsernameByIdParams:()=>Or,ReadUserConfigRequest:()=>kt,ReasonForm:()=>wt,RedundantInfo:()=>zt,RefreshParams:()=>tr,RemoveDictItemRequest:()=>Mt,RequestShortAuthenticationParams:()=>ga,Resource:()=>Ft,Role:()=>Ht,RoleCreateBean:()=>Kt,RoleDepartmentExtraPermissionSetBean:()=>Wt,RoleParams:()=>Ja,RoleSimple:()=>Qt,RoleTransDTO:()=>Vt,RoleUpdateBean:()=>Jt,SafetyLedgerParams:()=>Ls,ScheduleCheckInRequest:()=>_t,SdtaLoginForm:()=>Nt,SendLoginVerifyCodeParams:()=>Ba,SendMessageRequest:()=>Xt,SendResponse:()=>Zt,SetHeartbeatIntervalBySnParams:()=>ls,SetHeartbeatIntervalParams:()=>Vs,SmsVerifyCheckRequest:()=>Yt,SmsVerifyRequest:()=>te,SseEmitter:()=>ee,StayAtDeptTooLongAlarm:()=>se,StayPoint:()=>ae,StopTooLongAlarm:()=>re,SwitchUserRequest:()=>ie,SyncDepartmentHint:()=>he,SyncUserHint:()=>ne,ThirdPlatformBinding:()=>ue,ThirdPlatformEntity:()=>oe,ThirdPlatformEnum:()=>le,ThirdPlatformHomeByIdParams:()=>pa,ThirdPlatformLoginRequest:()=>ce,ThirdPlatformLoginResponse:()=>me,ThirdPlatformNotificationParams:()=>ms,ThirdPlatformTrustwayPortalLoginByAppIdParams:()=>ma,ThirdPlatformZjzzLoginByAppIdParams:()=>da,ThumbnailByIdParams:()=>za,TimeRange:()=>de,TimeRange0:()=>pe,ToOssParams:()=>Aa,Token:()=>ge,TraceOfMineParams:()=>Ks,TtsBySnParams:()=>cs,UploadPayload:()=>ka,User:()=>ye,UserAccessoryLoginForm:()=>Oe,UserBatchUpdateBean:()=>be,UserBindingsTransDTO:()=>Pe,UserBusinessDepartment:()=>Te,UserConfigs:()=>qe,UserCreateBean:()=>je,UserDeviceChangeHistoryParams:()=>bs,UserExternalParams:()=>ir,UserInfoParams:()=>ds,UserLocation:()=>Be,UserLocationCheckParams:()=>Ws,UserLocationParams:()=>ps,UserLocationQueryBean:()=>Ee,UserLocationRequest:()=>fe,UserLocationTrace:()=>Ue,UserOnlineTimeRanges:()=>Se,UserOrganizationUpdateBean:()=>De,UserPhoneLoginForm:()=>Ge,UserProfile:()=>Ie,UserProfileAdditional:()=>$e,UserProfileUpdateBean:()=>ve,UserPublicInfo:()=>Le,UserQueryBean:()=>Ce,UserRestriction:()=>Re,UserSimpleEx:()=>xe,UserSimpleWithAuth:()=>Ae,UserSimpleWithLocation:()=>ke,UserSmsVerifyRequest:()=>we,UserStatus:()=>ze,UserStayPoints:()=>Me,UserTrackQuery:()=>Fe,UserUpdateBean:()=>He,UsernamePasswordLoginForm:()=>Ke,VerifyCodeRequest:()=>We,WebSocketBrokerStats:()=>Qe,WithItemsParams:()=>fs,WsByTopicParams:()=>xa,WsParams:()=>Ra,authApi:()=>Tr});var t,e=s(491),r=function(t,e){var s={};for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&e.indexOf(a)<0&&(s[a]=t[a]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(a=Object.getOwnPropertySymbols(t);r<a.length;r++)e.indexOf(a[r])<0&&Object.prototype.propertyIsEnumerable.call(t,a[r])&&(s[a[r]]=t[a[r]])}return s};class i{}class h{}class n{}class u{}class o{}class l{}class c{}class m{}class d{}class p{}class g{}class y{}class O{}class b{}class P{}class T{}class q{}class j{}class B{}class E{}class f{}class U{}class S{}class D{}class G{}class I{}class ${}class v{}class L{}class C{}class R{}class x{}class A{}class k{}class w{}class z{}class M{}class F{}class H{}class K{}class W{}class Q{}class V{}class J{}class _{}class N{}class X{}class Z{}class Y{}class tt{}class et{}class st{}class at{}class rt{}class it{}class ht{}class nt{}class ut{}class ot{}class lt{}class ct{}class mt{}class dt{}class pt{}class gt{}class yt{}class Ot{}class bt{}class Pt{}class Tt{}class qt{}class jt{}class Bt{}class Et{}class ft{}class Ut{}class St{}class Dt{}class Gt{}class It{}class $t{}class vt{}class Lt{}class Ct{}class Rt{}class xt{}class At{}class kt{}class wt{}class zt{}class Mt{}class Ft{}class Ht{}class Kt{}class Wt{}class Qt{}class Vt{}class Jt{}class _t{}class Nt{}class Xt{}class Zt{}class Yt{}class te{}class ee{}class se{}class ae{}class re{}class ie{}class he{}class ne{}class ue{}class oe{}class le{}class ce{}class me{}class de{}class pe{}class ge{}class ye{}class Oe{}class be{}class Pe{}class Te{}class qe{}class je{}class Be{}class Ee{}class fe{}class Ue{}class Se{}class De{}class Ge{}class Ie{}class $e{}class ve{}class Le{}class Ce{}class Re{}class xe{}class Ae{}class ke{}class we{}class ze{}class Me{}class Fe{}class He{}class Ke{}class We{}class Qe{}class Ve{}class Je{}class _e{}class Ne{}class Xe{}class Ze{}class Ye{}class ts{}class es{}class ss{}class as{}class rs{}class is{}class hs{}class ns{}class us{}class os{}class ls{}class cs{}class ms{}class ds{}class ps{}class gs{}class ys{}class Os{}class bs{}class Ps{}class Ts{}class qs{}class js{}class Bs{}class Es{}class fs{}class Us{}class Ss{}class Ds{}class Gs{}class Is{}class $s{}class vs{}class Ls{}class Cs{}class Rs{}class xs{}class As{}class ks{}class ws{}class zs{}class Ms{}class Fs{}class Hs{}class Ks{}class Ws{}class Qs{}class Vs{}class Js{}class _s{}class Ns{}class Xs{}class Zs{}class Ys{}class ta{}class ea{}class sa{}class aa{}class ra{}class ia{}class ha{}class na{}class ua{}class oa{}class la{}class ca{}class ma{}class da{}class pa{}class ga{}class ya{}class Oa{}class ba{}class Pa{}class Ta{}class qa{}class ja{}class Ba{}class Ea{}class fa{}class Ua{}class Sa{}class Da{}class Ga{}class Ia{}class $a{}class va{}class La{}class Ca{}class Ra{}class xa{}class Aa{}class ka{}class wa{}class za{}class Ma{}class Fa{}class Ha{}class Ka{}class Wa{}class Qa{}class Va{}class Ja{}class _a{}class Na{}class Xa{}class Za{}class Ya{}class tr{}class er{}class sr{}class ar{}class rr{}class ir{}class hr{}class nr{}class ur{}class or{}class lr{}class cr{}class mr{}class dr{}class pr{}class gr{}class yr{}class Or{}class br{}class Pr{}!function(t){t.Json="application/json",t.FormData="multipart/form-data",t.UrlEncoded="application/x-www-form-urlencoded"}(t||(t={}));const Tr=new class{constructor(t){this.accessory={getAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/accessory",method:"GET",params:t},e)),postAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/accessory",method:"POST",data:t},e)),getBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}`,method:"GET"},e)),deleteBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}`,method:"DELETE"},e)),setHeartbeatIntervalBySn:(t,e)=>{var{sn:s}=t,a=r(t,["sn"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/accessory/${s}/set-heartbeat-interval`,method:"POST",params:a},e))},statsBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}/stats`,method:"GET"},e)),ttsBySn:(t,e)=>{var{sn:s}=t,a=r(t,["sn"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/accessory/${s}/tts`,method:"POST",params:a},e))}},this.alarm={emit:(t,e={})=>this.http.request(Object.assign({url:"/auth/alarm/emit",method:"POST",data:t},e))},this.authCodeCapability={thirdPlatformNotification:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/third-platform-notification",method:"POST",params:t},e)),userInfo:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/user-info",method:"GET",params:t},e)),userLocation:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/user-location",method:"GET",params:t},e))},this.captcha={captcha:(t={})=>this.http.request(Object.assign({url:"/auth/captcha",method:"GET"},t))},this.check={check:(t,e={})=>this.http.request(Object.assign({url:"/auth/check",method:"GET",params:t},e))},this.checkPassword={putCheckPassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/check-password",method:"PUT",data:t},e))},this.countOnlineUser={countOnlineUser:(t={})=>this.http.request(Object.assign({url:"/auth/count-online-user",method:"GET"},t))},this.currentUserPhoneBindUsers={currentUserPhoneBindUsers:(t={})=>this.http.request(Object.assign({url:"/auth/current-user-phone-bind-users",method:"GET"},t))},this.device={getDevice:(t,e={})=>this.http.request(Object.assign({url:"/auth/device",method:"GET",params:t},e)),postDevice:(t,e={})=>this.http.request(Object.assign({url:"/auth/device",method:"POST",data:t},e)),allDeviceMacAddress:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/all-device-mac-address",method:"GET",params:t},e)),putCurrent:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/current",method:"PUT",data:t},e)),userDeviceChangeHistory:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/user-device-change-history",method:"GET",params:t},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/device/${t}`,method:"DELETE"},e))},this.dictionary={getDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary",method:"GET",params:t},e)),postDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary",method:"POST",data:t},e)),commonXzqh:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/common/xzqh",method:"GET",params:t},e)),findByName:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/find-by-name",method:"GET",params:t},e)),items:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/items",method:"GET",params:t},e)),withItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/with-items",method:"GET",params:t},e)),itemsByDictionaryId:(t,e)=>{var{dictionaryId:s}=t,a=r(t,["dictionaryId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/dictionary/${s}/items`,method:"GET",params:a},e))},getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"DELETE"},e)),putItemsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}/items`,method:"PUT",data:e},s)),deleteItemsById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/dictionary/${s}/items`,method:"DELETE",params:a},e))},deleteItemsByIdAndItemId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}/items/${e}`,method:"DELETE"},s))},this.dictionaryForDept={addItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/add-items",method:"POST",data:t},e)),create:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/create",method:"POST",data:t},e)),find:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/find",method:"GET",params:t},e)),findMerged:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/find-merged",method:"GET",params:t},e)),removeItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/remove-items",method:"POST",data:t},e))},this.health={health:(t={})=>this.http.request(Object.assign({url:"/auth/health",method:"GET"},t))},this.ipBlock={ipBlock:(t,e={})=>this.http.request(Object.assign({url:"/auth/ip-block",method:"GET",params:t},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"DELETE"},e)),putDisableById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}/disable`,method:"PUT"},e)),putEnableById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}/enable`,method:"PUT"},e)),getByIp:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"GET"},e)),putByIp:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"PUT"},e))},this.ledger={getLedgerPushPlan:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"GET",params:t},e)),postLedgerPushPlan:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"POST",data:t},e)),deleteLedgerPushPlan:(t={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"DELETE"},t)),deleteLedgerPushPlanById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ledger/ledger-push-plan/${t}`,method:"DELETE"},e)),ledgerPushPlanRunById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ledger/ledger-push-plan/${t}/run`,method:"POST"},e)),loginLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/login-ledger",method:"GET",params:t},e)),loginLedgerSelf:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/login-ledger-self",method:"GET",params:t},e)),operateLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/operate-ledger",method:"GET",params:t},e)),safetyLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/safety-ledger",method:"GET",params:t},e)),write:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/write",method:"POST",data:t},e)),byId:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/ledger/${s}`,method:"GET",params:a},e))}},this.location={alarmStayAtDeptTooLong:(t={})=>this.http.request(Object.assign({url:"/auth/location/alarm/stay-at-dept-too-long",method:"GET"},t)),alarmStayTooLong:(t={})=>this.http.request(Object.assign({url:"/auth/location/alarm/stay-too-long",method:"GET"},t)),getLocationByAuthCodeByAuthCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/get-location-by-auth-code/${t}`,method:"GET"},e)),getLocationByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/get-location/${t}`,method:"GET"},e)),getMyLocation:(t={})=>this.http.request(Object.assign({url:"/auth/location/get-my-location",method:"GET"},t)),getMyTrace:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/get-my-trace",method:"GET",params:t},e)),getStayPointMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/get-stay-point/multi-user",method:"POST",data:t},e)),getStayPointByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/get-stay-point/${s}`,method:"GET",params:a},e))},getTraceByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/get-trace/${s}`,method:"GET",params:a},e))},lieyingFlushUserDailyPoints:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/flush-user-daily-points",method:"POST",params:t},e)),lieyingGetStayPointMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-stay-point/multi-user",method:"POST",data:t},e)),lieyingGetStayPointByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/lieying/get-stay-point/${s}`,method:"GET",params:a},e))},lieyingGetTraceByTimeRangeMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-trace-by-time-range/multi-user",method:"POST",data:t},e)),lieyingGetTraceMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-trace/multi-user",method:"POST",data:t},e)),lieyingGetTraceByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/lieying/get-trace/${s}`,method:"GET",params:a},e))},lieyingHandlerStoreStats:(t={})=>this.http.request(Object.assign({url:"/auth/location/lieying/handler-store-stats",method:"GET"},t)),getLieyingKeyRules:(t={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules",method:"GET"},t)),postLieyingKeyRules:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules",method:"POST",data:t},e)),lieyingKeyRulesCurrentKey:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules/current-key",method:"GET",params:t},e)),deleteLieyingKeyRulesById:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/lieying/key-rules/${t}`,method:"DELETE"},e)),lieyingTraceOfMine:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/trace-of-mine",method:"GET",params:t},e)),list:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/list",method:"POST",data:t},e)),listByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/list/by-username",method:"POST",data:t},e)),onlineTimeRangeMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/online-time-range/multi-user",method:"POST",data:t},e)),onlineTimeRangeByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/online-time-range/${s}`,method:"GET",params:a},e))},point:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/point",method:"POST",data:t},e)),publicPoint:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/public/point",method:"POST",data:t},e)),traceOfMine:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/trace-of-mine",method:"GET",params:t},e)),userAlarmsByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/user-alarms/${t}`,method:"GET"},e)),userLocationCheck:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/user-location/check",method:"GET",params:t},e))},this.login={login:(t,e={})=>this.http.request(Object.assign({url:"/auth/login",method:"POST",data:t},e))},this.loginByAccessory={loginByAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-accessory",method:"POST",data:t},e))},this.loginByDynamicCode={loginByDynamicCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-dynamic-code",method:"POST",data:t},e))},this.loginByIdCard={loginByIdCard:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-id-card",method:"POST",data:t},e))},this.loginByJwt={loginByJwt:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-jwt",method:"POST",data:t},e))},this.loginByPhone={loginByPhone:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-phone",method:"POST",data:t},e))},this.loginByThirdPlatformCode={loginByThirdPlatformCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-third-platform-code",method:"POST",data:t},e))},this.loginDanger={loginDanger:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-danger",method:"POST",data:t},e)),byLoginName:(t,e={})=>this.http.request(Object.assign({url:`/auth/login-danger/${t}`,method:"POST"},e))},this.logout={logout:(t={})=>this.http.request(Object.assign({url:"/auth/logout",method:"POST"},t))},this.me={getMe:(t={})=>this.http.request(Object.assign({url:"/auth/me",method:"GET"},t)),putMe:(t,e={})=>this.http.request(Object.assign({url:"/auth/me",method:"PUT",data:t},e)),putChangePassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/me/change-password",method:"PUT",data:t},e)),extraSecurityMetas:(t={})=>this.http.request(Object.assign({url:"/auth/me/extra-security-metas",method:"GET"},t)),permissions:(t={})=>this.http.request(Object.assign({url:"/auth/me/permissions",method:"GET"},t))},this.myAccessory={myAccessory:(t={})=>this.http.request(Object.assign({url:"/auth/my-accessory",method:"GET"},t)),putBind:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/bind",method:"PUT",params:t},e)),setHeartbeatInterval:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/set-heartbeat-interval",method:"POST",params:t},e)),putUnbind:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/unbind",method:"PUT",params:t},e))},this.organization={getDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department",method:"GET",params:t},e)),postDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department",method:"POST",data:t},e)),departmentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}`,method:"GET"},e)),departmentAllChildrenBmdmByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/all-children-bmdm`,method:"GET",params:a},e))},departmentAllParentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/all-parent`,method:"GET"},e)),departmentAllParentBmdmByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/all-parent-bmdm`,method:"GET"},e)),departmentAreasByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/areas`,method:"GET",params:a},e))},departmentBrothersByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/brothers`,method:"GET"},e)),departmentChildrenByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/children`,method:"GET",params:a},e))},departmentLocationByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/location`,method:"GET"},e)),departmentParentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/parent`,method:"GET"},e)),departmentTreeByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/tree`,method:"GET",params:a},e))},deleteDepartmentCacheClear:(t={})=>this.http.request(Object.assign({url:"/auth/organization/department/cache-clear",method:"DELETE"},t)),departmentExist:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/exist",method:"GET",params:t},e)),departmentImport:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/import",method:"POST",data:t},e)),departmentList:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/list",method:"POST",data:t},e)),departmentResetDigest:(t={})=>this.http.request(Object.assign({url:"/auth/organization/department/reset-digest",method:"GET"},t)),departmentTree:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/tree",method:"GET",params:t},e)),getDepartmentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}`,method:"GET"},e)),putDepartmentById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}`,method:"PUT",data:e},s)),deleteDepartmentById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/${s}`,method:"DELETE",params:a},e))},departmentAllParentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/all-parent`,method:"GET"},e)),departmentBrothersById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/brothers`,method:"GET"},e)),departmentChildrenById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/${s}/children`,method:"GET",params:a},e))},departmentParentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/parent`,method:"GET"},e)),getPolice:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police",method:"GET",params:t},e)),postPolice:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police",method:"POST",data:t},e)),policeExist:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/exist",method:"GET",params:t},e)),policeFindByJybh:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/find-by-jybh",method:"GET",params:t},e)),policeImport:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/organization/police/import",method:"POST",params:t,data:e},s)),policeList:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/list",method:"POST",data:t},e)),putPoliceSyncBatch:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/sync-batch",method:"PUT",params:t},e)),putPoliceSyncCurrentUserPolice:(t={})=>this.http.request(Object.assign({url:"/auth/organization/police/sync-current-user-police",method:"PUT"},t)),getPoliceById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"GET"},e)),putPoliceById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"PUT",data:e},s)),deletePoliceById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"DELETE"},e)),putPoliceSyncById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/police/${s}/sync`,method:"PUT",params:a},e))}},this.permission={getPermission:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission",method:"GET",params:t},e)),postPermission:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission",method:"POST",data:t},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission/exist",method:"GET",params:t},e)),getByCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"GET"},e)),putByCode:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"PUT",data:e},s)),deleteByCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"DELETE"},e)),putOptionsByCode:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/permission/${t}/options`,method:"PUT",data:e},s))},this.policeLogin={policeLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/police-login",method:"POST",data:t},e))},this.policeUser={policeUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/police-user",method:"POST",data:t},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}`,method:"PUT",data:e},s)),putDeleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}/delete`,method:"PUT"},e)),putRestoreById:(t,e={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}/restore`,method:"PUT"},e))},this.public={commonGenDeviceId:(t={})=>this.http.request(Object.assign({url:"/auth/public/common/gen-device-id",method:"GET"},t)),processAskForExtendUserExpireDuration:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/process/ask-for-extend-user-expire-duration",method:"POST",data:t},e)),thirdPlatformSdtaBpmnProcessStart:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/bpmn/process/start",method:"POST",data:t},e)),thirdPlatformSdtaDutyScheduleCheckInToday:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/duty/schedule/check-in-today",method:"POST",data:t},e)),thirdPlatformSdtaDutyScheduleCheckOutToday:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/duty/schedule/check-out-today",method:"POST",data:t},e)),thirdPlatformSdtaLocationUpload:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/location-upload",method:"POST",data:t},e)),thirdPlatformSdtaLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/login",method:"POST",data:t},e)),thirdPlatformTrustwayPortalDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/trustway-portal/department",method:"POST",data:t},e)),thirdPlatformTrustwayPortalUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/trustway-portal/user",method:"POST",data:t},e)),thirdPlatformTrustwayPortalLoginByAppId:(t,e)=>{var{appId:s}=t,a=r(t,["appId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/trustway-portal/${s}/login`,method:"GET",params:a},e))},thirdPlatformZjzzLoginByAppId:(t,e)=>{var{appId:s}=t,a=r(t,["appId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/zjzz/${s}/login`,method:"GET",params:a},e))},thirdPlatformAccessTokenById:(t,e={})=>this.http.request(Object.assign({url:`/auth/public/third-platform/${t}/access-token`,method:"GET"},e)),thirdPlatformHomeById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/${s}/home`,method:"GET",params:a},e))}},this.requestShortAuthentication={requestShortAuthentication:(t,e={})=>this.http.request(Object.assign({url:"/auth/request-short-authentication",method:"GET",params:t},e))},this.role={getRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/role",method:"GET",params:t},e)),postRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/role",method:"POST",data:t},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/exist",method:"GET",params:t},e)),list:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list",method:"GET",params:t},e)),listCreateByMe:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list-create-by-me",method:"GET",params:t},e)),listSimple:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list-simple",method:"GET",params:t},e)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"DELETE"},e)),getDepartmentExtraPermissionsById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/role/${s}/department-extra-permissions`,method:"GET",params:a},e))},putDepartmentExtraPermissionsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/role/${t}/department-extra-permissions`,method:"PUT",data:e},s))},this.security={accessKeyGenerate:(t,e={})=>this.http.request(Object.assign({url:"/auth/security/access-key/generate",method:"POST",data:t},e)),accessKeyList:(t={})=>this.http.request(Object.assign({url:"/auth/security/access-key/list",method:"GET"},t)),deleteAccessKeyByAk:(t,e={})=>this.http.request(Object.assign({url:`/auth/security/access-key/${t}`,method:"DELETE"},e)),clearIpLimit:(t,e={})=>this.http.request(Object.assign({url:"/auth/security/clear-ip-limit",method:"POST",params:t},e))},this.sendLoginVerifyCode={sendLoginVerifyCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/send-login-verify-code",method:"POST",params:t},e))},this.settings={getConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config",method:"GET",params:t},e)),postConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config",method:"POST",data:t},e)),getConfigAuth:(t={})=>this.http.request(Object.assign({url:"/auth/settings/config/auth",method:"GET"},t)),postConfigAuth:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/auth",method:"POST",data:t},e)),getConfigCurrentUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user",method:"GET",params:t},e)),postConfigCurrentUser:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user",method:"POST",params:t,data:e},s)),configCurrentUserDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user-department",method:"GET",params:t},e)),getConfigDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/department",method:"GET",params:t},e)),postConfigDepartment:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/department",method:"POST",params:t,data:e},s)),getConfigDepartmentConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/department-config",method:"GET",params:t},e)),postConfigDepartmentConfig:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/department-config",method:"POST",params:t,data:e},s)),configDepartmentConfigByKeysByDepartment:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/settings/config/department/${t}/config-by-keys`,method:"POST",data:e},s)),configHistory:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/history",method:"GET",params:t},e)),configPublic:(t={})=>this.http.request(Object.assign({url:"/auth/settings/config/public",method:"GET"},t)),getConfigUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/user",method:"GET",params:t},e)),postConfigUser:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/user",method:"POST",params:t,data:e},s)),configUsers:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/users",method:"POST",data:t},e))},this.smsVerify={check:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/check",method:"POST",data:t},e)),resetRateCheckByTarget:(t,e={})=>this.http.request(Object.assign({url:`/auth/sms-verify/reset-rate-check/${t}`,method:"POST"},e)),send:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send",method:"POST",data:t},e)),sendForLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send-for-login",method:"POST",data:t},e)),sendForResetPassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send-for-reset-password",method:"POST",data:t},e))},this.sms={send:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms/send",method:"POST",data:t},e))},this.sse={test:(t={})=>this.http.request(Object.assign({url:"/auth/sse/test",method:"GET"},t)),topicListeners:(t={})=>this.http.request(Object.assign({url:"/auth/sse/topic-listeners",method:"GET"},t)),ws:(t,e={})=>this.http.request(Object.assign({url:"/auth/sse/ws",method:"GET",params:t},e)),wsByTopic:(t,e)=>{var{topic:s}=t,a=r(t,["topic"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sse/ws/${s}`,method:"GET",params:a},e))}},this.staticResource={excelByFile:(t,e={})=>this.http.request(Object.assign({url:`/auth/static-resource/excel/${t}`,method:"GET"},e))},this.storageTransfer={toOss:(t,e={})=>this.http.request(Object.assign({url:"/auth/storage-transfer/to-oss",method:"POST",params:t},e))},this.storage={upload:(t,e={})=>this.http.request(Object.assign({url:"/auth/storage/upload",method:"POST",data:t},e)),byId:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/storage/${s}`,method:"GET",params:a},e))},metaById:(t,e={})=>this.http.request(Object.assign({url:`/auth/storage/${t}/meta`,method:"GET"},e)),thumbnailById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/storage/${s}/thumbnail`,method:"GET",params:a},e))}},this.switchUser={switchUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/switch-user",method:"POST",data:t},e))},this.sync={commonDepartmentConfigKeys:(t={})=>this.http.request(Object.assign({url:"/auth/sync/common-department-config-keys",method:"GET"},t)),departmentByBmdm:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/department/${t}`,method:"POST",data:e},s)),proxy:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy",method:"POST",data:t},e)),proxyByIsp:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-by-isp",method:"POST",params:t,data:e},s)),proxyPushHandlerDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/department",method:"POST",data:t},e)),proxyPushHandlerDepartmentConfig:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/department-config",method:"POST",params:t,data:e},s)),proxyPushHandlerDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/dictionary",method:"POST",data:t},e)),proxyPushHandlerRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/role",method:"POST",data:t},e)),proxyPushHandlerUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/user",method:"POST",data:t},e)),proxyPushHandlerUserBindings:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/user-bindings",method:"POST",data:t},e)),pushDepartmentConfigByDepartment:(t,e,s)=>{var{department:a}=t,i=r(t,["department"]);return void 0===s&&(s={}),this.http.request(Object.assign({url:`/auth/sync/push/department-config/${a}`,method:"POST",params:i,data:e},s))},pushDepartmentByDepartment:(t,e)=>{var{department:s}=t,a=r(t,["department"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sync/push/department/${s}`,method:"POST",params:a},e))},pushDictionary:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/push/dictionary",method:"POST",params:t,data:e},s)),pushResourceByResourceId:(t,e)=>{var{resourceId:s}=t,a=r(t,["resourceId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sync/push/resource/${s}`,method:"POST",params:a},e))},pushRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/push/role",method:"POST",params:t},e)),pushUserByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/sync/push/user/${t}`,method:"POST"},e)),resourceByResourceId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/resource/${t}`,method:"POST",data:e},s)),role:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/role",method:"POST",params:t,data:e},s)),userByUsername:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/user/${t}`,method:"POST",data:e},s)),userSignatureByUsername:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/user/${t}/signature`,method:"POST",data:e},s))},this.thirdPlatform={getThirdPlatform:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform",method:"GET",params:t},e)),postThirdPlatform:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform",method:"POST",data:t},e)),categories:(t={})=>this.http.request(Object.assign({url:"/auth/third-platform/categories",method:"GET"},t)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}`,method:"GET"},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}`,method:"DELETE"},e)),accessTokenById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/access-token`,method:"GET",params:a},e))},faceIdentifyGetInfoById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/face-identify/get-info`,method:"GET",params:a},e))},faceIdentifyUserIdKeyById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}/face-identify/user-id-key`,method:"GET"},e)),generateUrlLinkById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/generate-url-link`,method:"GET",params:a},e))},getBindingUserById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/get-binding-user`,method:"GET",params:a},e))},sendMessageById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}/send-message`,method:"POST",data:e},s))},this.thirdPlatformBinding={userBindingImport:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform-binding/user-binding/import",method:"POST",data:t},e)),userBindingByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform-binding/user-binding/${t}`,method:"GET"},e)),userBindingUnbindByUsernameAndAppId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/third-platform-binding/user-binding/${e}/unbind/${t}`,method:"POST"},s))},this.time={time:(t={})=>this.http.request(Object.assign({url:"/auth/time",method:"GET"},t))},this.token={refresh:(t,e={})=>this.http.request(Object.assign({url:"/auth/token/refresh",method:"GET",params:t},e))},this.user={getUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/user",method:"GET",params:t},e)),postUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/user",method:"POST",data:t},e)),postBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"POST",params:t,data:e},s)),putBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"PUT",params:t,data:e},s)),deleteBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"DELETE",params:t,data:e},s)),postBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"POST",params:t,data:e},s)),putBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"PUT",params:t,data:e},s)),deleteBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"DELETE",params:t,data:e},s)),putBusinessDepartmentUserDepartments:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/user-departments",method:"PUT",params:t,data:e},s)),putBusinessDepartmentUserDepartmentsByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/user-departments-by-username",method:"PUT",params:t,data:e},s)),clearCacheByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/clear-cache/${t}`,method:"GET"},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/exist",method:"GET",params:t},e)),extendUserExpire:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/extend-user-expire",method:"POST",data:t},e)),extendUserPasswordExpire:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/extend-user-password-expire",method:"POST",data:t},e)),findByUsernameByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/find-by-username/${t}`,method:"GET"},e)),findByUsernameSimpleByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/find-by-username/${t}/simple`,method:"GET"},e)),getList:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list",method:"GET",params:t},e)),postList:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list",method:"POST",data:t},e)),listSimpleInfo:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list-simple-info",method:"POST",data:t},e)),listSimple:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple",method:"POST",data:t},e)),listSimpleByRealname:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-by-realname",method:"POST",data:t},e)),listSimpleByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-by-username",method:"POST",data:t},e)),listSimpleWithLocation:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-with-location",method:"POST",data:t},e)),listSimpleWithLocationByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-with-location-by-username",method:"POST",data:t},e)),listUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/username",method:"POST",data:t},e)),putUpdateInBatch:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/update-in-batch",method:"PUT",data:t},e)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"DELETE"},e)),getAdminDepartmentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/admin-department`,method:"GET"},e)),putAdminDepartmentById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/admin-department`,method:"PUT",data:e},s)),putChangePasswordById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/change-password`,method:"PUT",data:e},s)),putDeleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/delete`,method:"PUT"},e)),putLockById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/lock`,method:"PUT",data:e},s)),putOrganizationById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/organization`,method:"PUT",data:e},s)),putPermissionsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/permissions`,method:"PUT",data:e},s)),putResetPasswordById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/reset-password`,method:"PUT"},e)),putRestoreById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/restore`,method:"PUT"},e)),putRestrictionById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/restriction`,method:"PUT",data:e},s)),putUnlockById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/unlock`,method:"PUT"},e)),putUsernameById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/user/${s}/username`,method:"PUT",params:a},e))}},this.userAccessory={getUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"GET",params:t},e)),putUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"PUT",params:t},e)),deleteUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"DELETE",params:t},e))},this.userExternal={userExternal:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external",method:"GET",params:t},e)),bindPhone:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/bind-phone",method:"POST",data:t},e)),bindPhoneByVerifyCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/bind-phone-by-verify-code",method:"POST",data:t},e)),deleteDeleteByUsernameByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user-external/delete-by-username/${t}`,method:"DELETE"},e)),generateUrlLink:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/generate-url-link",method:"POST",params:t},e))},this.ws={messageSessionOnlineUsers:(t,e={})=>this.http.request(Object.assign({url:"/auth/ws/message-session/online-users",method:"GET",params:t},e)),messageSessionOnlineUsersCount:(t,e={})=>this.http.request(Object.assign({url:"/auth/ws/message-session/online-users/count",method:"GET",params:t},e)),messageSessionTopicByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/ws/message-session/${t}/topic`,method:"GET"},e)),messageBroadcastByTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/broadcast/${t}`,method:"POST",data:e},s)),messageSendBatchByTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send-batch/${t}`,method:"POST",data:e},s)),messageSendByUsernameAndTopic:(t,e,s,a={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}`,method:"POST",data:s},a)),messageSendCountByUsernameAndTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}/count`,method:"GET"},s)),messageSendCountAndClearByUsernameAndTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}/count-and-clear`,method:"GET"},s)),stats:(t={})=>this.http.request(Object.assign({url:"/auth/ws/stats",method:"GET"},t))},this.http=t}}(e.M)})();var r=exports;for(var i in a)r[i]=a[i];a.__esModule&&Object.defineProperty(r,"__esModule",{value:!0})})();
|
|
1
|
+
(()=>{"use strict";var t={491:(t,e,s)=>{s.d(e,{M:()=>a});const a={request(t){throw new Error("please setup http client first")}}}},e={};function s(a){var r=e[a];if(void 0!==r)return r.exports;var i=e[a]={exports:{}};return t[a](i,i.exports,s),i.exports}s.d=(t,e)=>{for(var a in e)s.o(e,a)&&!s.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},s.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var a={};(()=>{s.r(a),s.d(a,{AccessKey:()=>i,AccessKeyCreateRequest:()=>h,AccessToken:()=>n,AccessTokenByIdParams:()=>Na,AccessoryDTO:()=>u,AccessoryStats:()=>o,AddDictItem:()=>l,AddDictItemRequest:()=>c,Alarm:()=>m,AllDeviceMacAddressParams:()=>Os,AppRestResponse:()=>d,Area:()=>p,AskForExtendUserExpireDurationRequest:()=>g,BaseHint:()=>y,BindPhoneRequest:()=>O,ByIdParams:()=>Cs,ByIdParams8:()=>wa,CdtRequest:()=>b,CdtResponse:()=>P,ChangePasswordForm:()=>T,CheckInDeptAreaResult:()=>q,CheckParams:()=>gs,CheckResponse:()=>j,City:()=>B,ClearIpLimitParams:()=>ja,CommonXzqhParams:()=>js,ConfigCurrentUserDepartmentParams:()=>Sa,ConfigHistoryParams:()=>va,ConfigReq:()=>E,ConfigRes:()=>f,ConfigWithTimestamp:()=>U,ContentType:()=>t,DeleteBusinessDepartmentDepartmentUsersByUsernameParams:()=>mr,DeleteBusinessDepartmentDepartmentUsersParams:()=>or,DeleteDepartmentByIdParams:()=>sa,DeleteItemsByIdParams:()=>Ss,DeleteUserAccessoryParams:()=>rr,Department:()=>S,DepartmentAllChildrenBmdmByBmdmParams:()=>Ns,DepartmentArea:()=>D,DepartmentAreasByBmdmParams:()=>Xs,DepartmentChildrenByBmdmParams:()=>Zs,DepartmentChildrenByIdParams:()=>aa,DepartmentConfig:()=>G,DepartmentCreateBean:()=>I,DepartmentExistParams:()=>ta,DepartmentQueryBean:()=>$,DepartmentSimple:()=>v,DepartmentTree:()=>L,DepartmentTreeByBmdmParams:()=>Ys,DepartmentTreeParams:()=>ea,DepartmentUpdateBean:()=>C,DeptDictItem:()=>R,DeptDictionaryWithItems:()=>x,DesensitizePageResultPolice:()=>Ve,DesensitizePageResultUser:()=>Ne,DesensitizePageResultUserSimpleEx:()=>Je,DesensitizePageResultUserSimpleWithLocation:()=>_e,DeviceDTO:()=>A,DeviceInfo:()=>k,DictItem:()=>w,Dictionary:()=>z,DictionaryCreateBean:()=>M,DictionaryUpdateBean:()=>F,DictionaryWithItems:()=>H,DynamicCodeLoginForm:()=>K,EntityDigest:()=>W,ExistParams:()=>ca,ExistParams3:()=>Oa,ExtendExpireRequest:()=>Q,ExternalUserDTO:()=>V,ExtraInfo:()=>J,ExtraSecurityMeta:()=>_,FaceIdentifyGetInfoByIdParams:()=>Xa,FaceIdentifyGetUserIdKeyResponse:()=>N,FaceIdentifyGetUserInfo:()=>X,FileObjectMeta:()=>Z,FindByNameParams:()=>Bs,FindMergedParams:()=>qs,FindParams:()=>Ts,GenDeviceIdResult:()=>Y,GenerateUrlLinkByIdParams:()=>Za,GenerateUrlLinkParams:()=>hr,GetAccessoryParams:()=>os,GetBindingUserByIdParams:()=>Ya,GetConfigCurrentUserParams:()=>fa,GetConfigDepartmentConfigParams:()=>Ia,GetConfigDepartmentParams:()=>Da,GetConfigParams:()=>Ea,GetConfigUserParams:()=>La,GetDepartmentExtraPermissionsByIdParams:()=>qa,GetDepartmentParams:()=>_s,GetDeviceParams:()=>ys,GetDictionaryParams:()=>Ps,GetLedgerPushPlanParams:()=>Gs,GetListParams:()=>gr,GetMyTraceParams:()=>Rs,GetPermissionParams:()=>la,GetPoliceParams:()=>ra,GetRoleParams:()=>ya,GetStayPointByUsernameParams:()=>xs,GetThirdPlatformParams:()=>_a,GetTraceByUsernameParams:()=>As,GetUserAccessoryParams:()=>sr,GetUserParams:()=>er,HandlerStoreStats:()=>tt,Health:()=>et,IPBlock:()=>st,IdCardLoginForm:()=>at,ImportResultPoliceImportResultDetail:()=>Xe,IpBlockParams:()=>Ds,ItemsByDictionaryIdParams:()=>Us,ItemsParams:()=>Es,JwtLoginForm:()=>rt,KeyRuleReq:()=>it,KeyRuleRes:()=>ht,Latlng:()=>nt,Ledger:()=>ut,LedgerPushPlanEntity:()=>ot,LedgerSimple:()=>lt,LedgerWriteRequest:()=>ct,LieyingFlushUserDailyPointsParams:()=>ks,LieyingGetStayPointByUsernameParams:()=>ws,LieyingGetTraceByUsernameParams:()=>zs,LieyingKeyRulesCurrentKeyParams:()=>Ms,LieyingTraceOfMineParams:()=>Fs,ListCreateByMeParams:()=>Pa,ListParams:()=>ba,ListSimpleParams:()=>Ta,LocationAlarmObject:()=>Ze,LocationUploadRequest:()=>mt,LoginLedgerParams:()=>Is,LoginLedgerSelfParams:()=>$s,LoginRegisterRequest:()=>dt,LoginResponse:()=>pt,LoginResult:()=>gt,LogoutResult:()=>yt,MessageBody:()=>Ot,MessageBodyWithReceiverObject:()=>Ye,MessageSendRequest:()=>bt,MessageSessionOnlineUsersCountParams:()=>br,MessageSessionOnlineUsersParams:()=>Or,MultiUserQuery:()=>Pt,MultiUserQueryForTimeRange:()=>Tt,MultiUserTrackQuery:()=>qt,MultiUserTrackTimeRangeQuery:()=>jt,OnlineTimeRangeByUsernameParams:()=>Hs,OperateLedgerParams:()=>vs,PageResultAccessoryDTO:()=>ts,PageResultDeviceDTO:()=>es,PageResultDictionary:()=>ss,PageResultExternalUserDTO:()=>as,PageResultIPBlock:()=>rs,PageResultLedgerPushPlanEntity:()=>is,PageResultLedgerSimple:()=>hs,PageResultString:()=>us,PageResultThirdPlatformEntity:()=>ns,PasswordForm:()=>Bt,Permission:()=>Et,PermissionOptions:()=>ft,Point:()=>Ut,Police:()=>St,PoliceCreateBean:()=>Dt,PoliceExistParams:()=>ia,PoliceFindByJybhParams:()=>ha,PoliceImportParams:()=>na,PoliceImportResultDetail:()=>Gt,PoliceQueryBean:()=>It,PoliceUpdateBean:()=>$t,PoliceUserCreateBean:()=>vt,PoliceUserUpdateBean:()=>Lt,PostBusinessDepartmentDepartmentUsersByUsernameParams:()=>lr,PostBusinessDepartmentDepartmentUsersParams:()=>nr,PostConfigCurrentUserParams:()=>Ua,PostConfigDepartmentConfigParams:()=>$a,PostConfigDepartmentParams:()=>Ga,PostConfigUserParams:()=>Ca,ProcessStartBean:()=>Ct,Province:()=>Rt,ProxyByIspParams:()=>Ma,ProxyPushHandlerDepartmentConfigParams:()=>Fa,ProxyRequest:()=>xt,ProxyResponse:()=>At,PushDepartmentByDepartmentParams:()=>Ka,PushDepartmentConfigByDepartmentParams:()=>Ha,PushDictionaryParams:()=>Wa,PushResourceByResourceIdParams:()=>Qa,PushRoleParams:()=>Va,PutBindParams:()=>Qs,PutBusinessDepartmentDepartmentUsersByUsernameParams:()=>cr,PutBusinessDepartmentDepartmentUsersParams:()=>ur,PutBusinessDepartmentUserDepartmentsByUsernameParams:()=>pr,PutBusinessDepartmentUserDepartmentsParams:()=>dr,PutPoliceSyncBatchParams:()=>ua,PutPoliceSyncByIdParams:()=>oa,PutUnbindParams:()=>Js,PutUserAccessoryParams:()=>ar,PutUsernameByIdParams:()=>yr,ReadUserConfigRequest:()=>kt,ReasonForm:()=>wt,RedundantInfo:()=>zt,RefreshParams:()=>tr,RemoveDictItemRequest:()=>Mt,RequestShortAuthenticationParams:()=>ga,Resource:()=>Ft,Role:()=>Ht,RoleCreateBean:()=>Kt,RoleDepartmentExtraPermissionSetBean:()=>Wt,RoleParams:()=>Ja,RoleSimple:()=>Qt,RoleTransDTO:()=>Vt,RoleUpdateBean:()=>Jt,SafetyLedgerParams:()=>Ls,ScheduleCheckInRequest:()=>_t,SdtaLoginForm:()=>Nt,SendLoginVerifyCodeParams:()=>Ba,SendMessageRequest:()=>Xt,SendResponse:()=>Zt,SetHeartbeatIntervalBySnParams:()=>ls,SetHeartbeatIntervalParams:()=>Vs,SmsVerifyCheckRequest:()=>Yt,SmsVerifyRequest:()=>te,SseEmitter:()=>ee,StayAtDeptTooLongAlarm:()=>se,StayPoint:()=>ae,StopTooLongAlarm:()=>re,SwitchUserRequest:()=>ie,SyncDepartmentHint:()=>he,SyncUserHint:()=>ne,ThirdPlatformBinding:()=>ue,ThirdPlatformEntity:()=>oe,ThirdPlatformEnum:()=>le,ThirdPlatformHomeByIdParams:()=>pa,ThirdPlatformLoginRequest:()=>ce,ThirdPlatformLoginResponse:()=>me,ThirdPlatformNotificationParams:()=>ms,ThirdPlatformTrustwayPortalLoginByAppIdParams:()=>ma,ThirdPlatformZjzzLoginByAppIdParams:()=>da,ThumbnailByIdParams:()=>za,TimeRange:()=>de,TimeRange0:()=>pe,ToOssParams:()=>Aa,Token:()=>ge,TraceOfMineParams:()=>Ks,TtsBySnParams:()=>cs,UploadPayload:()=>ka,User:()=>ye,UserAccessoryLoginForm:()=>Oe,UserBatchUpdateBean:()=>be,UserBindingsTransDTO:()=>Pe,UserBusinessDepartment:()=>Te,UserConfigs:()=>qe,UserCreateBean:()=>je,UserDeviceChangeHistoryParams:()=>bs,UserExternalParams:()=>ir,UserInfoParams:()=>ds,UserLocation:()=>Be,UserLocationCheckParams:()=>Ws,UserLocationParams:()=>ps,UserLocationQueryBean:()=>Ee,UserLocationRequest:()=>fe,UserLocationTrace:()=>Ue,UserOnlineTimeRanges:()=>Se,UserOrganizationUpdateBean:()=>De,UserPhoneLoginForm:()=>Ge,UserProfile:()=>Ie,UserProfileAdditional:()=>$e,UserProfileUpdateBean:()=>ve,UserPublicInfo:()=>Le,UserQueryBean:()=>Ce,UserRestriction:()=>Re,UserSimpleEx:()=>xe,UserSimpleWithAuth:()=>Ae,UserSimpleWithLocation:()=>ke,UserSmsVerifyRequest:()=>we,UserStatus:()=>ze,UserStayPoints:()=>Me,UserTrackQuery:()=>Fe,UserUpdateBean:()=>He,UsernamePasswordLoginForm:()=>Ke,VerifyCodeRequest:()=>We,WebSocketBrokerStats:()=>Qe,WithItemsParams:()=>fs,WsByTopicParams:()=>xa,WsParams:()=>Ra,authApi:()=>Pr});var t,e=s(491),r=function(t,e){var s={};for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&e.indexOf(a)<0&&(s[a]=t[a]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(a=Object.getOwnPropertySymbols(t);r<a.length;r++)e.indexOf(a[r])<0&&Object.prototype.propertyIsEnumerable.call(t,a[r])&&(s[a[r]]=t[a[r]])}return s};class i{}class h{}class n{}class u{}class o{}class l{}class c{}class m{}class d{}class p{}class g{}class y{}class O{}class b{}class P{}class T{}class q{}class j{}class B{}class E{}class f{}class U{}class S{}class D{}class G{}class I{}class ${}class v{}class L{}class C{}class R{}class x{}class A{}class k{}class w{}class z{}class M{}class F{}class H{}class K{}class W{}class Q{}class V{}class J{}class _{}class N{}class X{}class Z{}class Y{}class tt{}class et{}class st{}class at{}class rt{}class it{}class ht{}class nt{}class ut{}class ot{}class lt{}class ct{}class mt{}class dt{}class pt{}class gt{}class yt{}class Ot{}class bt{}class Pt{}class Tt{}class qt{}class jt{}class Bt{}class Et{}class ft{}class Ut{}class St{}class Dt{}class Gt{}class It{}class $t{}class vt{}class Lt{}class Ct{}class Rt{}class xt{}class At{}class kt{}class wt{}class zt{}class Mt{}class Ft{}class Ht{}class Kt{}class Wt{}class Qt{}class Vt{}class Jt{}class _t{}class Nt{}class Xt{}class Zt{}class Yt{}class te{}class ee{}class se{}class ae{}class re{}class ie{}class he{}class ne{}class ue{}class oe{}class le{}class ce{}class me{}class de{}class pe{}class ge{}class ye{}class Oe{}class be{}class Pe{}class Te{}class qe{}class je{}class Be{}class Ee{}class fe{}class Ue{}class Se{}class De{}class Ge{}class Ie{}class $e{}class ve{}class Le{}class Ce{}class Re{}class xe{}class Ae{}class ke{}class we{}class ze{}class Me{}class Fe{}class He{}class Ke{}class We{}class Qe{}class Ve{}class Je{}class _e{}class Ne{}class Xe{}class Ze{}class Ye{}class ts{}class es{}class ss{}class as{}class rs{}class is{}class hs{}class ns{}class us{}class os{}class ls{}class cs{}class ms{}class ds{}class ps{}class gs{}class ys{}class Os{}class bs{}class Ps{}class Ts{}class qs{}class js{}class Bs{}class Es{}class fs{}class Us{}class Ss{}class Ds{}class Gs{}class Is{}class $s{}class vs{}class Ls{}class Cs{}class Rs{}class xs{}class As{}class ks{}class ws{}class zs{}class Ms{}class Fs{}class Hs{}class Ks{}class Ws{}class Qs{}class Vs{}class Js{}class _s{}class Ns{}class Xs{}class Zs{}class Ys{}class ta{}class ea{}class sa{}class aa{}class ra{}class ia{}class ha{}class na{}class ua{}class oa{}class la{}class ca{}class ma{}class da{}class pa{}class ga{}class ya{}class Oa{}class ba{}class Pa{}class Ta{}class qa{}class ja{}class Ba{}class Ea{}class fa{}class Ua{}class Sa{}class Da{}class Ga{}class Ia{}class $a{}class va{}class La{}class Ca{}class Ra{}class xa{}class Aa{}class ka{}class wa{}class za{}class Ma{}class Fa{}class Ha{}class Ka{}class Wa{}class Qa{}class Va{}class Ja{}class _a{}class Na{}class Xa{}class Za{}class Ya{}class tr{}class er{}class sr{}class ar{}class rr{}class ir{}class hr{}class nr{}class ur{}class or{}class lr{}class cr{}class mr{}class dr{}class pr{}class gr{}class yr{}class Or{}class br{}!function(t){t.Json="application/json",t.FormData="multipart/form-data",t.UrlEncoded="application/x-www-form-urlencoded"}(t||(t={}));const Pr=new class{constructor(t){this.accessory={getAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/accessory",method:"GET",params:t},e)),postAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/accessory",method:"POST",data:t},e)),getBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}`,method:"GET"},e)),deleteBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}`,method:"DELETE"},e)),setHeartbeatIntervalBySn:(t,e)=>{var{sn:s}=t,a=r(t,["sn"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/accessory/${s}/set-heartbeat-interval`,method:"POST",params:a},e))},statsBySn:(t,e={})=>this.http.request(Object.assign({url:`/auth/accessory/${t}/stats`,method:"GET"},e)),ttsBySn:(t,e)=>{var{sn:s}=t,a=r(t,["sn"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/accessory/${s}/tts`,method:"POST",params:a},e))}},this.alarm={emit:(t,e={})=>this.http.request(Object.assign({url:"/auth/alarm/emit",method:"POST",data:t},e))},this.authCodeCapability={thirdPlatformNotification:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/third-platform-notification",method:"POST",params:t},e)),userInfo:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/user-info",method:"GET",params:t},e)),userLocation:(t,e={})=>this.http.request(Object.assign({url:"/auth/auth-code-capability/user-location",method:"GET",params:t},e))},this.captcha={captcha:(t={})=>this.http.request(Object.assign({url:"/auth/captcha",method:"GET"},t))},this.check={check:(t,e={})=>this.http.request(Object.assign({url:"/auth/check",method:"GET",params:t},e))},this.checkPassword={putCheckPassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/check-password",method:"PUT",data:t},e))},this.countOnlineUser={countOnlineUser:(t={})=>this.http.request(Object.assign({url:"/auth/count-online-user",method:"GET"},t))},this.currentUserPhoneBindUsers={currentUserPhoneBindUsers:(t={})=>this.http.request(Object.assign({url:"/auth/current-user-phone-bind-users",method:"GET"},t))},this.device={getDevice:(t,e={})=>this.http.request(Object.assign({url:"/auth/device",method:"GET",params:t},e)),postDevice:(t,e={})=>this.http.request(Object.assign({url:"/auth/device",method:"POST",data:t},e)),allDeviceMacAddress:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/all-device-mac-address",method:"GET",params:t},e)),putCurrent:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/current",method:"PUT",data:t},e)),userDeviceChangeHistory:(t,e={})=>this.http.request(Object.assign({url:"/auth/device/user-device-change-history",method:"GET",params:t},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/device/${t}`,method:"DELETE"},e))},this.dictionary={getDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary",method:"GET",params:t},e)),postDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary",method:"POST",data:t},e)),commonXzqh:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/common/xzqh",method:"GET",params:t},e)),findByName:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/find-by-name",method:"GET",params:t},e)),items:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/items",method:"GET",params:t},e)),withItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary/with-items",method:"GET",params:t},e)),itemsByDictionaryId:(t,e)=>{var{dictionaryId:s}=t,a=r(t,["dictionaryId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/dictionary/${s}/items`,method:"GET",params:a},e))},getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}`,method:"DELETE"},e)),putItemsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}/items`,method:"PUT",data:e},s)),deleteItemsById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/dictionary/${s}/items`,method:"DELETE",params:a},e))},deleteItemsByIdAndItemId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/dictionary/${t}/items/${e}`,method:"DELETE"},s))},this.dictionaryForDept={addItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/add-items",method:"POST",data:t},e)),create:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/create",method:"POST",data:t},e)),find:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/find",method:"GET",params:t},e)),findMerged:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/find-merged",method:"GET",params:t},e)),removeItems:(t,e={})=>this.http.request(Object.assign({url:"/auth/dictionary-for-dept/remove-items",method:"POST",data:t},e))},this.health={health:(t={})=>this.http.request(Object.assign({url:"/auth/health",method:"GET"},t))},this.ipBlock={ipBlock:(t,e={})=>this.http.request(Object.assign({url:"/auth/ip-block",method:"GET",params:t},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"DELETE"},e)),putDisableById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}/disable`,method:"PUT"},e)),putEnableById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}/enable`,method:"PUT"},e)),getByIp:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"GET"},e)),putByIp:(t,e={})=>this.http.request(Object.assign({url:`/auth/ip-block/${t}`,method:"PUT"},e))},this.ledger={getLedgerPushPlan:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"GET",params:t},e)),postLedgerPushPlan:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"POST",data:t},e)),deleteLedgerPushPlan:(t={})=>this.http.request(Object.assign({url:"/auth/ledger/ledger-push-plan",method:"DELETE"},t)),deleteLedgerPushPlanById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ledger/ledger-push-plan/${t}`,method:"DELETE"},e)),ledgerPushPlanRunById:(t,e={})=>this.http.request(Object.assign({url:`/auth/ledger/ledger-push-plan/${t}/run`,method:"POST"},e)),loginLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/login-ledger",method:"GET",params:t},e)),loginLedgerSelf:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/login-ledger-self",method:"GET",params:t},e)),operateLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/operate-ledger",method:"GET",params:t},e)),safetyLedger:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/safety-ledger",method:"GET",params:t},e)),write:(t,e={})=>this.http.request(Object.assign({url:"/auth/ledger/write",method:"POST",data:t},e)),byId:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/ledger/${s}`,method:"GET",params:a},e))}},this.location={alarmStayAtDeptTooLong:(t={})=>this.http.request(Object.assign({url:"/auth/location/alarm/stay-at-dept-too-long",method:"GET"},t)),alarmStayTooLong:(t={})=>this.http.request(Object.assign({url:"/auth/location/alarm/stay-too-long",method:"GET"},t)),getLocationByAuthCodeByAuthCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/get-location-by-auth-code/${t}`,method:"GET"},e)),getLocationByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/get-location/${t}`,method:"GET"},e)),getMyLocation:(t={})=>this.http.request(Object.assign({url:"/auth/location/get-my-location",method:"GET"},t)),getMyTrace:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/get-my-trace",method:"GET",params:t},e)),getStayPointMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/get-stay-point/multi-user",method:"POST",data:t},e)),getStayPointByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/get-stay-point/${s}`,method:"GET",params:a},e))},getTraceByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/get-trace/${s}`,method:"GET",params:a},e))},lieyingFlushUserDailyPoints:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/flush-user-daily-points",method:"POST",params:t},e)),lieyingGetStayPointMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-stay-point/multi-user",method:"POST",data:t},e)),lieyingGetStayPointByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/lieying/get-stay-point/${s}`,method:"GET",params:a},e))},lieyingGetTraceByTimeRangeMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-trace-by-time-range/multi-user",method:"POST",data:t},e)),lieyingGetTraceMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/get-trace/multi-user",method:"POST",data:t},e)),lieyingGetTraceByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/lieying/get-trace/${s}`,method:"GET",params:a},e))},lieyingHandlerStoreStats:(t={})=>this.http.request(Object.assign({url:"/auth/location/lieying/handler-store-stats",method:"GET"},t)),getLieyingKeyRules:(t={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules",method:"GET"},t)),postLieyingKeyRules:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules",method:"POST",data:t},e)),lieyingKeyRulesCurrentKey:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/key-rules/current-key",method:"GET",params:t},e)),deleteLieyingKeyRulesById:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/lieying/key-rules/${t}`,method:"DELETE"},e)),lieyingTraceOfMine:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/lieying/trace-of-mine",method:"GET",params:t},e)),list:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/list",method:"POST",data:t},e)),listByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/list/by-username",method:"POST",data:t},e)),onlineTimeRangeMultiUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/online-time-range/multi-user",method:"POST",data:t},e)),onlineTimeRangeByUsername:(t,e)=>{var{username:s}=t,a=r(t,["username"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/location/online-time-range/${s}`,method:"GET",params:a},e))},point:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/point",method:"POST",data:t},e)),publicPoint:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/public/point",method:"POST",data:t},e)),traceOfMine:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/trace-of-mine",method:"GET",params:t},e)),userAlarmsByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/location/user-alarms/${t}`,method:"GET"},e)),userLocationCheck:(t,e={})=>this.http.request(Object.assign({url:"/auth/location/user-location/check",method:"GET",params:t},e))},this.login={login:(t,e={})=>this.http.request(Object.assign({url:"/auth/login",method:"POST",data:t},e))},this.loginByAccessory={loginByAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-accessory",method:"POST",data:t},e))},this.loginByDynamicCode={loginByDynamicCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-dynamic-code",method:"POST",data:t},e))},this.loginByIdCard={loginByIdCard:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-id-card",method:"POST",data:t},e))},this.loginByJwt={loginByJwt:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-jwt",method:"POST",data:t},e))},this.loginByPhone={loginByPhone:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-phone",method:"POST",data:t},e))},this.loginByThirdPlatformCode={loginByThirdPlatformCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-by-third-platform-code",method:"POST",data:t},e))},this.loginDanger={loginDanger:(t,e={})=>this.http.request(Object.assign({url:"/auth/login-danger",method:"POST",data:t},e)),byLoginName:(t,e={})=>this.http.request(Object.assign({url:`/auth/login-danger/${t}`,method:"POST"},e))},this.logout={logout:(t={})=>this.http.request(Object.assign({url:"/auth/logout",method:"POST"},t))},this.me={getMe:(t={})=>this.http.request(Object.assign({url:"/auth/me",method:"GET"},t)),putMe:(t,e={})=>this.http.request(Object.assign({url:"/auth/me",method:"PUT",data:t},e)),putChangePassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/me/change-password",method:"PUT",data:t},e)),extraSecurityMetas:(t={})=>this.http.request(Object.assign({url:"/auth/me/extra-security-metas",method:"GET"},t)),permissions:(t={})=>this.http.request(Object.assign({url:"/auth/me/permissions",method:"GET"},t))},this.myAccessory={myAccessory:(t={})=>this.http.request(Object.assign({url:"/auth/my-accessory",method:"GET"},t)),putBind:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/bind",method:"PUT",params:t},e)),setHeartbeatInterval:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/set-heartbeat-interval",method:"POST",params:t},e)),putUnbind:(t,e={})=>this.http.request(Object.assign({url:"/auth/my-accessory/unbind",method:"PUT",params:t},e))},this.organization={getDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department",method:"GET",params:t},e)),postDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department",method:"POST",data:t},e)),departmentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}`,method:"GET"},e)),departmentAllChildrenBmdmByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/all-children-bmdm`,method:"GET",params:a},e))},departmentAllParentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/all-parent`,method:"GET"},e)),departmentAllParentBmdmByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/all-parent-bmdm`,method:"GET"},e)),departmentAreasByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/areas`,method:"GET",params:a},e))},departmentBrothersByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/brothers`,method:"GET"},e)),departmentChildrenByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/children`,method:"GET",params:a},e))},departmentLocationByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/location`,method:"GET"},e)),departmentParentByBmdm:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${t}/parent`,method:"GET"},e)),departmentTreeByBmdm:(t,e)=>{var{bmdm:s}=t,a=r(t,["bmdm"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/by-bmdm/${s}/tree`,method:"GET",params:a},e))},deleteDepartmentCacheClear:(t={})=>this.http.request(Object.assign({url:"/auth/organization/department/cache-clear",method:"DELETE"},t)),departmentExist:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/exist",method:"GET",params:t},e)),departmentImport:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/import",method:"POST",data:t},e)),departmentList:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/list",method:"POST",data:t},e)),departmentResetDigest:(t={})=>this.http.request(Object.assign({url:"/auth/organization/department/reset-digest",method:"GET"},t)),departmentTree:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/department/tree",method:"GET",params:t},e)),getDepartmentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}`,method:"GET"},e)),putDepartmentById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}`,method:"PUT",data:e},s)),deleteDepartmentById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/${s}`,method:"DELETE",params:a},e))},departmentAllParentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/all-parent`,method:"GET"},e)),departmentBrothersById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/brothers`,method:"GET"},e)),departmentChildrenById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/department/${s}/children`,method:"GET",params:a},e))},departmentParentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/department/${t}/parent`,method:"GET"},e)),getPolice:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police",method:"GET",params:t},e)),postPolice:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police",method:"POST",data:t},e)),policeExist:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/exist",method:"GET",params:t},e)),policeFindByJybh:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/find-by-jybh",method:"GET",params:t},e)),policeImport:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/organization/police/import",method:"POST",params:t,data:e},s)),policeList:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/list",method:"POST",data:t},e)),putPoliceSyncBatch:(t,e={})=>this.http.request(Object.assign({url:"/auth/organization/police/sync-batch",method:"PUT",params:t},e)),putPoliceSyncCurrentUserPolice:(t={})=>this.http.request(Object.assign({url:"/auth/organization/police/sync-current-user-police",method:"PUT"},t)),getPoliceById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"GET"},e)),putPoliceById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"PUT",data:e},s)),deletePoliceById:(t,e={})=>this.http.request(Object.assign({url:`/auth/organization/police/${t}`,method:"DELETE"},e)),putPoliceSyncById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/organization/police/${s}/sync`,method:"PUT",params:a},e))}},this.permission={getPermission:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission",method:"GET",params:t},e)),postPermission:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission",method:"POST",data:t},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/permission/exist",method:"GET",params:t},e)),getByCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"GET"},e)),putByCode:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"PUT",data:e},s)),deleteByCode:(t,e={})=>this.http.request(Object.assign({url:`/auth/permission/${t}`,method:"DELETE"},e)),putOptionsByCode:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/permission/${t}/options`,method:"PUT",data:e},s))},this.policeLogin={policeLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/police-login",method:"POST",data:t},e))},this.policeUser={policeUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/police-user",method:"POST",data:t},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}`,method:"PUT",data:e},s)),putDeleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}/delete`,method:"PUT"},e)),putRestoreById:(t,e={})=>this.http.request(Object.assign({url:`/auth/police-user/${t}/restore`,method:"PUT"},e))},this.public={commonGenDeviceId:(t={})=>this.http.request(Object.assign({url:"/auth/public/common/gen-device-id",method:"GET"},t)),processAskForExtendUserExpireDuration:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/process/ask-for-extend-user-expire-duration",method:"POST",data:t},e)),thirdPlatformSdtaBpmnProcessStart:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/bpmn/process/start",method:"POST",data:t},e)),thirdPlatformSdtaDutyScheduleCheckInToday:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/duty/schedule/check-in-today",method:"POST",data:t},e)),thirdPlatformSdtaDutyScheduleCheckOutToday:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/duty/schedule/check-out-today",method:"POST",data:t},e)),thirdPlatformSdtaLocationUpload:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/location-upload",method:"POST",data:t},e)),thirdPlatformSdtaLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/sdta/login",method:"POST",data:t},e)),thirdPlatformTrustwayPortalDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/trustway-portal/department",method:"POST",data:t},e)),thirdPlatformTrustwayPortalUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/public/third-platform/trustway-portal/user",method:"POST",data:t},e)),thirdPlatformTrustwayPortalLoginByAppId:(t,e)=>{var{appId:s}=t,a=r(t,["appId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/trustway-portal/${s}/login`,method:"GET",params:a},e))},thirdPlatformZjzzLoginByAppId:(t,e)=>{var{appId:s}=t,a=r(t,["appId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/zjzz/${s}/login`,method:"GET",params:a},e))},thirdPlatformAccessTokenById:(t,e={})=>this.http.request(Object.assign({url:`/auth/public/third-platform/${t}/access-token`,method:"GET"},e)),thirdPlatformHomeById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/public/third-platform/${s}/home`,method:"GET",params:a},e))}},this.requestShortAuthentication={requestShortAuthentication:(t,e={})=>this.http.request(Object.assign({url:"/auth/request-short-authentication",method:"GET",params:t},e))},this.role={getRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/role",method:"GET",params:t},e)),postRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/role",method:"POST",data:t},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/exist",method:"GET",params:t},e)),list:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list",method:"GET",params:t},e)),listCreateByMe:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list-create-by-me",method:"GET",params:t},e)),listSimple:(t,e={})=>this.http.request(Object.assign({url:"/auth/role/list-simple",method:"GET",params:t},e)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/role/${t}`,method:"DELETE"},e)),getDepartmentExtraPermissionsById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/role/${s}/department-extra-permissions`,method:"GET",params:a},e))},putDepartmentExtraPermissionsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/role/${t}/department-extra-permissions`,method:"PUT",data:e},s))},this.security={accessKeyGenerate:(t,e={})=>this.http.request(Object.assign({url:"/auth/security/access-key/generate",method:"POST",data:t},e)),accessKeyList:(t={})=>this.http.request(Object.assign({url:"/auth/security/access-key/list",method:"GET"},t)),deleteAccessKeyByAk:(t,e={})=>this.http.request(Object.assign({url:`/auth/security/access-key/${t}`,method:"DELETE"},e)),clearIpLimit:(t,e={})=>this.http.request(Object.assign({url:"/auth/security/clear-ip-limit",method:"POST",params:t},e))},this.sendLoginVerifyCode={sendLoginVerifyCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/send-login-verify-code",method:"POST",params:t},e))},this.settings={getConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config",method:"GET",params:t},e)),postConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config",method:"POST",data:t},e)),getConfigAuth:(t={})=>this.http.request(Object.assign({url:"/auth/settings/config/auth",method:"GET"},t)),postConfigAuth:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/auth",method:"POST",data:t},e)),getConfigCurrentUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user",method:"GET",params:t},e)),postConfigCurrentUser:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user",method:"POST",params:t,data:e},s)),configCurrentUserDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/current-user-department",method:"GET",params:t},e)),getConfigDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/department",method:"GET",params:t},e)),postConfigDepartment:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/department",method:"POST",params:t,data:e},s)),getConfigDepartmentConfig:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/department-config",method:"GET",params:t},e)),postConfigDepartmentConfig:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/department-config",method:"POST",params:t,data:e},s)),configDepartmentConfigByKeysByDepartment:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/settings/config/department/${t}/config-by-keys`,method:"POST",data:e},s)),configHistory:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/history",method:"GET",params:t},e)),configPublic:(t={})=>this.http.request(Object.assign({url:"/auth/settings/config/public",method:"GET"},t)),getConfigUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/user",method:"GET",params:t},e)),postConfigUser:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/settings/config/user",method:"POST",params:t,data:e},s)),configUsers:(t,e={})=>this.http.request(Object.assign({url:"/auth/settings/config/users",method:"POST",data:t},e))},this.smsVerify={check:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/check",method:"POST",data:t},e)),resetRateCheckByTarget:(t,e={})=>this.http.request(Object.assign({url:`/auth/sms-verify/reset-rate-check/${t}`,method:"POST"},e)),send:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send",method:"POST",data:t},e)),sendForLogin:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send-for-login",method:"POST",data:t},e)),sendForResetPassword:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms-verify/send-for-reset-password",method:"POST",data:t},e))},this.sms={send:(t,e={})=>this.http.request(Object.assign({url:"/auth/sms/send",method:"POST",data:t},e))},this.sse={test:(t={})=>this.http.request(Object.assign({url:"/auth/sse/test",method:"GET"},t)),topicListeners:(t={})=>this.http.request(Object.assign({url:"/auth/sse/topic-listeners",method:"GET"},t)),ws:(t,e={})=>this.http.request(Object.assign({url:"/auth/sse/ws",method:"GET",params:t},e)),wsByTopic:(t,e)=>{var{topic:s}=t,a=r(t,["topic"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sse/ws/${s}`,method:"GET",params:a},e))}},this.staticResource={excelByFile:(t,e={})=>this.http.request(Object.assign({url:`/auth/static-resource/excel/${t}`,method:"GET"},e))},this.storageTransfer={toOss:(t,e={})=>this.http.request(Object.assign({url:"/auth/storage-transfer/to-oss",method:"POST",params:t},e))},this.storage={upload:(t,e={})=>this.http.request(Object.assign({url:"/auth/storage/upload",method:"POST",data:t},e)),byId:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/storage/${s}`,method:"GET",params:a},e))},metaById:(t,e={})=>this.http.request(Object.assign({url:`/auth/storage/${t}/meta`,method:"GET"},e)),thumbnailById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/storage/${s}/thumbnail`,method:"GET",params:a},e))}},this.switchUser={switchUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/switch-user",method:"POST",data:t},e))},this.sync={commonDepartmentConfigKeys:(t={})=>this.http.request(Object.assign({url:"/auth/sync/common-department-config-keys",method:"GET"},t)),departmentByBmdm:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/department/${t}`,method:"POST",data:e},s)),proxy:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy",method:"POST",data:t},e)),proxyByIsp:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-by-isp",method:"POST",params:t,data:e},s)),proxyPushHandlerDepartment:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/department",method:"POST",data:t},e)),proxyPushHandlerDepartmentConfig:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/department-config",method:"POST",params:t,data:e},s)),proxyPushHandlerDictionary:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/dictionary",method:"POST",data:t},e)),proxyPushHandlerRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/role",method:"POST",data:t},e)),proxyPushHandlerUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/user",method:"POST",data:t},e)),proxyPushHandlerUserBindings:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/proxy-push-handler/user-bindings",method:"POST",data:t},e)),pushDepartmentConfigByDepartment:(t,e,s)=>{var{department:a}=t,i=r(t,["department"]);return void 0===s&&(s={}),this.http.request(Object.assign({url:`/auth/sync/push/department-config/${a}`,method:"POST",params:i,data:e},s))},pushDepartmentByDepartment:(t,e)=>{var{department:s}=t,a=r(t,["department"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sync/push/department/${s}`,method:"POST",params:a},e))},pushDictionary:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/push/dictionary",method:"POST",params:t,data:e},s)),pushResourceByResourceId:(t,e)=>{var{resourceId:s}=t,a=r(t,["resourceId"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/sync/push/resource/${s}`,method:"POST",params:a},e))},pushRole:(t,e={})=>this.http.request(Object.assign({url:"/auth/sync/push/role",method:"POST",params:t},e)),pushUserByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/sync/push/user/${t}`,method:"POST"},e)),resourceByResourceId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/resource/${t}`,method:"POST",data:e},s)),role:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/sync/role",method:"POST",params:t,data:e},s)),userByUsername:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/user/${t}`,method:"POST",data:e},s)),userSignatureByUsername:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/sync/user/${t}/signature`,method:"POST",data:e},s))},this.thirdPlatform={getThirdPlatform:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform",method:"GET",params:t},e)),postThirdPlatform:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform",method:"POST",data:t},e)),categories:(t={})=>this.http.request(Object.assign({url:"/auth/third-platform/categories",method:"GET"},t)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}`,method:"GET"},e)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}`,method:"DELETE"},e)),accessTokenById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/access-token`,method:"GET",params:a},e))},faceIdentifyGetInfoById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/face-identify/get-info`,method:"GET",params:a},e))},faceIdentifyUserIdKeyById:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}/face-identify/user-id-key`,method:"GET"},e)),generateUrlLinkById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/generate-url-link`,method:"GET",params:a},e))},getBindingUserById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/third-platform/${s}/get-binding-user`,method:"GET",params:a},e))},sendMessageById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/third-platform/${t}/send-message`,method:"POST",data:e},s))},this.thirdPlatformBinding={userBindingImport:(t,e={})=>this.http.request(Object.assign({url:"/auth/third-platform-binding/user-binding/import",method:"POST",data:t},e)),userBindingByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/third-platform-binding/user-binding/${t}`,method:"GET"},e)),userBindingUnbindByUsernameAndAppId:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/third-platform-binding/user-binding/${e}/unbind/${t}`,method:"POST"},s))},this.time={time:(t={})=>this.http.request(Object.assign({url:"/auth/time",method:"GET"},t))},this.token={refresh:(t,e={})=>this.http.request(Object.assign({url:"/auth/token/refresh",method:"GET",params:t},e))},this.user={getUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/user",method:"GET",params:t},e)),postUser:(t,e={})=>this.http.request(Object.assign({url:"/auth/user",method:"POST",data:t},e)),postBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"POST",params:t,data:e},s)),putBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"PUT",params:t,data:e},s)),deleteBusinessDepartmentDepartmentUsers:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users",method:"DELETE",params:t,data:e},s)),postBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"POST",params:t,data:e},s)),putBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"PUT",params:t,data:e},s)),deleteBusinessDepartmentDepartmentUsersByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/department-users-by-username",method:"DELETE",params:t,data:e},s)),putBusinessDepartmentUserDepartments:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/user-departments",method:"PUT",params:t,data:e},s)),putBusinessDepartmentUserDepartmentsByUsername:(t,e,s={})=>this.http.request(Object.assign({url:"/auth/user/business-department/user-departments-by-username",method:"PUT",params:t,data:e},s)),clearCacheByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/clear-cache/${t}`,method:"GET"},e)),exist:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/exist",method:"GET",params:t},e)),extendUserExpire:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/extend-user-expire",method:"POST",data:t},e)),extendUserPasswordExpire:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/extend-user-password-expire",method:"POST",data:t},e)),findByUsernameByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/find-by-username/${t}`,method:"GET"},e)),findByUsernameSimpleByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/find-by-username/${t}/simple`,method:"GET"},e)),getList:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list",method:"GET",params:t},e)),postList:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list",method:"POST",data:t},e)),listSimpleInfo:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list-simple-info",method:"POST",data:t},e)),listSimple:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple",method:"POST",data:t},e)),listSimpleByRealname:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-by-realname",method:"POST",data:t},e)),listSimpleByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-by-username",method:"POST",data:t},e)),listSimpleWithLocation:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-with-location",method:"POST",data:t},e)),listSimpleWithLocationByUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/simple-with-location-by-username",method:"POST",data:t},e)),listUsername:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/list/username",method:"POST",data:t},e)),putUpdateInBatch:(t,e={})=>this.http.request(Object.assign({url:"/auth/user/update-in-batch",method:"PUT",data:t},e)),getById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"GET"},e)),putById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"PUT",data:e},s)),deleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}`,method:"DELETE"},e)),getAdminDepartmentById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/admin-department`,method:"GET"},e)),putAdminDepartmentById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/admin-department`,method:"PUT",data:e},s)),putChangePasswordById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/change-password`,method:"PUT",data:e},s)),putDeleteById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/delete`,method:"PUT"},e)),putLockById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/lock`,method:"PUT",data:e},s)),putOrganizationById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/organization`,method:"PUT",data:e},s)),putPermissionsById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/permissions`,method:"PUT",data:e},s)),putResetPasswordById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/reset-password`,method:"PUT"},e)),putRestoreById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/restore`,method:"PUT"},e)),putRestrictionById:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/user/${t}/restriction`,method:"PUT",data:e},s)),putUnlockById:(t,e={})=>this.http.request(Object.assign({url:`/auth/user/${t}/unlock`,method:"PUT"},e)),putUsernameById:(t,e)=>{var{id:s}=t,a=r(t,["id"]);return void 0===e&&(e={}),this.http.request(Object.assign({url:`/auth/user/${s}/username`,method:"PUT",params:a},e))}},this.userAccessory={getUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"GET",params:t},e)),putUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"PUT",params:t},e)),deleteUserAccessory:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-accessory",method:"DELETE",params:t},e))},this.userExternal={userExternal:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external",method:"GET",params:t},e)),bindPhone:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/bind-phone",method:"POST",data:t},e)),bindPhoneByVerifyCode:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/bind-phone-by-verify-code",method:"POST",data:t},e)),deleteDeleteByUsernameByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/user-external/delete-by-username/${t}`,method:"DELETE"},e)),generateUrlLink:(t,e={})=>this.http.request(Object.assign({url:"/auth/user-external/generate-url-link",method:"POST",params:t},e))},this.ws={messageSessionOnlineUsers:(t,e={})=>this.http.request(Object.assign({url:"/auth/ws/message-session/online-users",method:"GET",params:t},e)),messageSessionOnlineUsersCount:(t,e={})=>this.http.request(Object.assign({url:"/auth/ws/message-session/online-users/count",method:"GET",params:t},e)),messageSessionTopicByUsername:(t,e={})=>this.http.request(Object.assign({url:`/auth/ws/message-session/${t}/topic`,method:"GET"},e)),messageBroadcastByTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/broadcast/${t}`,method:"POST",data:e},s)),messageSendBatchByTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send-batch/${t}`,method:"POST",data:e},s)),messageSendByUsernameAndTopic:(t,e,s,a={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}`,method:"POST",data:s},a)),messageSendCountByUsernameAndTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}/count`,method:"GET"},s)),messageSendCountAndClearByUsernameAndTopic:(t,e,s={})=>this.http.request(Object.assign({url:`/auth/ws/message/send/${e}/${t}/count-and-clear`,method:"GET"},s)),stats:(t={})=>this.http.request(Object.assign({url:"/auth/ws/stats",method:"GET"},t))},this.http=t}}(e.M)})();var r=exports;for(var i in a)r[i]=a[i];a.__esModule&&Object.defineProperty(r,"__esModule",{value:!0})})();
|
|
2
2
|
//# sourceMappingURL=auth.js.map
|