@yongdall/permission 0.2.0 → 0.3.0
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/index.d.mts +6 -6
- package/package.json +6 -6
package/index.d.mts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as imodel0 from "imodel";
|
|
2
2
|
import * as _yongdall_model0 from "@yongdall/model";
|
|
3
3
|
|
|
4
4
|
//#region plugins/permission/models/Permission.d.mts
|
|
5
5
|
declare const _default: _yongdall_model0.ModelTable<{
|
|
6
|
-
id:
|
|
7
|
-
label:
|
|
8
|
-
groupId:
|
|
6
|
+
id: imodel0.FieldDefine<"string", false, false>;
|
|
7
|
+
label: imodel0.FieldDefine<"string", false, false>;
|
|
8
|
+
groupId: imodel0.FieldDefine<"uuid", false, false>;
|
|
9
9
|
}, "permission">;
|
|
10
10
|
//#endregion
|
|
11
11
|
//#region plugins/permission/models/PermissionGroup.d.mts
|
|
12
12
|
declare const _default$1: _yongdall_model0.ModelTable<{
|
|
13
|
-
id:
|
|
14
|
-
label:
|
|
13
|
+
id: imodel0.FieldDefine<"uuid", false, false>;
|
|
14
|
+
label: imodel0.FieldDefine<"string", false, false>;
|
|
15
15
|
}, "permissionGroup">;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { _default as Permission, _default$1 as PermissionGroup };
|
package/package.json
CHANGED
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.mjs"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.3.0",
|
|
9
9
|
"description": "",
|
|
10
10
|
"keywords": [],
|
|
11
11
|
"author": "",
|
|
12
12
|
"license": "ISC",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@yongdall/connection": "^0.
|
|
15
|
-
"@yongdall/context": "^0.
|
|
16
|
-
"@yongdall/model": "^0.
|
|
17
|
-
"@yongdall/core": "^0.
|
|
14
|
+
"@yongdall/connection": "^0.3.0",
|
|
15
|
+
"@yongdall/context": "^0.3.0",
|
|
16
|
+
"@yongdall/model": "^0.3.0",
|
|
17
|
+
"@yongdall/core": "^0.3.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@yongdall/types": "^0.
|
|
20
|
+
"@yongdall/types": "^0.3.0"
|
|
21
21
|
}
|
|
22
22
|
}
|