@pubinfo-pr/core 0.182.2 → 0.182.3

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.
Files changed (43) hide show
  1. package/dist/built-in/layout-component/composables/useGlobalSearch.d.ts +1 -1
  2. package/dist/built-in/pinia-plugin/plugins/persistedstate/utils.d.ts +1 -1
  3. package/dist/features/api/modules/auth/renzhengfuwu.d.ts +14 -14
  4. package/dist/features/api/modules/configData/heibaimingdanfuwu.d.ts +5 -5
  5. package/dist/features/api/modules/configData/xitongpeizhifuwu.d.ts +14 -14
  6. package/dist/features/api/modules/configData/zidifuwu.d.ts +10 -10
  7. package/dist/features/api/modules/rbac/gangweijiekou.d.ts +6 -6
  8. package/dist/features/api/modules/rbac/jiaosejiekou.d.ts +7 -7
  9. package/dist/features/api/modules/rbac/pubJiaosezukongzhiqi.d.ts +7 -7
  10. package/dist/features/api/modules/rbac/shujuquanxianzhubiaokongzhiqi.d.ts +9 -9
  11. package/dist/features/api/modules/rbac/yonghujiekou.d.ts +16 -16
  12. package/dist/features/api/modules/rbac/yonghushoucangbiaojiekou.d.ts +5 -5
  13. package/dist/features/api/modules/rbac/yonghuzuijinchangyongbiaojiekou.d.ts +4 -4
  14. package/dist/features/api/modules/rbac/ziyuandaorudaochuxiangguanjiekou.d.ts +6 -6
  15. package/dist/features/api/modules/rbac/ziyuanjiekou.d.ts +14 -14
  16. package/dist/features/api/modules/rbac/zuhuguanlijiekou.d.ts +5 -5
  17. package/dist/features/api/modules/rbac/zuzhijiaosebiaokongzhiqi.d.ts +4 -4
  18. package/dist/features/api/modules/rbac/zuzhijiekou.d.ts +9 -9
  19. package/dist/index-BXLF9xfN.js +2 -2
  20. package/package.json +7 -7
  21. package/src/built-in/devtools/index.ts +5 -5
  22. package/src/built-in/layout-component/components/SettingBar/components/SettingThemes.vue +2 -2
  23. package/src/built-in/layout-component/components/Tools/Preferences/PreferencesContent.vue +1 -1
  24. package/src/built-in/layout-component/composables/useGlobalSearch.ts +1 -1
  25. package/src/built-in/pinia-plugin/plugins/persistedstate/README.md +1 -1
  26. package/src/built-in/pinia-plugin/plugins/persistedstate/utils.ts +1 -1
  27. package/src/features/api/modules/auth/renzhengfuwu.ts +14 -14
  28. package/src/features/api/modules/configData/heibaimingdanfuwu.ts +5 -5
  29. package/src/features/api/modules/configData/xitongpeizhifuwu.ts +14 -14
  30. package/src/features/api/modules/configData/zidifuwu.ts +10 -10
  31. package/src/features/api/modules/rbac/gangweijiekou.ts +6 -6
  32. package/src/features/api/modules/rbac/jiaosejiekou.ts +7 -7
  33. package/src/features/api/modules/rbac/pubJiaosezukongzhiqi.ts +7 -7
  34. package/src/features/api/modules/rbac/shujuquanxianzhubiaokongzhiqi.ts +9 -9
  35. package/src/features/api/modules/rbac/yonghujiekou.ts +16 -16
  36. package/src/features/api/modules/rbac/yonghushoucangbiaojiekou.ts +5 -5
  37. package/src/features/api/modules/rbac/yonghuzuijinchangyongbiaojiekou.ts +4 -4
  38. package/src/features/api/modules/rbac/ziyuandaorudaochuxiangguanjiekou.ts +6 -6
  39. package/src/features/api/modules/rbac/ziyuanjiekou.ts +14 -14
  40. package/src/features/api/modules/rbac/zuhuguanlijiekou.ts +5 -5
  41. package/src/features/api/modules/rbac/zuzhijiaosebiaokongzhiqi.ts +4 -4
  42. package/src/features/api/modules/rbac/zuzhijiekou.ts +9 -9
  43. package/src/features/pages/profile/index.vue +2 -2
@@ -10,7 +10,7 @@ declare function toggle(type?: SearchType): void;
10
10
  * 可以支持多处挂载,只需要使用 `useGlobalSearch` 开启即可
11
11
  * 这样可以避免如果使用快捷键可能会多处开启 search 的问题
12
12
  *
13
- * close [#38](https://github.com/wsypower/pubinfo/issues/38)
13
+ * close [#38](https://github.com/wsypower/pubinfo-pr/issues/38)
14
14
  */
15
15
  export declare function useGlobalSearch(): {
16
16
  isShow: import('vue').Ref<boolean, boolean>;
@@ -1,6 +1,6 @@
1
1
  import { CustomStorageEventDetail, StorageArea } from './types';
2
2
  /** 自定义事件名称,用于跨标签页通信 */
3
- export declare const CUSTOM_EVENT = "pubinfo:persistedstate:local";
3
+ export declare const CUSTOM_EVENT = "pubinfo-pr:persistedstate:local";
4
4
  /**
5
5
  * 调度微任务,优先使用原生 queueMicrotask
6
6
  */
@@ -3,97 +3,97 @@ import { auth as request } from '../../request';
3
3
  * @description 验证码-前端校验 需要校验的验证码类型:blockPuzzle、clickWord
4
4
  * @url /auth/captcha/check
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postAuthCaptchaCheck<R = API.ResponseDataValidCodeVo, T = API.ResponseDataValidCodeVo>(body: API.CaptchaCheckDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 验证码-获取验证码图片
11
11
  * @url /auth/captcha/get
12
12
  * @method POST
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function postAuthCaptchaGet<R = API.ResponseDataValidCodeVo, T = API.ResponseDataValidCodeVo>(body: API.CaptchaGetDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 切换登录组织
18
18
  * @url /auth/changeLoginOrg
19
19
  * @method POST
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function postAuthChangeLoginOrg<R = API.ResponseDataLoginTokenVo, T = API.ResponseDataLoginTokenVo>(params: API.postAuthChangeLoginOrgParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 判断缓存的token是否有效
25
25
  * @url /auth/checkCacheToken
26
26
  * @method GET
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function getAuthCheckCacheToken<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(params: API.getAuthCheckCacheTokenParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 根据用户id获取用户token列表
32
32
  * @url /auth/getTokenListByUserId
33
33
  * @method GET
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function getAuthGetTokenListByUserId<R = API.ResponseDataListPubLoginTokenVo, T = API.ResponseDataListPubLoginTokenVo>(params: API.getAuthGetTokenListByUserIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 密码登录
39
39
  * @url /auth/login
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postAuthLogin<R = API.ResponseDataLoginTokenVo, T = API.ResponseDataLoginTokenVo>(body: API.LoginByPwdDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 获取登录公钥
46
46
  * @url /auth/login/key
47
47
  * @method GET
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function getAuthLoginKey<R = API.ResponseDataString, T = API.ResponseDataString>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
51
51
  /**
52
52
  * @description 获取图片验证码
53
53
  * @url /auth/login/validCode
54
54
  * @method GET
55
- * @author @pubinfo/openapi
55
+ * @author @pubinfo-pr/openapi
56
56
  */
57
57
  export declare function getAuthLoginValidCode<R = API.ResponseDataValidCodeVo, T = API.ResponseDataValidCodeVo>(params: API.getAuthLoginValidCodeParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
58
58
  /**
59
59
  * @description 验证码-密码登录
60
60
  * @url /auth/loginNew
61
61
  * @method POST
62
- * @author @pubinfo/openapi
62
+ * @author @pubinfo-pr/openapi
63
63
  */
64
64
  export declare function postAuthLoginNew<R = API.ResponseDataLoginTokenVo, T = API.ResponseDataLoginTokenVo>(body: API.LoginByPwdCaptchaDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
65
65
  /**
66
66
  * @description 当前用户登出
67
67
  * @url /auth/loginOut
68
68
  * @method POST
69
- * @author @pubinfo/openapi
69
+ * @author @pubinfo-pr/openapi
70
70
  */
71
71
  export declare function postAuthLoginOut<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
72
72
  /**
73
73
  * @description 用户id登出
74
74
  * @url /auth/loginOutByUserId
75
75
  * @method POST
76
- * @author @pubinfo/openapi
76
+ * @author @pubinfo-pr/openapi
77
77
  */
78
78
  export declare function postAuthLoginOutByUserId<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.postAuthLoginOutByUserIdParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
79
79
  /**
80
80
  * @description 用户id和设备类型登出
81
81
  * @url /auth/loginOutByUserIdAndDevType
82
82
  * @method POST
83
- * @author @pubinfo/openapi
83
+ * @author @pubinfo-pr/openapi
84
84
  */
85
85
  export declare function postAuthLoginOutByUserIdAndDevType<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.postAuthLoginOutByUserIdAndDevTypeParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
86
86
  /**
87
87
  * @description 单点免密登录接口
88
88
  * @url /auth/ssoLogin
89
89
  * @method POST
90
- * @author @pubinfo/openapi
90
+ * @author @pubinfo-pr/openapi
91
91
  */
92
92
  export declare function postAuthSsoLogin<R = API.ResponseDataLoginTokenVo, T = API.ResponseDataLoginTokenVo>(body: API.SsoLoginDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
93
93
  /**
94
94
  * @description 刷新访问令牌
95
95
  * @url /auth/token/refresh
96
96
  * @method POST
97
- * @author @pubinfo/openapi
97
+ * @author @pubinfo-pr/openapi
98
98
  */
99
99
  export declare function postAuthTokenRefresh<R = API.ResponseDataLoginTokenVo, T = API.ResponseDataLoginTokenVo>(params: API.postAuthTokenRefreshParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,34 +3,34 @@ import { basic as request } from '../../request';
3
3
  * @description 新增黑白名单
4
4
  * @url /blackWhiteList/addBlackWhiteList
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postBlackWhiteListAddBlackWhiteList<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(body: API.BlackWhiteListAddDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 删除黑白名单
11
11
  * @url /blackWhiteList/delete/${param0}
12
12
  * @method GET
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function getBlackWhiteListDeleteById<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(params: API.getBlackWhiteListDeleteByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 查询黑白名单
18
18
  * @url /blackWhiteList/getBlackWhiteList/${param0}
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getBlackWhiteListGetBlackWhiteListById<R = API.ResponseDataPubBlackWhiteList, T = API.ResponseDataPubBlackWhiteList>(params: API.getBlackWhiteListGetBlackWhiteListByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 分页查询查询黑白名单列表
25
25
  * @url /blackWhiteList/getBlackWhiteListPageList
26
26
  * @method POST
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function postBlackWhiteListGetBlackWhiteListPageList<R = API.ResponseDataIPagePubBlackWhiteList, T = API.ResponseDataIPagePubBlackWhiteList>(body: API.BlackWhiteListQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 编辑黑白名单
32
32
  * @url /blackWhiteList/updateBlackWhiteList
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postBlackWhiteListUpdateBlackWhiteList<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(body: API.BlackWhiteListUpdateDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,97 +3,97 @@ import { basic as request } from '../../request';
3
3
  * @description 新增用户样式配置
4
4
  * @url /sysconfig/addOrEditUserThemeStyleConfig
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postSysconfigAddOrEditUserThemeStyleConfig<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(body: API.AddOrEditStyleConfigDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 新增系统样式配置
11
11
  * @url /sysconfig/addOrEidtSysThemeStyleConfig
12
12
  * @method POST
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function postSysconfigAddOrEidtSysThemeStyleConfig<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(body: API.AddOrEditStyleConfigDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 新增或修改背景图片-大图
18
18
  * @url /sysconfig/addOrUpdateBackgroundImage
19
19
  * @method POST
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function postSysconfigAddOrUpdateBackgroundImage<R = API.ResponseDataString, T = API.ResponseDataString>(params: API.postSysconfigAddOrUpdateBackgroundImageParams, body: Record<string, unknown>, file?: File, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 新增或修改背景图片-小图
25
25
  * @url /sysconfig/addOrUpdateBackgroundSmallImage
26
26
  * @method POST
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function postSysconfigAddOrUpdateBackgroundSmallImage<R = API.ResponseDataString, T = API.ResponseDataString>(params: API.postSysconfigAddOrUpdateBackgroundSmallImageParams, body: Record<string, unknown>, file?: File, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 新增或修改log图片
32
32
  * @url /sysconfig/addOrUpdateLogImage
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postSysconfigAddOrUpdateLogImage<R = API.ResponseDataString, T = API.ResponseDataString>(body: Record<string, unknown>, file?: File, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 新增或修改登录页配置项
39
39
  * @url /sysconfig/addOrUpdateLoginConfigurationItem
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postSysconfigAddOrUpdateLoginConfigurationItem<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(body: API.AddOrUpdateConfigurationItemDTO, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 通过code下载文件(返回流)
46
46
  * @url /sysconfig/downLoadImageStreamByCode
47
47
  * @method GET
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function getSysconfigDownLoadImageStreamByCode<R = any, T = any>(params: API.getSysconfigDownLoadImageStreamByCodeParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
51
51
  /**
52
52
  * @description 编辑系统安全配置
53
53
  * @url /sysconfig/editSysSecurityConfig
54
54
  * @method POST
55
- * @author @pubinfo/openapi
55
+ * @author @pubinfo-pr/openapi
56
56
  */
57
57
  export declare function postSysconfigEditSysSecurityConfig<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(body: API.EditSysSecurityConfigDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
58
58
  /**
59
59
  * @description 获取登录页配置项
60
60
  * @url /sysconfig/getLoginConfigurationItem
61
61
  * @method POST
62
- * @author @pubinfo/openapi
62
+ * @author @pubinfo-pr/openapi
63
63
  */
64
64
  export declare function postSysconfigGetLoginConfigurationItem<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
65
65
  /**
66
66
  * @description 获取系统安全配置
67
67
  * @url /sysconfig/getSysSecurityConfig
68
68
  * @method GET
69
- * @author @pubinfo/openapi
69
+ * @author @pubinfo-pr/openapi
70
70
  */
71
71
  export declare function getSysconfigGetSysSecurityConfig<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
72
72
  /**
73
73
  * @description 获取系统样式配置
74
74
  * @url /sysconfig/getSysThemeStyleConfig
75
75
  * @method GET
76
- * @author @pubinfo/openapi
76
+ * @author @pubinfo-pr/openapi
77
77
  */
78
78
  export declare function getSysconfigGetSysThemeStyleConfig<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
79
79
  /**
80
80
  * @description 获取样式配置
81
81
  * @url /sysconfig/getThemeStyleConfig
82
82
  * @method GET
83
- * @author @pubinfo/openapi
83
+ * @author @pubinfo-pr/openapi
84
84
  */
85
85
  export declare function getSysconfigGetThemeStyleConfig<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
86
86
  /**
87
87
  * @description 获取用户样式配置
88
88
  * @url /sysconfig/getUserThemeStyleConfig
89
89
  * @method GET
90
- * @author @pubinfo/openapi
90
+ * @author @pubinfo-pr/openapi
91
91
  */
92
92
  export declare function getSysconfigGetUserThemeStyleConfig<R = API.ResponseDataPubSysConfig, T = API.ResponseDataPubSysConfig>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
93
93
  /**
94
94
  * @description 重置用户样式配置
95
95
  * @url /sysconfig/resetUserThemeStyleConfig
96
96
  * @method POST
97
- * @author @pubinfo/openapi
97
+ * @author @pubinfo-pr/openapi
98
98
  */
99
99
  export declare function postSysconfigResetUserThemeStyleConfig<R = API.ResponseDataBoolean, T = API.ResponseDataBoolean>(options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,69 +3,69 @@ import { basic as request } from '../../request';
3
3
  * @description 字典项删除
4
4
  * @url /dict/item/delete/${param0}
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postDictItemDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.postDictItemDeleteByIdParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 字典项删除
11
11
  * @url /dict/item/delete/${param0}
12
12
  * @method DELETE
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function deleteDictItemDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.deleteDictItemDeleteByIdParams, options?: Parameters<typeof request.Delete<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 字典项列表
18
18
  * @url /dict/item/list
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getDictItemList<R = API.ResponseDataListDictItemVo, T = API.ResponseDataListDictItemVo>(params: API.getDictItemListParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 字典项列表(批量返回)
25
25
  * @url /dict/item/list/batch
26
26
  * @method GET
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function getDictItemListBatch<R = API.ResponseDataListDictItemBatchVo, T = API.ResponseDataListDictItemBatchVo>(params: API.getDictItemListBatchParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 字典项分页查询
32
32
  * @url /dict/item/page
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postDictItemPage<R = API.ResponseDataPageDataDictItemVo, T = API.ResponseDataPageDataDictItemVo>(body: API.DictItemQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 字典项保存
39
39
  * @url /dict/item/save
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postDictItemSave<R = API.ResponseDataString, T = API.ResponseDataString>(body: API.DictItemSaveDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 字典类型删除
46
46
  * @url /dict/type/delete/${param0}
47
47
  * @method POST
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function postDictTypeDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.postDictTypeDeleteByIdParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
51
51
  /**
52
52
  * @description 字典类型删除
53
53
  * @url /dict/type/delete/${param0}
54
54
  * @method DELETE
55
- * @author @pubinfo/openapi
55
+ * @author @pubinfo-pr/openapi
56
56
  */
57
57
  export declare function deleteDictTypeDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.deleteDictTypeDeleteByIdParams, options?: Parameters<typeof request.Delete<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
58
58
  /**
59
59
  * @description 字典类型分页查询
60
60
  * @url /dict/type/page
61
61
  * @method POST
62
- * @author @pubinfo/openapi
62
+ * @author @pubinfo-pr/openapi
63
63
  */
64
64
  export declare function postDictTypePage<R = API.ResponseDataPageDataDictTypeVo, T = API.ResponseDataPageDataDictTypeVo>(body: API.DictTypeQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
65
65
  /**
66
66
  * @description 字典类型保存
67
67
  * @url /dict/type/save
68
68
  * @method POST
69
- * @author @pubinfo/openapi
69
+ * @author @pubinfo-pr/openapi
70
70
  */
71
71
  export declare function postDictTypeSave<R = API.ResponseDataString, T = API.ResponseDataString>(body: API.DictTypeSaveDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,41 +3,41 @@ import { basic as request } from '../../request';
3
3
  * @description 删除 delete
4
4
  * @url /rbac/post/delete/${param0}
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postRbacPostDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.postRbacPostDeleteByIdParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 删除 delete
11
11
  * @url /rbac/post/delete/${param0}
12
12
  * @method DELETE
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function deleteRbacPostDeleteById<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.deleteRbacPostDeleteByIdParams, options?: Parameters<typeof request.Delete<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 根据主键获取信息 detail
18
18
  * @url /rbac/post/detail/${param0}
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getRbacPostDetailById<R = API.ResponseDataPubPost, T = API.ResponseDataPubPost>(params: API.getRbacPostDetailByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 分页查询 findPage
25
25
  * @url /rbac/post/findPage
26
26
  * @method POST
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function postRbacPostFindPage<R = API.ResponseDataPageDataPubPost, T = API.ResponseDataPageDataPubPost>(body: API.PubPostQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 全量岗位列表查询 list
32
32
  * @url /rbac/post/list
33
33
  * @method GET
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function getRbacPostList<R = API.ResponseDataListPubPost, T = API.ResponseDataListPubPost>(params: API.getRbacPostListParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 新增岗位 save
39
39
  * @url /rbac/post/save
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postRbacPostSave<R = API.ResponseDataString, T = API.ResponseDataString>(body: API.PubPostDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,48 +3,48 @@ import { basic as request } from '../../request';
3
3
  * @description 角色新增
4
4
  * @url /rbac/role/addRole
5
5
  * @method POST
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function postRbacRoleAddRole<R = API.ResponseDataPubRoleBo, T = API.ResponseDataPubRoleBo>(body: API.PubRoleAddDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 根据id查询
11
11
  * @url /rbac/role/info
12
12
  * @method GET
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function getRbacRoleInfo<R = API.ResponseDataPubRoleResourceBo, T = API.ResponseDataPubRoleResourceBo>(params: API.getRbacRoleInfoParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 角色删除
18
18
  * @url /rbac/role/roleDelete
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getRbacRoleRoleDelete<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.getRbacRoleRoleDeleteParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 角色不分页查询
25
25
  * @url /rbac/role/roleList
26
26
  * @method GET
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function getRbacRoleRoleList<R = API.ResponseDataListPubRole, T = API.ResponseDataListPubRole>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 角色分页查询
32
32
  * @url /rbac/role/rolePage
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postRbacRoleRolePage<R = API.ResponseDataPageDataPubRoleBo, T = API.ResponseDataPageDataPubRoleBo>(body: API.PubRoleQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 角色编辑
39
39
  * @url /rbac/role/roleUpdate
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postRbacRoleRoleUpdate<R = API.ResponseDataPubRoleBo, T = API.ResponseDataPubRoleBo>(body: API.PubRoleUpdateDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 角色用户分页查询
46
46
  * @url /rbac/role/roleUserPage
47
47
  * @method POST
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function postRbacRoleRoleUserPage<R = API.ResponseDataPageDataPubUserOrgRoleBo, T = API.ResponseDataPageDataPubUserOrgRoleBo>(body: API.PubRoleQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,48 +3,48 @@ import { basic as request } from '../../request';
3
3
  * @description 删除PubRoleGroup 根据ID删除PubRoleGroup
4
4
  * @url /rbac/pubRoleGroup/delete
5
5
  * @method DELETE
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function deleteRbacPubRoleGroupDelete<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.deleteRbacPubRoleGroupDeleteParams, options?: Parameters<typeof request.Delete<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 获取所有PubRoleGroup 返回所有pub_角色组列表
11
11
  * @url /rbac/pubRoleGroup/getAll
12
12
  * @method GET
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function getRbacPubRoleGroupGetAll<R = API.ResponseDataListPubRoleGroup, T = API.ResponseDataListPubRoleGroup>(params: API.getRbacPubRoleGroupGetAllParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 根据ID获取pub_角色组 返回指定ID的pub_角色组
18
18
  * @url /rbac/pubRoleGroup/getById
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getRbacPubRoleGroupGetById<R = API.ResponseDataPubRoleGroup, T = API.ResponseDataPubRoleGroup>(params: API.getRbacPubRoleGroupGetByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 根据ID获取角色组中授权角色 根据ID获取角色组中授权角色
25
25
  * @url /rbac/pubRoleGroup/getGrantRolesById
26
26
  * @method GET
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function getRbacPubRoleGroupGetGrantRolesById<R = API.ResponseDataPubRoleGroup, T = API.ResponseDataPubRoleGroup>(params: API.getRbacPubRoleGroupGetGrantRolesByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 分页查询PubRoleGroup 返回pub_角色组分页
32
32
  * @url /rbac/pubRoleGroup/pageQuery
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postRbacPubRoleGroupPageQuery<R = API.ResponseDataPageDataPubRoleGroup, T = API.ResponseDataPageDataPubRoleGroup>(body: API.PubRoleGroupQueryDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 创建pub_角色组 根据请求体创建一个新的pub_角色组
39
39
  * @url /rbac/pubRoleGroup/save
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postRbacPubRoleGroupSave<R = API.ResponseDataPubRoleGroup, T = API.ResponseDataPubRoleGroup>(body: API.PubRoleGroupAddDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 更新PubRoleGroup 根据ID更新PubRoleGroup的详细信息
46
46
  * @url /rbac/pubRoleGroup/update
47
47
  * @method POST
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function postRbacPubRoleGroupUpdate<R = API.ResponseDataPubRoleGroup, T = API.ResponseDataPubRoleGroup>(body: API.PubRoleGroupUpdateDto, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
@@ -3,62 +3,62 @@ import { basic as request } from '../../request';
3
3
  * @description 数据权限不分页下拉列表
4
4
  * @url /rbac/pubDataPermissions/dataPermissionList
5
5
  * @method GET
6
- * @author @pubinfo/openapi
6
+ * @author @pubinfo-pr/openapi
7
7
  */
8
8
  export declare function getRbacPubDataPermissionsDataPermissionList<R = API.ResponseDataListshujuquanxianshituduixiang, T = API.ResponseDataListshujuquanxianshituduixiang>(options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
9
9
  /**
10
10
  * @description 删除数据权限 根据ID删除PubDataPermissions
11
11
  * @url /rbac/pubDataPermissions/delete
12
12
  * @method DELETE
13
- * @author @pubinfo/openapi
13
+ * @author @pubinfo-pr/openapi
14
14
  */
15
15
  export declare function deleteRbacPubDataPermissionsDelete<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(params: API.deleteRbacPubDataPermissionsDeleteParams, options?: Parameters<typeof request.Delete<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
16
16
  /**
17
17
  * @description 根据ID获取数据权限详情 返回指定ID的数据权限主表
18
18
  * @url /rbac/pubDataPermissions/getById
19
19
  * @method GET
20
- * @author @pubinfo/openapi
20
+ * @author @pubinfo-pr/openapi
21
21
  */
22
22
  export declare function getRbacPubDataPermissionsGetById<R = API.ResponseDatashujuquanxianbianjiduixiang, T = API.ResponseDatashujuquanxianbianjiduixiang>(params: API.getRbacPubDataPermissionsGetByIdParams, options?: Parameters<typeof request.Get<R, T>>[1]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
23
23
  /**
24
24
  * @description 获取用户各组织数据权限
25
25
  * @url /rbac/pubDataPermissions/getUserOrgDataPermissionList
26
26
  * @method POST
27
- * @author @pubinfo/openapi
27
+ * @author @pubinfo-pr/openapi
28
28
  */
29
29
  export declare function postRbacPubDataPermissionsGetUserOrgDataPermissionList<R = API.ResponseDatashouquanshujuquanxianduixiang, T = API.ResponseDatashouquanshujuquanxianduixiang>(params: API.postRbacPubDataPermissionsGetUserOrgDataPermissionListParams, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
30
30
  /**
31
31
  * @description 授权数据权限
32
32
  * @url /rbac/pubDataPermissions/grantDataPermission
33
33
  * @method POST
34
- * @author @pubinfo/openapi
34
+ * @author @pubinfo-pr/openapi
35
35
  */
36
36
  export declare function postRbacPubDataPermissionsGrantDataPermission<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(body: API.xinzengshouquanshujuquanxianduixiang, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
37
37
  /**
38
38
  * @description 编辑角色和授权数据权限
39
39
  * @url /rbac/pubDataPermissions/grantUserRoleAndDatPermission
40
40
  * @method POST
41
- * @author @pubinfo/openapi
41
+ * @author @pubinfo-pr/openapi
42
42
  */
43
43
  export declare function postRbacPubDataPermissionsGrantUserRoleAndDatPermission<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(body: API.bianjijiaoseheshouquanshujuquanxianduixiang[], options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
44
44
  /**
45
45
  * @description 分页查询数据权限 返回数据权限主表分页
46
46
  * @url /rbac/pubDataPermissions/pageQuery
47
47
  * @method POST
48
- * @author @pubinfo/openapi
48
+ * @author @pubinfo-pr/openapi
49
49
  */
50
50
  export declare function postRbacPubDataPermissionsPageQuery<R = API.ResponseDataPageDatashujuquanxianshituduixiang, T = API.ResponseDataPageDatashujuquanxianshituduixiang>(body: API.shujuquanxianchaxunduixiang, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
51
51
  /**
52
52
  * @description 创建数据权限 根据请求体创建一个新的数据权限主表
53
53
  * @url /rbac/pubDataPermissions/save
54
54
  * @method POST
55
- * @author @pubinfo/openapi
55
+ * @author @pubinfo-pr/openapi
56
56
  */
57
57
  export declare function postRbacPubDataPermissionsSave<R = API.ResponseDataVoid, T = API.ResponseDataVoid>(body: API.shujuquanxianxinzenghuogengxinduixiang, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;
58
58
  /**
59
59
  * @description 更新数据权限 根据ID更新PubDataPermissions的详细信息
60
60
  * @url /rbac/pubDataPermissions/update
61
61
  * @method POST
62
- * @author @pubinfo/openapi
62
+ * @author @pubinfo-pr/openapi
63
63
  */
64
64
  export declare function postRbacPubDataPermissionsUpdate<R = API.ResponseDataPubDataPermissions, T = API.ResponseDataPubDataPermissions>(body: API.shujuquanxianxinzenghuogengxinduixiang, options?: Parameters<typeof request.Post<R, T>>[2]): import('alova').Method<import('alova').RespondedAlovaGenerics<import('../../../..').AG, R, T>>;