@aeriajs/types 0.0.57 → 0.0.59

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.
@@ -46,6 +46,7 @@ export type ArrayProperty = {
46
46
  element?: PropertyArrayElement;
47
47
  };
48
48
  export type FixedObjectProperty = {
49
+ type: 'object';
49
50
  properties: Record<string, Property>;
50
51
  form?: readonly string[];
51
52
  required?: readonly string[];
@@ -93,7 +94,7 @@ export type GetterProperty = {
93
94
  getter: (document: any) => any;
94
95
  };
95
96
  export type ConstProperty = {
96
- const: string | number | boolean;
97
+ const: string | number | boolean | undefined;
97
98
  };
98
99
  export type MixedProperty = RefProperty | FileProperty | EnumProperty | ArrayProperty | ObjectProperty | StringProperty | NumberProperty | BooleanProperty | GetterProperty | ConstProperty;
99
100
  export type NonCircularMixedProperty = NonCircularRefProperty | FileProperty | EnumProperty | ArrayProperty | ObjectProperty | StringProperty | NumberProperty | BooleanProperty | GetterProperty | ConstProperty;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/types",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",