@aeriajs/compiler 0.0.61 → 0.0.62
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/dist/ast.d.ts +1 -0
- package/dist/ast.js +1 -0
- package/dist/ast.mjs +1 -0
- package/dist/parser.js +7 -0
- package/dist/parser.mjs +7 -0
- package/package.json +1 -1
package/dist/ast.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const PropertyType: {
|
|
|
9
9
|
readonly enum: "enum";
|
|
10
10
|
readonly date: "string";
|
|
11
11
|
readonly datetime: "string";
|
|
12
|
+
readonly objectid: "string";
|
|
12
13
|
readonly const: "const";
|
|
13
14
|
};
|
|
14
15
|
export declare const PropertyModifiers: Record<'Error' | 'Result', ExportSymbol>;
|
package/dist/ast.js
CHANGED
package/dist/ast.mjs
CHANGED
package/dist/parser.js
CHANGED
package/dist/parser.mjs
CHANGED