yuang-framework-ui-common 1.0.67 → 1.0.68

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,19 @@
1
+ import type { FrameworkBase, FrameworkBaseQueryParam } from '../framework/frameworkBase';
2
+
3
+ /**
4
+ * sso客户端
5
+ */
6
+ export interface SsoClient extends FrameworkBase {
7
+ account?: string;
8
+ secret?: string;
9
+ status?: number;
10
+
11
+ }
12
+
13
+ /**
14
+ * sso客户端搜索条件
15
+ */
16
+ export interface SsoClientQueryParam extends FrameworkBaseQueryParam {
17
+ accountForLike?: string;
18
+ statusForEqual?: string;
19
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuang-framework-ui-common",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {