@valbuild/core 0.49.0 → 0.51.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.
@@ -29,6 +29,7 @@ import { getVal } from "./future/fetchVal.js";
29
29
  import type { Json } from "./Json.js";
30
30
  import { SerializedSchema } from "./schema/index.js";
31
31
  import { PatchJSON } from "./patch/index.js";
32
+ import { initSchema } from "./initSchema.js";
32
33
  export { ValApi } from "./ValApi.js";
33
34
  export { type SerializedArraySchema, ArraySchema } from "./schema/array.js";
34
35
  export { type SerializedObjectSchema, ObjectSchema } from "./schema/object.js";
@@ -94,6 +95,7 @@ declare const Internal: {
94
95
  isVal: typeof isVal;
95
96
  createValPathOfItem: typeof createValPathOfItem;
96
97
  getSHA256Hash: (bits: Uint8Array) => string;
98
+ initSchema: typeof initSchema;
97
99
  createPatchJSONPath: (modulePath: ModulePath) => string;
98
100
  VAL_ENABLE_COOKIE_NAME: "val_enable";
99
101
  VAL_STATE_COOKIE: "val_state";
@@ -2,9 +2,10 @@ import { Schema, SerializedSchema } from "./index.js";
2
2
  import { RichTextSource, RichTextOptions } from "../source/richtext.js";
3
3
  import { SourcePath } from "../val/index.js";
4
4
  import { ValidationErrors } from "./validation/ValidationError.js";
5
- export type SerializedRichTextSchema = RichTextOptions & {
5
+ export type SerializedRichTextSchema = {
6
6
  type: "richtext";
7
7
  opt: boolean;
8
+ options: RichTextOptions;
8
9
  };
9
10
  export declare class RichTextSchema<O extends RichTextOptions, Src extends RichTextSource<O> | null> extends Schema<Src> {
10
11
  readonly options: O;
@@ -1,7 +1,7 @@
1
1
  import { GenericSelector } from "./index.js";
2
2
  import { Source } from "../source/index.js";
3
- import { SourcePath } from "../val/index.js";
3
+ import { ModulePath, SourcePath } from "../val/index.js";
4
4
  export declare function isSelector(source: any): source is GenericSelector<Source>;
5
5
  export declare function newSelectorProxy(source: any, path?: SourcePath, moduleSchema?: any): any;
6
- export declare function createValPathOfItem(arrayPath: SourcePath | undefined, prop: string | number | symbol): SourcePath | undefined;
6
+ export declare function createValPathOfItem(arrayPath: SourcePath | ModulePath | undefined, prop: string | number | symbol): SourcePath | undefined;
7
7
  export declare function selectorToVal(s: any): any;
@@ -36,7 +36,7 @@ export type BrNode = {
36
36
  export type SpanNode<O extends RichTextOptions> = {
37
37
  tag: "span";
38
38
  classes: Classes<O>[];
39
- children: [string | SpanNode<O>];
39
+ children: [string];
40
40
  };
41
41
  type ImageTagNode = {
42
42
  tag: "img";
@@ -28,24 +28,24 @@ function _typeof(o) {
28
28
  }, _typeof(o);
29
29
  }
30
30
 
31
- function _toPrimitive(input, hint) {
32
- if (typeof input !== "object" || input === null) return input;
33
- var prim = input[Symbol.toPrimitive];
34
- if (prim !== undefined) {
35
- var res = prim.call(input, hint || "default");
36
- if (typeof res !== "object") return res;
31
+ function toPrimitive(t, r) {
32
+ if ("object" != typeof t || !t) return t;
33
+ var e = t[Symbol.toPrimitive];
34
+ if (void 0 !== e) {
35
+ var i = e.call(t, r || "default");
36
+ if ("object" != typeof i) return i;
37
37
  throw new TypeError("@@toPrimitive must return a primitive value.");
38
38
  }
39
- return (hint === "string" ? String : Number)(input);
39
+ return ("string" === r ? String : Number)(t);
40
40
  }
41
41
 
42
- function _toPropertyKey(arg) {
43
- var key = _toPrimitive(arg, "string");
44
- return typeof key === "symbol" ? key : String(key);
42
+ function toPropertyKey(t) {
43
+ var i = toPrimitive(t, "string");
44
+ return "symbol" == typeof i ? i : String(i);
45
45
  }
46
46
 
47
47
  function _defineProperty(obj, key, value) {
48
- key = _toPropertyKey(key);
48
+ key = toPropertyKey(key);
49
49
  if (key in obj) {
50
50
  Object.defineProperty(obj, key, {
51
51
  value: value,
@@ -133,7 +133,7 @@ function _defineProperties(target, props) {
133
133
  descriptor.enumerable = descriptor.enumerable || false;
134
134
  descriptor.configurable = true;
135
135
  if ("value" in descriptor) descriptor.writable = true;
136
- Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
136
+ Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor);
137
137
  }
138
138
  }
139
139
  function _createClass(Constructor, protoProps, staticProps) {
@@ -145,31 +145,6 @@ function _createClass(Constructor, protoProps, staticProps) {
145
145
  return Constructor;
146
146
  }
147
147
 
148
- function _setPrototypeOf(o, p) {
149
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
150
- o.__proto__ = p;
151
- return o;
152
- };
153
- return _setPrototypeOf(o, p);
154
- }
155
-
156
- function _inherits(subClass, superClass) {
157
- if (typeof superClass !== "function" && superClass !== null) {
158
- throw new TypeError("Super expression must either be null or a function");
159
- }
160
- subClass.prototype = Object.create(superClass && superClass.prototype, {
161
- constructor: {
162
- value: subClass,
163
- writable: true,
164
- configurable: true
165
- }
166
- });
167
- Object.defineProperty(subClass, "prototype", {
168
- writable: false
169
- });
170
- if (superClass) _setPrototypeOf(subClass, superClass);
171
- }
172
-
173
148
  function _getPrototypeOf(o) {
174
149
  _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
175
150
  return o.__proto__ || Object.getPrototypeOf(o);
@@ -178,15 +153,12 @@ function _getPrototypeOf(o) {
178
153
  }
179
154
 
180
155
  function _isNativeReflectConstruct() {
181
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
182
- if (Reflect.construct.sham) return false;
183
- if (typeof Proxy === "function") return true;
184
156
  try {
185
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
186
- return true;
187
- } catch (e) {
188
- return false;
189
- }
157
+ var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
158
+ } catch (t) {}
159
+ return (_isNativeReflectConstruct = function () {
160
+ return !!t;
161
+ })();
190
162
  }
191
163
 
192
164
  function _assertThisInitialized(self) {
@@ -205,25 +177,40 @@ function _possibleConstructorReturn(self, call) {
205
177
  return _assertThisInitialized(self);
206
178
  }
207
179
 
208
- function _createSuper(Derived) {
209
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
210
- return function _createSuperInternal() {
211
- var Super = _getPrototypeOf(Derived),
212
- result;
213
- if (hasNativeReflectConstruct) {
214
- var NewTarget = _getPrototypeOf(this).constructor;
215
- result = Reflect.construct(Super, arguments, NewTarget);
216
- } else {
217
- result = Super.apply(this, arguments);
218
- }
219
- return _possibleConstructorReturn(this, result);
180
+ function _callSuper(t, o, e) {
181
+ return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
182
+ }
183
+
184
+ function _setPrototypeOf(o, p) {
185
+ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
186
+ o.__proto__ = p;
187
+ return o;
220
188
  };
189
+ return _setPrototypeOf(o, p);
190
+ }
191
+
192
+ function _inherits(subClass, superClass) {
193
+ if (typeof superClass !== "function" && superClass !== null) {
194
+ throw new TypeError("Super expression must either be null or a function");
195
+ }
196
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
197
+ constructor: {
198
+ value: subClass,
199
+ writable: true,
200
+ configurable: true
201
+ }
202
+ });
203
+ Object.defineProperty(subClass, "prototype", {
204
+ writable: false
205
+ });
206
+ if (superClass) _setPrototypeOf(subClass, superClass);
221
207
  }
222
208
 
223
209
  // import { RemoteCompatibleSource, RemoteSource } from "../source/remote";
224
210
 
225
211
  // import { SerializedI18nSchema } from "./future/i18n";
226
212
  // import { SerializedOneOfSchema } from "./future/oneOf";
213
+
227
214
  var Schema = /*#__PURE__*/function () {
228
215
  function Schema() {
229
216
  _classCallCheck(this, Schema);
@@ -309,11 +296,10 @@ var Expr = /*#__PURE__*/_createClass(function Expr(span) {
309
296
  });
310
297
  var StringLiteral = /*#__PURE__*/function (_Expr) {
311
298
  _inherits(StringLiteral, _Expr);
312
- var _super = _createSuper(StringLiteral);
313
299
  function StringLiteral(value, span) {
314
300
  var _this;
315
301
  _classCallCheck(this, StringLiteral);
316
- _this = _super.call(this, span);
302
+ _this = _callSuper(this, StringLiteral, [span]);
317
303
  _defineProperty(_assertThisInitialized(_this), "type", "StringLiteral");
318
304
  _this.value = value;
319
305
  return _this;
@@ -328,11 +314,10 @@ var StringLiteral = /*#__PURE__*/function (_Expr) {
328
314
  }(Expr);
329
315
  var Sym = /*#__PURE__*/function (_Expr2) {
330
316
  _inherits(Sym, _Expr2);
331
- var _super2 = _createSuper(Sym);
332
317
  function Sym(value, span) {
333
318
  var _this2;
334
319
  _classCallCheck(this, Sym);
335
- _this2 = _super2.call(this, span);
320
+ _this2 = _callSuper(this, Sym, [span]);
336
321
  _defineProperty(_assertThisInitialized(_this2), "type", "Sym");
337
322
  _this2.value = value;
338
323
  return _this2;
@@ -348,11 +333,10 @@ var Sym = /*#__PURE__*/function (_Expr2) {
348
333
  var NilSym = new Sym("()");
349
334
  var StringTemplate = /*#__PURE__*/function (_Expr3) {
350
335
  _inherits(StringTemplate, _Expr3);
351
- var _super3 = _createSuper(StringTemplate);
352
336
  function StringTemplate(children, span) {
353
337
  var _this3;
354
338
  _classCallCheck(this, StringTemplate);
355
- _this3 = _super3.call(this, span);
339
+ _this3 = _callSuper(this, StringTemplate, [span]);
356
340
  _defineProperty(_assertThisInitialized(_this3), "type", "StringTemplate");
357
341
  _this3.children = children;
358
342
  return _this3;
@@ -373,11 +357,10 @@ var StringTemplate = /*#__PURE__*/function (_Expr3) {
373
357
  }(Expr);
374
358
  var Call = /*#__PURE__*/function (_Expr4) {
375
359
  _inherits(Call, _Expr4);
376
- var _super4 = _createSuper(Call);
377
360
  function Call(children, isAnon, span) {
378
361
  var _this4;
379
362
  _classCallCheck(this, Call);
380
- _this4 = _super4.call(this, span);
363
+ _this4 = _callSuper(this, Call, [span]);
381
364
  _defineProperty(_assertThisInitialized(_this4), "type", "Call");
382
365
  _this4.children = children;
383
366
  _this4.isAnon = isAnon;
@@ -431,12 +414,11 @@ function isFile(obj) {
431
414
 
432
415
  var FileSchema = /*#__PURE__*/function (_Schema) {
433
416
  _inherits(FileSchema, _Schema);
434
- var _super = _createSuper(FileSchema);
435
417
  function FileSchema(options) {
436
418
  var _this;
437
419
  var opt = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
438
420
  _classCallCheck(this, FileSchema);
439
- _this = _super.call(this);
421
+ _this = _callSuper(this, FileSchema);
440
422
  _this.options = options;
441
423
  _this.opt = opt;
442
424
  return _this;
@@ -569,9 +551,9 @@ exports.StringLiteral = StringLiteral;
569
551
  exports.StringTemplate = StringTemplate;
570
552
  exports.Sym = Sym;
571
553
  exports.VAL_EXTENSION = VAL_EXTENSION;
554
+ exports._callSuper = _callSuper;
572
555
  exports._classCallCheck = _classCallCheck;
573
556
  exports._createClass = _createClass;
574
- exports._createSuper = _createSuper;
575
557
  exports._defineProperty = _defineProperty;
576
558
  exports._inherits = _inherits;
577
559
  exports._objectSpread2 = _objectSpread2;
@@ -1,4 +1,4 @@
1
- import { r as _objectSpread2, i as _slicedToArray, c as _createClass, b as _classCallCheck, s as Sym, C as Call, t as StringLiteral, u as StringTemplate, e as _typeof, l as isSerializedVal, F as FILE_REF_PROP, V as VAL_EXTENSION, m as convertFileSource, d as _defineProperty, E as Expr, S as Schema, v as _toConsumableArray, N as NilSym } from './index-6cea0f23.esm.js';
1
+ import { r as _objectSpread2, i as _slicedToArray, c as _createClass, a as _classCallCheck, s as Sym, C as Call, t as StringLiteral, u as StringTemplate, e as _typeof, l as isSerializedVal, F as FILE_REF_PROP, V as VAL_EXTENSION, m as convertFileSource, d as _defineProperty, E as Expr, S as Schema, v as _toConsumableArray, N as NilSym } from './index-a038a0f3.esm.js';
2
2
  import { i as isErr, e as err, o as ok, a as isOk } from './result-b96df128.esm.js';
3
3
 
4
4
  var WHITE_SPACE = ["\n", "\r", "\t", " "];
@@ -26,24 +26,24 @@ function _typeof(o) {
26
26
  }, _typeof(o);
27
27
  }
28
28
 
29
- function _toPrimitive(input, hint) {
30
- if (typeof input !== "object" || input === null) return input;
31
- var prim = input[Symbol.toPrimitive];
32
- if (prim !== undefined) {
33
- var res = prim.call(input, hint || "default");
34
- if (typeof res !== "object") return res;
29
+ function toPrimitive(t, r) {
30
+ if ("object" != typeof t || !t) return t;
31
+ var e = t[Symbol.toPrimitive];
32
+ if (void 0 !== e) {
33
+ var i = e.call(t, r || "default");
34
+ if ("object" != typeof i) return i;
35
35
  throw new TypeError("@@toPrimitive must return a primitive value.");
36
36
  }
37
- return (hint === "string" ? String : Number)(input);
37
+ return ("string" === r ? String : Number)(t);
38
38
  }
39
39
 
40
- function _toPropertyKey(arg) {
41
- var key = _toPrimitive(arg, "string");
42
- return typeof key === "symbol" ? key : String(key);
40
+ function toPropertyKey(t) {
41
+ var i = toPrimitive(t, "string");
42
+ return "symbol" == typeof i ? i : String(i);
43
43
  }
44
44
 
45
45
  function _defineProperty(obj, key, value) {
46
- key = _toPropertyKey(key);
46
+ key = toPropertyKey(key);
47
47
  if (key in obj) {
48
48
  Object.defineProperty(obj, key, {
49
49
  value: value,
@@ -131,7 +131,7 @@ function _defineProperties(target, props) {
131
131
  descriptor.enumerable = descriptor.enumerable || false;
132
132
  descriptor.configurable = true;
133
133
  if ("value" in descriptor) descriptor.writable = true;
134
- Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
134
+ Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor);
135
135
  }
136
136
  }
137
137
  function _createClass(Constructor, protoProps, staticProps) {
@@ -143,31 +143,6 @@ function _createClass(Constructor, protoProps, staticProps) {
143
143
  return Constructor;
144
144
  }
145
145
 
146
- function _setPrototypeOf(o, p) {
147
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
148
- o.__proto__ = p;
149
- return o;
150
- };
151
- return _setPrototypeOf(o, p);
152
- }
153
-
154
- function _inherits(subClass, superClass) {
155
- if (typeof superClass !== "function" && superClass !== null) {
156
- throw new TypeError("Super expression must either be null or a function");
157
- }
158
- subClass.prototype = Object.create(superClass && superClass.prototype, {
159
- constructor: {
160
- value: subClass,
161
- writable: true,
162
- configurable: true
163
- }
164
- });
165
- Object.defineProperty(subClass, "prototype", {
166
- writable: false
167
- });
168
- if (superClass) _setPrototypeOf(subClass, superClass);
169
- }
170
-
171
146
  function _getPrototypeOf(o) {
172
147
  _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
173
148
  return o.__proto__ || Object.getPrototypeOf(o);
@@ -176,15 +151,12 @@ function _getPrototypeOf(o) {
176
151
  }
177
152
 
178
153
  function _isNativeReflectConstruct() {
179
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
180
- if (Reflect.construct.sham) return false;
181
- if (typeof Proxy === "function") return true;
182
154
  try {
183
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
184
- return true;
185
- } catch (e) {
186
- return false;
187
- }
155
+ var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
156
+ } catch (t) {}
157
+ return (_isNativeReflectConstruct = function () {
158
+ return !!t;
159
+ })();
188
160
  }
189
161
 
190
162
  function _assertThisInitialized(self) {
@@ -203,25 +175,40 @@ function _possibleConstructorReturn(self, call) {
203
175
  return _assertThisInitialized(self);
204
176
  }
205
177
 
206
- function _createSuper(Derived) {
207
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
208
- return function _createSuperInternal() {
209
- var Super = _getPrototypeOf(Derived),
210
- result;
211
- if (hasNativeReflectConstruct) {
212
- var NewTarget = _getPrototypeOf(this).constructor;
213
- result = Reflect.construct(Super, arguments, NewTarget);
214
- } else {
215
- result = Super.apply(this, arguments);
216
- }
217
- return _possibleConstructorReturn(this, result);
178
+ function _callSuper(t, o, e) {
179
+ return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
180
+ }
181
+
182
+ function _setPrototypeOf(o, p) {
183
+ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
184
+ o.__proto__ = p;
185
+ return o;
218
186
  };
187
+ return _setPrototypeOf(o, p);
188
+ }
189
+
190
+ function _inherits(subClass, superClass) {
191
+ if (typeof superClass !== "function" && superClass !== null) {
192
+ throw new TypeError("Super expression must either be null or a function");
193
+ }
194
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
195
+ constructor: {
196
+ value: subClass,
197
+ writable: true,
198
+ configurable: true
199
+ }
200
+ });
201
+ Object.defineProperty(subClass, "prototype", {
202
+ writable: false
203
+ });
204
+ if (superClass) _setPrototypeOf(subClass, superClass);
219
205
  }
220
206
 
221
207
  // import { RemoteCompatibleSource, RemoteSource } from "../source/remote";
222
208
 
223
209
  // import { SerializedI18nSchema } from "./future/i18n";
224
210
  // import { SerializedOneOfSchema } from "./future/oneOf";
211
+
225
212
  var Schema = /*#__PURE__*/function () {
226
213
  function Schema() {
227
214
  _classCallCheck(this, Schema);
@@ -307,11 +294,10 @@ var Expr = /*#__PURE__*/_createClass(function Expr(span) {
307
294
  });
308
295
  var StringLiteral = /*#__PURE__*/function (_Expr) {
309
296
  _inherits(StringLiteral, _Expr);
310
- var _super = _createSuper(StringLiteral);
311
297
  function StringLiteral(value, span) {
312
298
  var _this;
313
299
  _classCallCheck(this, StringLiteral);
314
- _this = _super.call(this, span);
300
+ _this = _callSuper(this, StringLiteral, [span]);
315
301
  _defineProperty(_assertThisInitialized(_this), "type", "StringLiteral");
316
302
  _this.value = value;
317
303
  return _this;
@@ -326,11 +312,10 @@ var StringLiteral = /*#__PURE__*/function (_Expr) {
326
312
  }(Expr);
327
313
  var Sym = /*#__PURE__*/function (_Expr2) {
328
314
  _inherits(Sym, _Expr2);
329
- var _super2 = _createSuper(Sym);
330
315
  function Sym(value, span) {
331
316
  var _this2;
332
317
  _classCallCheck(this, Sym);
333
- _this2 = _super2.call(this, span);
318
+ _this2 = _callSuper(this, Sym, [span]);
334
319
  _defineProperty(_assertThisInitialized(_this2), "type", "Sym");
335
320
  _this2.value = value;
336
321
  return _this2;
@@ -346,11 +331,10 @@ var Sym = /*#__PURE__*/function (_Expr2) {
346
331
  var NilSym = new Sym("()");
347
332
  var StringTemplate = /*#__PURE__*/function (_Expr3) {
348
333
  _inherits(StringTemplate, _Expr3);
349
- var _super3 = _createSuper(StringTemplate);
350
334
  function StringTemplate(children, span) {
351
335
  var _this3;
352
336
  _classCallCheck(this, StringTemplate);
353
- _this3 = _super3.call(this, span);
337
+ _this3 = _callSuper(this, StringTemplate, [span]);
354
338
  _defineProperty(_assertThisInitialized(_this3), "type", "StringTemplate");
355
339
  _this3.children = children;
356
340
  return _this3;
@@ -371,11 +355,10 @@ var StringTemplate = /*#__PURE__*/function (_Expr3) {
371
355
  }(Expr);
372
356
  var Call = /*#__PURE__*/function (_Expr4) {
373
357
  _inherits(Call, _Expr4);
374
- var _super4 = _createSuper(Call);
375
358
  function Call(children, isAnon, span) {
376
359
  var _this4;
377
360
  _classCallCheck(this, Call);
378
- _this4 = _super4.call(this, span);
361
+ _this4 = _callSuper(this, Call, [span]);
379
362
  _defineProperty(_assertThisInitialized(_this4), "type", "Call");
380
363
  _this4.children = children;
381
364
  _this4.isAnon = isAnon;
@@ -429,12 +412,11 @@ function isFile(obj) {
429
412
 
430
413
  var FileSchema = /*#__PURE__*/function (_Schema) {
431
414
  _inherits(FileSchema, _Schema);
432
- var _super = _createSuper(FileSchema);
433
415
  function FileSchema(options) {
434
416
  var _this;
435
417
  var opt = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
436
418
  _classCallCheck(this, FileSchema);
437
- _this = _super.call(this);
419
+ _this = _callSuper(this, FileSchema);
438
420
  _this.options = options;
439
421
  _this.opt = opt;
440
422
  return _this;
@@ -553,4 +535,4 @@ function getValPath(valOrSelector) {
553
535
  return valOrSelector[Path];
554
536
  }
555
537
 
556
- export { Call as C, Expr as E, FILE_REF_PROP as F, GetSchema as G, NilSym as N, Path as P, Schema as S, VAL_EXTENSION as V, _inherits as _, _createSuper as a, _classCallCheck as b, _createClass as c, _defineProperty as d, _typeof as e, file as f, getValPath as g, file$1 as h, _slicedToArray as i, isFile as j, GetSource as k, isSerializedVal as l, convertFileSource as m, getSchema as n, isVal as o, GenericSelector as p, FileSchema as q, _objectSpread2 as r, Sym as s, StringLiteral as t, StringTemplate as u, _toConsumableArray as v };
538
+ export { Call as C, Expr as E, FILE_REF_PROP as F, GetSchema as G, NilSym as N, Path as P, Schema as S, VAL_EXTENSION as V, _inherits as _, _classCallCheck as a, _callSuper as b, _createClass as c, _defineProperty as d, _typeof as e, file as f, getValPath as g, file$1 as h, _slicedToArray as i, isFile as j, GetSource as k, isSerializedVal as l, convertFileSource as m, getSchema as n, isVal as o, GenericSelector as p, FileSchema as q, _objectSpread2 as r, Sym as s, StringLiteral as t, StringTemplate as u, _toConsumableArray as v };