x-runtime-lib 0.6.28 → 0.6.29

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.
@@ -1,6 +1,6 @@
1
1
  export type ZItem = {
2
2
  title: string;
3
- value: undefined | string;
3
+ value: string;
4
4
  };
5
5
  type ZTypeBase = {
6
6
  name: string;
@@ -183,9 +183,15 @@ export type ZGroup = {
183
183
  };
184
184
  export type ZPkg = {
185
185
  version: string;
186
- elements: Set<string>;
187
186
  globalityKey: string;
188
187
  refKey: string;
188
+ items: {
189
+ [key: string]: ZItem[];
190
+ };
191
+ types: {
192
+ [key: string]: ZType[];
193
+ };
194
+ elements: Set<string>;
189
195
  groups: ZGroup[];
190
196
  };
191
197
  export type ZPkgs = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-runtime-lib",
3
3
  "private": false,
4
- "version": "0.6.28",
4
+ "version": "0.6.29",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",