jmash-core-mp 0.1.76 → 0.1.77

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 (219) hide show
  1. package/.editorconfig +9 -9
  2. package/.gitignore +8 -0
  3. package/.npmignore +44 -0
  4. package/README.md +60 -60
  5. package/babel.config.json +34 -34
  6. package/eslint.config.mjs +7 -7
  7. package/lib/api/auth/index.d.ts +22 -22
  8. package/lib/api/auth/index.js +211 -211
  9. package/lib/api/auth/types.d.ts +90 -90
  10. package/lib/api/auth/types.js +9 -9
  11. package/lib/api/cms/index.d.ts +20 -20
  12. package/lib/api/cms/index.js +161 -161
  13. package/lib/api/cms/types.d.ts +201 -201
  14. package/lib/api/cms/types.js +1 -1
  15. package/lib/api/constant.d.ts +6 -6
  16. package/lib/api/constant.js +8 -8
  17. package/lib/api/dict/index.d.ts +24 -24
  18. package/lib/api/dict/index.js +51 -51
  19. package/lib/api/dict/types.d.ts +40 -40
  20. package/lib/api/dict/types.js +1 -1
  21. package/lib/api/dicts.d.ts +32 -32
  22. package/lib/api/dicts.js +118 -118
  23. package/lib/api/files/index.d.ts +25 -25
  24. package/lib/api/files/index.js +134 -134
  25. package/lib/api/files/types.d.ts +38 -38
  26. package/lib/api/files/types.js +1 -1
  27. package/lib/api/index.d.ts +5 -5
  28. package/lib/api/index.js +8 -8
  29. package/lib/api/myorgan/index.d.ts +8 -8
  30. package/lib/api/myorgan/index.js +24 -24
  31. package/lib/api/myorgan/types.d.ts +22 -22
  32. package/lib/api/myorgan/types.js +1 -1
  33. package/lib/api/region/index.d.ts +7 -7
  34. package/lib/api/region/index.js +20 -20
  35. package/lib/api/region/types.d.ts +19 -19
  36. package/lib/api/region/types.js +1 -1
  37. package/lib/api/shop/index.d.ts +11 -11
  38. package/lib/api/shop/index.js +53 -53
  39. package/lib/api/shop/types.d.ts +123 -123
  40. package/lib/api/shop/types.js +1 -1
  41. package/lib/api/storage/index.d.ts +11 -11
  42. package/lib/api/storage/index.js +53 -53
  43. package/lib/api/storage/types.d.ts +39 -39
  44. package/lib/api/storage/types.js +1 -1
  45. package/lib/api/types.d.ts +43 -43
  46. package/lib/api/types.js +1 -1
  47. package/lib/components/auth-user/jmash-update-user.mpx.d.ts +1 -1
  48. package/lib/components/auth-user/jmash-user.mpx.d.ts +1 -1
  49. package/lib/components/cms/jmash-cms-activity-item.mpx.d.ts +1 -0
  50. package/lib/components/cms/jmash-cms-activity-list.mpx.d.ts +1 -0
  51. package/lib/components/cms/jmash-cms-article-item.mpx.d.ts +1 -0
  52. package/lib/components/cms/jmash-cms-article-list.mpx.d.ts +1 -0
  53. package/lib/components/cms/jmash-cms-article-view.mpx.d.ts +1 -0
  54. package/lib/components/cms/jmash-cms-like.mpx.d.ts +1 -0
  55. package/lib/components/cms/jmash-cms-location-list.mpx.d.ts +1 -0
  56. package/lib/components/cms/jmash-cms-product-item.mpx.d.ts +1 -0
  57. package/lib/components/cms/jmash-cms-product-list.mpx.d.ts +1 -0
  58. package/lib/components/common/jmash-search.mpx.d.ts +1 -0
  59. package/lib/components/core/jmash-login.mpx.d.ts +1 -1
  60. package/lib/components/organ/browser-organ-list.mpx.d.ts +1 -1
  61. package/lib/components/organ/my-organ-list.mpx.d.ts +1 -1
  62. package/lib/components/organ/organ-item.mpx.d.ts +1 -0
  63. package/lib/components/organ/organ-search.mpx.d.ts +1 -0
  64. package/lib/components/shop/branch-item.mpx.d.ts +1 -0
  65. package/lib/components/shop/branch-search.mpx.d.ts +1 -0
  66. package/lib/components/shop/shop-item.mpx.d.ts +1 -0
  67. package/lib/components/shop/shop-search.mpx.d.ts +1 -0
  68. package/lib/index.d.ts +28 -28
  69. package/lib/index.js +23 -23
  70. package/lib/packages/pages/auth/setting-page.mpx.d.ts +1 -1
  71. package/lib/packages/pages/cms/cms-activity-list.mpx.d.ts +1 -0
  72. package/lib/packages/pages/cms/cms-article-list.mpx.d.ts +1 -0
  73. package/lib/packages/pages/cms/cms-location-list.mpx.d.ts +1 -0
  74. package/lib/packages/pages/cms/cms-product-list.mpx.d.ts +1 -0
  75. package/lib/packages/pages/share/scan.mpx.d.ts +1 -1
  76. package/lib/pages/organ.mpx.d.ts +1 -1
  77. package/lib/store/organ.d.ts +19 -19
  78. package/lib/store/organ.js +83 -83
  79. package/lib/store/shop.d.ts +18 -18
  80. package/lib/store/shop.js +104 -104
  81. package/lib/store/user.d.ts +35 -35
  82. package/lib/store/user.js +243 -243
  83. package/lib/utils/common.d.ts +35 -35
  84. package/lib/utils/common.js +165 -165
  85. package/lib/utils/config.d.ts +5 -5
  86. package/lib/utils/config.js +36 -36
  87. package/lib/utils/db.d.ts +52 -52
  88. package/lib/utils/db.js +202 -202
  89. package/lib/utils/grpc.d.ts +5 -5
  90. package/lib/utils/grpc.js +20 -20
  91. package/lib/utils/net.d.ts +7 -7
  92. package/lib/utils/net.js +15 -15
  93. package/lib/utils/request.d.ts +2 -2
  94. package/lib/utils/request.js +114 -114
  95. package/lib/utils/share.d.ts +16 -16
  96. package/lib/utils/share.js +196 -196
  97. package/mpx.config.js +38 -38
  98. package/package.json +1 -1
  99. package/pnpm-workspace.yaml +5 -0
  100. package/postcss.config.js +11 -11
  101. package/project.config.json +24 -24
  102. package/project.private.config.json +13 -13
  103. package/public/index.html +15 -15
  104. package/src/api/auth/index.ts +241 -241
  105. package/src/api/auth/types.ts +173 -173
  106. package/src/api/cms/index.ts +218 -218
  107. package/src/api/cms/types.ts +385 -385
  108. package/src/api/constant.ts +8 -8
  109. package/src/api/dict/index.ts +68 -68
  110. package/src/api/dict/types.ts +73 -73
  111. package/src/api/dicts.ts +132 -132
  112. package/src/api/files/index.ts +162 -162
  113. package/src/api/files/types.ts +67 -67
  114. package/src/api/index.ts +15 -15
  115. package/src/api/myorgan/index.ts +29 -29
  116. package/src/api/myorgan/types.ts +42 -42
  117. package/src/api/region/index.ts +24 -24
  118. package/src/api/region/types.ts +36 -36
  119. package/src/api/shop/index.ts +74 -74
  120. package/src/api/shop/types.ts +244 -244
  121. package/src/api/storage/index.ts +74 -74
  122. package/src/api/storage/types.ts +74 -74
  123. package/src/api/types.ts +74 -74
  124. package/src/app.mpx +78 -78
  125. package/src/components/auth-user/jmash-logout.mpx +93 -93
  126. package/src/components/auth-user/jmash-update-user.mpx +387 -387
  127. package/src/components/auth-user/jmash-update-user.web.mpx +367 -367
  128. package/src/components/auth-user/jmash-user.mpx +310 -310
  129. package/src/components/cms/jmash-cms-activity-item.mpx +207 -207
  130. package/src/components/cms/jmash-cms-activity-list.mpx +357 -357
  131. package/src/components/cms/jmash-cms-article-item.mpx +221 -221
  132. package/src/components/cms/jmash-cms-article-list.mpx +248 -248
  133. package/src/components/cms/jmash-cms-article-view.mpx +131 -131
  134. package/src/components/cms/jmash-cms-article.mpx +231 -231
  135. package/src/components/cms/jmash-cms-like.mpx +151 -151
  136. package/src/components/cms/jmash-cms-location-list.mpx +286 -286
  137. package/src/components/cms/jmash-cms-location.mpx +256 -256
  138. package/src/components/cms/jmash-cms-product-item.mpx +185 -185
  139. package/src/components/cms/jmash-cms-product-list.mpx +230 -230
  140. package/src/components/common/jmash-avatar-edit.mpx +154 -154
  141. package/src/components/common/jmash-cascader-region.mpx +118 -118
  142. package/src/components/common/jmash-cell-group.mpx +206 -206
  143. package/src/components/common/jmash-code-interest-popup.mpx +223 -223
  144. package/src/components/common/jmash-form-cell.mpx +525 -525
  145. package/src/components/common/jmash-menu.mpx +129 -129
  146. package/src/components/common/jmash-none-data.mpx +95 -95
  147. package/src/components/common/jmash-pic-swiper.mpx +72 -72
  148. package/src/components/common/jmash-popup.mpx +138 -138
  149. package/src/components/common/jmash-search.mpx +130 -130
  150. package/src/components/common/jmash-single-btn.mpx +53 -53
  151. package/src/components/common/jmash-stepper.mpx +236 -236
  152. package/src/components/common/jmash-swipe-cell.mpx +153 -153
  153. package/src/components/common/jmash-tab-bar.mpx +58 -58
  154. package/src/components/common/jmash-textarea.mpx +88 -88
  155. package/src/components/common/jmash-top-navigation.mpx +203 -203
  156. package/src/components/common/jmash-upload-picture.mpx +199 -199
  157. package/src/components/core/jmash-cms-protocol.mpx +72 -72
  158. package/src/components/core/jmash-login.ali.mpx +284 -284
  159. package/src/components/core/jmash-login.mpx +378 -378
  160. package/src/components/core/jmash-login.web.mpx +420 -420
  161. package/src/components/core/jmash-popup-login.ali.mpx +312 -312
  162. package/src/components/core/jmash-popup-login.mpx +414 -416
  163. package/src/components/core/jmash-popup-login.web.mpx +389 -389
  164. package/src/components/organ/browser-organ-list.mpx +66 -66
  165. package/src/components/organ/my-organ-list.mpx +67 -67
  166. package/src/components/organ/organ-item.mpx +124 -124
  167. package/src/components/organ/organ-search.mpx +148 -148
  168. package/src/components/organ/organ-selected-item.mpx +88 -88
  169. package/src/components/shop/branch-item.mpx +111 -111
  170. package/src/components/shop/branch-search.mpx +142 -142
  171. package/src/components/shop/shop-item.mpx +112 -112
  172. package/src/components/shop/shop-search.mpx +142 -142
  173. package/src/components/shop/shop-selected-item.mpx +89 -89
  174. package/src/custom-tab-bar/index.mpx +10 -10
  175. package/src/global.d.ts +11 -11
  176. package/src/index.ts +94 -94
  177. package/src/packages/index.mpx +16 -16
  178. package/src/packages/pages/auth/cms-protocol.mpx +35 -35
  179. package/src/packages/pages/auth/login.mpx +62 -62
  180. package/src/packages/pages/auth/setting-page.mpx +134 -134
  181. package/src/packages/pages/auth/update-user.mpx +17 -17
  182. package/src/packages/pages/cms/cms-activity-list.mpx +86 -86
  183. package/src/packages/pages/cms/cms-article-list.mpx +88 -88
  184. package/src/packages/pages/cms/cms-article.mpx +32 -32
  185. package/src/packages/pages/cms/cms-location-list.mpx +83 -83
  186. package/src/packages/pages/cms/cms-location.mpx +32 -32
  187. package/src/packages/pages/cms/cms-product-list.mpx +88 -88
  188. package/src/packages/pages/share/scan.mpx +103 -103
  189. package/src/pages/basic-component.mpx +30 -30
  190. package/src/pages/branch-search.mpx +60 -60
  191. package/src/pages/half-home.mpx +58 -58
  192. package/src/pages/home.mpx +54 -54
  193. package/src/pages/home2.mpx +45 -45
  194. package/src/pages/index.mpx +43 -43
  195. package/src/pages/organ-search.mpx +60 -60
  196. package/src/pages/organ.mpx +105 -105
  197. package/src/pages/shop-search.mpx +60 -60
  198. package/src/pages/tabbar/home.mpx +114 -114
  199. package/src/pages/tabbar/mall.mpx +87 -87
  200. package/src/pages/tabbar/my.mpx +79 -79
  201. package/src/pages/tabbar/organ.mpx +86 -86
  202. package/src/store/organ.ts +100 -100
  203. package/src/store/shop.ts +130 -130
  204. package/src/store/user.ts +288 -288
  205. package/src/styles/index.scss +20 -20
  206. package/src/styles/vars.scss +27 -27
  207. package/src/utils/common.ts +178 -178
  208. package/src/utils/config.ts +43 -43
  209. package/src/utils/db.ts +229 -229
  210. package/src/utils/grpc.ts +21 -21
  211. package/src/utils/net.ts +18 -18
  212. package/src/utils/request.ts +126 -126
  213. package/src/utils/share.ts +194 -194
  214. package/static/ali/mini.project.json +4 -4
  215. package/static/dd/project.config.json +15 -15
  216. package/static/swan/project.swan.json +14 -14
  217. package/static/tt/project.config.json +11 -11
  218. package/static/wx/project.config.json +40 -40
  219. package/uno.config.js +9 -9
package/.editorconfig CHANGED
@@ -1,9 +1,9 @@
1
- root = true
2
-
3
- [*]
4
- charset = utf-8
5
- indent_style = space
6
- indent_size = 2
7
- end_of_line = lf
8
- insert_final_newline = true
9
- trim_trailing_whitespace = true
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ indent_style = space
6
+ indent_size = 2
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
package/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ .DS_Store
2
+ node_modules/
3
+ npm-debug.log
4
+ .idea/
5
+ deploy/
6
+ output/
7
+ dist/
8
+ .vscode/
package/.npmignore ADDED
@@ -0,0 +1,44 @@
1
+ # Cache directories
2
+ .cache/
3
+ node_modules/
4
+ dist/
5
+
6
+ # Build artifacts
7
+ *.tgz
8
+ *.tar.gz
9
+
10
+ # IDE and editor files
11
+ .vscode/
12
+ .idea/
13
+ *.swp
14
+ *.swo
15
+ *~
16
+
17
+ # OS files
18
+ .DS_Store
19
+ Thumbs.db
20
+
21
+ # Log files
22
+ *.log
23
+ npm-debug.log*
24
+ pnpm-debug.log*
25
+ yarn-debug.log*
26
+ yarn-error.log*
27
+
28
+ # Test files
29
+ __tests__/
30
+ test/
31
+ *.test.js
32
+ *.spec.js
33
+
34
+ # Config files that shouldn't be published
35
+ .eslintrc*
36
+ .prettierrc*
37
+ jest.config.*
38
+ tsconfig.json
39
+ .babelrc*
40
+
41
+ # Environment files
42
+ .env
43
+ .env.local
44
+ .env.*.local
package/README.md CHANGED
@@ -1,60 +1,60 @@
1
- # jmash-core-mp
2
-
3
- 采用 MPX 构建的 Jmash 高性能跨端小程序。
4
- https://mpxjs.cn/
5
-
6
- ## Project setup
7
-
8
- ```javascript
9
- // 开发构建,默认输出微信小程序
10
- npm run serve
11
-
12
- // 开发构建,跨平台输出支付宝小程序
13
- npm run serve:ali
14
-
15
- // 开发构建,跨平台输出 Web
16
- npm run serve:web
17
-
18
- // 开发构建,跨平台输出其他平台小程序target = swan|tt|qq|jd|ks
19
- npm run serve -- --targets={target}
20
-
21
- // 开发构建,同时输出多平台产物
22
- npm run serve -- --targets=wx,ali,web
23
-
24
- // 生产构建,默认输出微信小程序
25
- npm run build
26
-
27
- // 生产构建,跨平台输出
28
- npm run build:ali
29
- npm run build:web
30
- npm run build -- --targets=wx,ali,web
31
- ```
32
-
33
- # ALi 小程序
34
-
35
- 登录
36
- minidev login
37
-
38
- 调试开发
39
- minidev dev
40
-
41
- 本地 IP 调试
42
- minidev dev --host 192.168.1.154
43
-
44
- 真机调试
45
- minidev remote-debug -a 2021006137629651
46
-
47
- Web 端调试
48
- minidev dev
49
- web -a 2021006137629651
50
- 真机预览
51
- minidev preview -a 2021006137629651
52
-
53
- # pnpm publish --no-git-checks
54
-
55
- 官方镜像
56
- npm config set registry https://registry.npmjs.org/
57
- 国内镜像
58
- npm config set registry https://registry.npmmirror.com/
59
- 代理镜像
60
- npm config set registry https://npm.crenjoy.com/
1
+ # jmash-core-mp
2
+
3
+ 采用 MPX 构建的 Jmash 高性能跨端小程序。
4
+ https://mpxjs.cn/
5
+
6
+ ## Project setup
7
+
8
+ ```javascript
9
+ // 开发构建,默认输出微信小程序
10
+ npm run serve
11
+
12
+ // 开发构建,跨平台输出支付宝小程序
13
+ npm run serve:ali
14
+
15
+ // 开发构建,跨平台输出 Web
16
+ npm run serve:web
17
+
18
+ // 开发构建,跨平台输出其他平台小程序target = swan|tt|qq|jd|ks
19
+ npm run serve -- --targets={target}
20
+
21
+ // 开发构建,同时输出多平台产物
22
+ npm run serve -- --targets=wx,ali,web
23
+
24
+ // 生产构建,默认输出微信小程序
25
+ npm run build
26
+
27
+ // 生产构建,跨平台输出
28
+ npm run build:ali
29
+ npm run build:web
30
+ npm run build -- --targets=wx,ali,web
31
+ ```
32
+
33
+ # ALi 小程序
34
+
35
+ 登录
36
+ minidev login
37
+
38
+ 调试开发
39
+ minidev dev
40
+
41
+ 本地 IP 调试
42
+ minidev dev --host 192.168.1.154
43
+
44
+ 真机调试
45
+ minidev remote-debug -a 2021006137629651
46
+
47
+ Web 端调试
48
+ minidev dev
49
+ web -a 2021006137629651
50
+ 真机预览
51
+ minidev preview -a 2021006137629651
52
+
53
+ # pnpm publish --no-git-checks
54
+
55
+ 官方镜像
56
+ npm config set registry https://registry.npmjs.org/
57
+ 国内镜像
58
+ npm config set registry https://registry.npmmirror.com/
59
+ 代理镜像
60
+ npm config set registry https://npm.crenjoy.com/
package/babel.config.json CHANGED
@@ -1,34 +1,34 @@
1
- {
2
- "presets": [
3
- [
4
- "@babel/preset-env",
5
- {
6
- "modules": false,
7
- "shippedProposals": true
8
- }
9
- ],
10
- ],
11
- "plugins": [
12
- [
13
- "@babel/transform-runtime",
14
- {
15
- "corejs": 3,
16
- "version": "^7.10.4"
17
- }
18
- ],
19
- "@mpxjs/babel-plugin-inject-page-events",
20
- ],
21
- "sourceType": "unambiguous",
22
- "env": {
23
- "test": {
24
- "presets": [
25
- [
26
- "@babel/env",
27
- {
28
- "shippedProposals": true
29
- }
30
- ]
31
- ]
32
- }
33
- }
34
- }
1
+ {
2
+ "presets": [
3
+ [
4
+ "@babel/preset-env",
5
+ {
6
+ "modules": false,
7
+ "shippedProposals": true
8
+ }
9
+ ],
10
+ ],
11
+ "plugins": [
12
+ [
13
+ "@babel/transform-runtime",
14
+ {
15
+ "corejs": 3,
16
+ "version": "^7.10.4"
17
+ }
18
+ ],
19
+ "@mpxjs/babel-plugin-inject-page-events",
20
+ ],
21
+ "sourceType": "unambiguous",
22
+ "env": {
23
+ "test": {
24
+ "presets": [
25
+ [
26
+ "@babel/env",
27
+ {
28
+ "shippedProposals": true
29
+ }
30
+ ]
31
+ ]
32
+ }
33
+ }
34
+ }
package/eslint.config.mjs CHANGED
@@ -1,7 +1,7 @@
1
- import { mpxConfig } from '@mpxjs/eslint-config'
2
- export default mpxConfig(
3
- {
4
- mpx: true,
5
- typescript: true
6
- }
7
- )
1
+ import { mpxConfig } from '@mpxjs/eslint-config'
2
+ export default mpxConfig(
3
+ {
4
+ mpx: true,
5
+ typescript: true
6
+ }
7
+ )
@@ -1,22 +1,22 @@
1
- import { ResponseData } from "../../api/types";
2
- import type { LoginReq, LoginRes, RolesPerms, WebLoginReq, TokenModel, PhoneRegisterReq, PhoneReplaceReq, UpdateUserReq, UserInfoReq, UserInfo, GzhSubscribeCheckReq } from "./types";
3
- declare class AuthApi {
4
- mpLogin(data: LoginReq): Promise<ResponseData<LoginRes>>;
5
- mpPhoneRegister(data: PhoneRegisterReq): Promise<ResponseData<LoginRes>>;
6
- replaceBindphone(data: PhoneReplaceReq): Promise<ResponseData<string>>;
7
- webLogin(data: WebLoginReq): Promise<ResponseData<TokenModel>>;
8
- refreshToken(): Promise<ResponseData<TokenModel>>;
9
- userInfo(): Promise<ResponseData<UserInfo>>;
10
- userRolesPerms(): Promise<ResponseData<RolesPerms>>;
11
- allowRunAsUser(): Promise<ResponseData<any[]>>;
12
- runAsUser(userId: string): Promise<ResponseData<any>>;
13
- updateUser(data: any): Promise<ResponseData<any>>;
14
- updatePwd(encodeOldPwd: string, encodeNewPwd: string): Promise<ResponseData<any>>;
15
- deptTree(deptId?: string, tenant?: string): Promise<ResponseData<any[]>>;
16
- jobTree(jobId?: string, tenant?: string): Promise<ResponseData<any[]>>;
17
- updateUserInfo(data: UpdateUserReq): Promise<ResponseData<UserInfo>>;
18
- findUserInfo(data: UserInfoReq): Promise<ResponseData<UserInfo>>;
19
- findUserIsSubscribe(data: GzhSubscribeCheckReq): Promise<ResponseData<any>>;
20
- }
21
- export declare const authApi: AuthApi;
22
- export {};
1
+ import { ResponseData } from "../../api/types";
2
+ import type { LoginReq, LoginRes, RolesPerms, WebLoginReq, TokenModel, PhoneRegisterReq, PhoneReplaceReq, UpdateUserReq, UserInfoReq, UserInfo, GzhSubscribeCheckReq } from "./types";
3
+ declare class AuthApi {
4
+ mpLogin(data: LoginReq): Promise<ResponseData<LoginRes>>;
5
+ mpPhoneRegister(data: PhoneRegisterReq): Promise<ResponseData<LoginRes>>;
6
+ replaceBindphone(data: PhoneReplaceReq): Promise<ResponseData<string>>;
7
+ webLogin(data: WebLoginReq): Promise<ResponseData<TokenModel>>;
8
+ refreshToken(): Promise<ResponseData<TokenModel>>;
9
+ userInfo(): Promise<ResponseData<UserInfo>>;
10
+ userRolesPerms(): Promise<ResponseData<RolesPerms>>;
11
+ allowRunAsUser(): Promise<ResponseData<any[]>>;
12
+ runAsUser(userId: string): Promise<ResponseData<any>>;
13
+ updateUser(data: any): Promise<ResponseData<any>>;
14
+ updatePwd(encodeOldPwd: string, encodeNewPwd: string): Promise<ResponseData<any>>;
15
+ deptTree(deptId?: string, tenant?: string): Promise<ResponseData<any[]>>;
16
+ jobTree(jobId?: string, tenant?: string): Promise<ResponseData<any[]>>;
17
+ updateUserInfo(data: UpdateUserReq): Promise<ResponseData<UserInfo>>;
18
+ findUserInfo(data: UserInfoReq): Promise<ResponseData<UserInfo>>;
19
+ findUserIsSubscribe(data: GzhSubscribeCheckReq): Promise<ResponseData<any>>;
20
+ }
21
+ export declare const authApi: AuthApi;
22
+ export {};