yuang-framework-ui-common 1.0.76 → 1.0.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.
@@ -0,0 +1,17 @@
1
+ import type { FrameworkBase, FrameworkBaseQueryParam } from '../framework/frameworkBase';
2
+
3
+ /**
4
+ * sso用户
5
+ */
6
+ export interface SsoUser extends FrameworkBase {
7
+ password?: string;
8
+ surePassword?: string;
9
+ rsaAesKey?: string;
10
+ }
11
+
12
+ /**
13
+ * sso用户搜索条件
14
+ */
15
+ export interface SsoUserQueryParam extends FrameworkBaseQueryParam {
16
+
17
+ }
@@ -1,4 +1,5 @@
1
1
  import type { FrameworkBase, FrameworkBaseQueryParam } from '../framework/frameworkBase';
2
+ import { SsoUser } from "../sso/ssoUser";
2
3
 
3
4
  /**
4
5
  * 用户
@@ -13,9 +14,6 @@ export interface UimsUser extends FrameworkBase {
13
14
  status?: number;
14
15
  /** 机构id */
15
16
  organizationId?: string;
16
- password?: string;
17
- surePassword?: string;
18
- rsaAesKey?: string;
19
17
 
20
18
  isRecursiveOrganization?: Boolean;
21
19
  mobile?: string;
@@ -26,6 +24,9 @@ export interface UimsUser extends FrameworkBase {
26
24
 
27
25
  avatarCode?: string;
28
26
  avatarUrl?: string;
27
+
28
+ /** 单点用户 */
29
+ ssoUser?: SsoUser;
29
30
  }
30
31
 
31
32
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuang-framework-ui-common",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {