@skyfox2000/microbase 1.0.1 → 1.0.2

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/lib/index.d.ts CHANGED
@@ -447,6 +447,10 @@ export declare interface UserInfo {
447
447
  * 租户Id
448
448
  */
449
449
  readonly TenantId: string;
450
+ /**
451
+ * 用户级别
452
+ */
453
+ readonly UserLevel: string;
450
454
  }
451
455
 
452
456
  export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyfox2000/microbase",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "微前端通用功能与数据类型定义",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -18,6 +18,10 @@ export interface UserInfo {
18
18
  * 租户Id
19
19
  */
20
20
  readonly TenantId: string;
21
+ /**
22
+ * 用户级别
23
+ */
24
+ readonly UserLevel: string;
21
25
  }
22
26
 
23
27
  /**