@builder-builder/builder 0.0.24 → 0.0.26
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/client/client.d.ts +3 -1
- package/dist/client/client.js +29 -20
- package/dist/client/index.d.ts +1 -4
- package/dist/client/index.js +1 -2
- package/dist/client/public.d.ts +4 -0
- package/dist/client/public.js +2 -0
- package/dist/client/schema.d.ts +26 -18
- package/dist/client/schema.js +7 -1
- package/dist/entities/builder/builder.js +2 -1
- package/dist/entities/collection/collection.d.ts +2 -2
- package/dist/entities/collection/collection.js +2 -1
- package/dist/entities/collection/config.d.ts +21 -21
- package/dist/entities/collection/config.js +4 -3
- package/dist/entities/component/component.d.ts +32 -32
- package/dist/entities/component/component.js +2 -1
- package/dist/entities/component/config.d.ts +13 -13
- package/dist/entities/component/config.js +1 -1
- package/dist/entities/component/field.d.ts +4 -4
- package/dist/entities/component/field.js +4 -3
- package/dist/entities/expectation.d.ts +3 -3
- package/dist/entities/expectation.js +2 -1
- package/dist/entities/index.d.ts +1 -1
- package/dist/entities/kind.d.ts +4 -4
- package/dist/entities/kind.js +44 -4
- package/dist/entities/model/models.d.ts +3 -3
- package/dist/entities/option/config.d.ts +4 -4
- package/dist/entities/option/option.d.ts +24 -24
- package/dist/entities/option/option.js +2 -1
- package/dist/entities/option/select.d.ts +2 -2
- package/dist/entities/option/select.js +12 -9
- package/dist/entities/option/toggle.d.ts +2 -2
- package/dist/entities/option/toggle.js +5 -4
- package/dist/entities/paths.d.ts +4 -4
- package/dist/entities/paths.js +2 -1
- package/dist/entities/pricing/expression.js +5 -4
- package/dist/entities/pricing/rates.d.ts +1 -1
- package/dist/entities/pricing/rates.js +2 -1
- package/dist/entities/references.d.ts +2 -2
- package/dist/entities/references.js +2 -1
- package/dist/entities/serialise.d.ts +204 -116
- package/dist/entities/serialise.js +4 -3
- package/dist/entities/tags.d.ts +1 -1
- package/dist/entities/tags.js +2 -1
- package/dist/entities/ui/describe.d.ts +79 -35
- package/dist/entities/ui/describe.js +5 -4
- package/dist/entities/ui/input.d.ts +93 -49
- package/dist/entities/ui/input.js +5 -4
- package/dist/entities/ui/page.d.ts +77 -33
- package/dist/entities/ui/page.js +4 -3
- package/dist/entities/ui/pages.d.ts +5 -5
- package/dist/entities/ui/pages.js +5 -4
- package/dist/entities/validated.d.ts +1 -0
- package/dist/entities/when.d.ts +16 -16
- package/dist/entities/when.js +2 -2
- package/dist/errors/check.d.ts +2 -3
- package/dist/errors/check.js +5 -10
- package/dist/errors/errors.d.ts +241 -158
- package/dist/errors/errors.js +149 -173
- package/dist/errors/exception.d.ts +6 -4
- package/dist/errors/exception.js +11 -66
- package/dist/errors/index.d.ts +2 -4
- package/dist/errors/index.js +2 -2
- package/dist/errors/public.d.ts +2 -0
- package/dist/errors/public.js +1 -0
- package/dist/index.d.ts +4 -36
- package/dist/index.js +4 -19
- package/dist/instance.d.ts +7 -7
- package/dist/instance.js +4 -4
- package/dist/mappers/index.d.ts +1 -1
- package/dist/mappers/price.js +2 -3
- package/dist/mappers/render/collection.d.ts +9 -0
- package/dist/mappers/render/collection.js +27 -0
- package/dist/mappers/render/compose.d.ts +5 -0
- package/dist/mappers/render/compose.js +15 -0
- package/dist/mappers/render/description.d.ts +3 -0
- package/dist/mappers/render/description.js +17 -0
- package/dist/mappers/render/index.d.ts +3 -1
- package/dist/mappers/render/option.d.ts +20 -0
- package/dist/mappers/render/option.js +25 -0
- package/dist/mappers/render/page.d.ts +11 -0
- package/dist/mappers/render/page.js +11 -0
- package/dist/mappers/render/paths.d.ts +3 -0
- package/dist/mappers/render/paths.js +21 -0
- package/dist/mappers/render/render.d.ts +1 -1
- package/dist/mappers/render/render.js +33 -98
- package/dist/mappers/resolve.d.ts +2 -1
- package/dist/mappers/resolve.js +26 -25
- package/dist/mappers/variants/option-graph.js +11 -4
- package/dist/mappers/variants/variants.js +7 -6
- package/dist/primitive.d.ts +5 -0
- package/dist/primitive.js +6 -1
- package/dist/public.d.ts +37 -0
- package/dist/public.js +19 -0
- package/dist/references.d.ts +6 -6
- package/dist/references.js +3 -2
- package/dist/validate/brand.js +2 -4
- package/dist/validate/builder.d.ts +2 -2
- package/dist/validate/builder.js +3 -3
- package/dist/validate/expectations.d.ts +2 -2
- package/dist/validate/expectations.js +1 -1
- package/dist/validate/index.d.ts +0 -1
- package/dist/validate/instance.d.ts +2 -2
- package/dist/validate/instance.js +6 -6
- package/dist/validate/model.d.ts +4 -4
- package/dist/validate/model.js +129 -101
- package/dist/validate/paths.d.ts +2 -2
- package/dist/validate/paths.js +47 -25
- package/dist/validate/pricing.d.ts +4 -4
- package/dist/validate/pricing.js +30 -18
- package/dist/validate/resolve.d.ts +4 -3
- package/dist/validate/resolve.js +88 -63
- package/dist/validate/ui.d.ts +4 -4
- package/dist/validate/ui.js +17 -16
- package/dist/validate/variants.d.ts +2 -2
- package/dist/validate/variants.js +16 -16
- package/package.json +11 -7
- package/dist/mappers/render/pages.d.ts +0 -24
- package/dist/mappers/render/pages.js +0 -2
- package/dist/private.d.ts +0 -3
- package/dist/private.js +0 -3
|
@@ -17,7 +17,7 @@ export declare const entitiesMap: {
|
|
|
17
17
|
readonly defaultValue: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
18
18
|
readonly isOptional: v.BooleanSchema<undefined>;
|
|
19
19
|
readonly optionLabels: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
20
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
20
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
21
21
|
}, undefined>, v.ReadonlyAction<{
|
|
22
22
|
type: "select";
|
|
23
23
|
readonly options: readonly [string, ...string[]];
|
|
@@ -36,7 +36,7 @@ export declare const entitiesMap: {
|
|
|
36
36
|
readonly valueType: v.PicklistSchema<["string", "boolean", "number"], undefined>;
|
|
37
37
|
readonly defaultValue: v.NullableSchema<v.UnionSchema<[v.BooleanSchema<undefined>, v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
|
|
38
38
|
readonly isOptional: v.BooleanSchema<undefined>;
|
|
39
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
39
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
40
40
|
}, undefined>, v.ReadonlyAction<{
|
|
41
41
|
type: "toggle";
|
|
42
42
|
valueType: "string" | "number" | "boolean";
|
|
@@ -126,24 +126,24 @@ export declare const entitiesMap: {
|
|
|
126
126
|
readonly serialised: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
127
127
|
readonly fields: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
128
128
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
129
|
-
readonly id: v.StringSchema<undefined>;
|
|
130
|
-
readonly name: v.StringSchema<undefined>;
|
|
129
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
130
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
131
131
|
}, undefined>, v.ReadonlyAction<{
|
|
132
132
|
type: "parameter";
|
|
133
133
|
id: string;
|
|
134
134
|
name: string;
|
|
135
135
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
136
136
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
137
|
-
readonly id: v.StringSchema<undefined>;
|
|
137
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
138
138
|
}, undefined>, v.ReadonlyAction<{
|
|
139
139
|
type: "ref";
|
|
140
140
|
id: string;
|
|
141
141
|
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
142
142
|
readonly type: v.LiteralSchema<"component-field", undefined>;
|
|
143
|
-
readonly name: v.StringSchema<undefined>;
|
|
143
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
144
144
|
readonly valueType: v.PicklistSchema<["string", "boolean", "number"], undefined>;
|
|
145
145
|
readonly isOptional: v.BooleanSchema<undefined>;
|
|
146
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
146
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
147
147
|
}, undefined>, v.ReadonlyAction<{
|
|
148
148
|
type: "component-field";
|
|
149
149
|
name: string;
|
|
@@ -157,7 +157,7 @@ export declare const entitiesMap: {
|
|
|
157
157
|
isOptional: boolean;
|
|
158
158
|
tags?: readonly string[] | undefined;
|
|
159
159
|
}>[]>]>], undefined>;
|
|
160
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
160
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
161
161
|
}, undefined>, v.ReadonlyAction<{
|
|
162
162
|
fields: Readonly<{
|
|
163
163
|
type: "parameter";
|
|
@@ -261,50 +261,50 @@ export declare const entitiesMap: {
|
|
|
261
261
|
readonly serialised: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
262
262
|
readonly model: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
263
263
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
264
|
-
readonly id: v.StringSchema<undefined>;
|
|
265
|
-
readonly name: v.StringSchema<undefined>;
|
|
264
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
265
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
266
266
|
}, undefined>, v.ReadonlyAction<{
|
|
267
267
|
type: "parameter";
|
|
268
268
|
id: string;
|
|
269
269
|
name: string;
|
|
270
270
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
271
271
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
272
|
-
readonly id: v.StringSchema<undefined>;
|
|
272
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
273
273
|
}, undefined>, v.ReadonlyAction<{
|
|
274
274
|
type: "ref";
|
|
275
275
|
id: string;
|
|
276
276
|
}>]>, v.LazySchema<v.GenericSchema<import(".").BuilderModelSerialised>>], undefined>;
|
|
277
277
|
readonly min: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
278
278
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
279
|
-
readonly id: v.StringSchema<undefined>;
|
|
280
|
-
readonly name: v.StringSchema<undefined>;
|
|
279
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
280
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
281
281
|
}, undefined>, v.ReadonlyAction<{
|
|
282
282
|
type: "parameter";
|
|
283
283
|
id: string;
|
|
284
284
|
name: string;
|
|
285
285
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
286
286
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
287
|
-
readonly id: v.StringSchema<undefined>;
|
|
287
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
288
288
|
}, undefined>, v.ReadonlyAction<{
|
|
289
289
|
type: "ref";
|
|
290
290
|
id: string;
|
|
291
291
|
}>]>, v.NumberSchema<undefined>], undefined>;
|
|
292
292
|
readonly max: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
293
293
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
294
|
-
readonly id: v.StringSchema<undefined>;
|
|
295
|
-
readonly name: v.StringSchema<undefined>;
|
|
294
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
295
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
296
296
|
}, undefined>, v.ReadonlyAction<{
|
|
297
297
|
type: "parameter";
|
|
298
298
|
id: string;
|
|
299
299
|
name: string;
|
|
300
300
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
301
301
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
302
|
-
readonly id: v.StringSchema<undefined>;
|
|
302
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
303
303
|
}, undefined>, v.ReadonlyAction<{
|
|
304
304
|
type: "ref";
|
|
305
305
|
id: string;
|
|
306
306
|
}>]>, v.NumberSchema<undefined>], undefined>;
|
|
307
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
307
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
308
308
|
}, undefined>, v.ReadonlyAction<{
|
|
309
309
|
model: Readonly<{
|
|
310
310
|
type: "parameter";
|
|
@@ -463,44 +463,44 @@ export declare const entitiesMap: {
|
|
|
463
463
|
readonly type: v.LiteralSchema<"describe", undefined>;
|
|
464
464
|
readonly label: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
465
465
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
466
|
-
readonly id: v.StringSchema<undefined>;
|
|
467
|
-
readonly name: v.StringSchema<undefined>;
|
|
466
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
467
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
468
468
|
}, undefined>, v.ReadonlyAction<{
|
|
469
469
|
type: "parameter";
|
|
470
470
|
id: string;
|
|
471
471
|
name: string;
|
|
472
472
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
473
473
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
474
|
-
readonly id: v.StringSchema<undefined>;
|
|
474
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
475
475
|
}, undefined>, v.ReadonlyAction<{
|
|
476
476
|
type: "ref";
|
|
477
477
|
id: string;
|
|
478
|
-
}>]>, v.StringSchema<undefined>], undefined>;
|
|
478
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>;
|
|
479
479
|
readonly inputs: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
480
480
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
481
|
-
readonly id: v.StringSchema<undefined>;
|
|
482
|
-
readonly name: v.StringSchema<undefined>;
|
|
481
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
482
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
483
483
|
}, undefined>, v.ReadonlyAction<{
|
|
484
484
|
type: "parameter";
|
|
485
485
|
id: string;
|
|
486
486
|
name: string;
|
|
487
487
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
488
488
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
489
|
-
readonly id: v.StringSchema<undefined>;
|
|
489
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
490
490
|
}, undefined>, v.ReadonlyAction<{
|
|
491
491
|
type: "ref";
|
|
492
492
|
id: string;
|
|
493
493
|
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
494
494
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
495
|
-
readonly id: v.StringSchema<undefined>;
|
|
496
|
-
readonly name: v.StringSchema<undefined>;
|
|
495
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
496
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
497
497
|
}, undefined>, v.ReadonlyAction<{
|
|
498
498
|
type: "parameter";
|
|
499
499
|
id: string;
|
|
500
500
|
name: string;
|
|
501
501
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
502
502
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
503
|
-
readonly id: v.StringSchema<undefined>;
|
|
503
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
504
504
|
}, undefined>, v.ReadonlyAction<{
|
|
505
505
|
type: "ref";
|
|
506
506
|
id: string;
|
|
@@ -508,81 +508,81 @@ export declare const entitiesMap: {
|
|
|
508
508
|
readonly type: v.LiteralSchema<"input", undefined>;
|
|
509
509
|
readonly path: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
510
510
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
511
|
-
readonly id: v.StringSchema<undefined>;
|
|
512
|
-
readonly name: v.StringSchema<undefined>;
|
|
511
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
512
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
513
513
|
}, undefined>, v.ReadonlyAction<{
|
|
514
514
|
type: "parameter";
|
|
515
515
|
id: string;
|
|
516
516
|
name: string;
|
|
517
517
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
518
518
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
519
|
-
readonly id: v.StringSchema<undefined>;
|
|
519
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
520
520
|
}, undefined>, v.ReadonlyAction<{
|
|
521
521
|
type: "ref";
|
|
522
522
|
id: string;
|
|
523
|
-
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
523
|
+
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
524
524
|
readonly displayName: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
525
525
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
526
|
-
readonly id: v.StringSchema<undefined>;
|
|
527
|
-
readonly name: v.StringSchema<undefined>;
|
|
526
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
527
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
528
528
|
}, undefined>, v.ReadonlyAction<{
|
|
529
529
|
type: "parameter";
|
|
530
530
|
id: string;
|
|
531
531
|
name: string;
|
|
532
532
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
533
533
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
534
|
-
readonly id: v.StringSchema<undefined>;
|
|
534
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
535
535
|
}, undefined>, v.ReadonlyAction<{
|
|
536
536
|
type: "ref";
|
|
537
537
|
id: string;
|
|
538
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
538
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
539
539
|
readonly kind: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
540
540
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
541
|
-
readonly id: v.StringSchema<undefined>;
|
|
542
|
-
readonly name: v.StringSchema<undefined>;
|
|
541
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
542
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
543
543
|
}, undefined>, v.ReadonlyAction<{
|
|
544
544
|
type: "parameter";
|
|
545
545
|
id: string;
|
|
546
546
|
name: string;
|
|
547
547
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
548
548
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
549
|
-
readonly id: v.StringSchema<undefined>;
|
|
549
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
550
550
|
}, undefined>, v.ReadonlyAction<{
|
|
551
551
|
type: "ref";
|
|
552
552
|
id: string;
|
|
553
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
553
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
554
554
|
readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
555
555
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
556
|
-
readonly id: v.StringSchema<undefined>;
|
|
557
|
-
readonly name: v.StringSchema<undefined>;
|
|
556
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
557
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
558
558
|
}, undefined>, v.ReadonlyAction<{
|
|
559
559
|
type: "parameter";
|
|
560
560
|
id: string;
|
|
561
561
|
name: string;
|
|
562
562
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
563
563
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
564
|
-
readonly id: v.StringSchema<undefined>;
|
|
564
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
565
565
|
}, undefined>, v.ReadonlyAction<{
|
|
566
566
|
type: "ref";
|
|
567
567
|
id: string;
|
|
568
|
-
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
568
|
+
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
569
569
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
570
|
-
readonly id: v.StringSchema<undefined>;
|
|
571
|
-
readonly name: v.StringSchema<undefined>;
|
|
570
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
571
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
572
572
|
}, undefined>, v.ReadonlyAction<{
|
|
573
573
|
type: "parameter";
|
|
574
574
|
id: string;
|
|
575
575
|
name: string;
|
|
576
576
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
577
577
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
578
|
-
readonly id: v.StringSchema<undefined>;
|
|
578
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
579
579
|
}, undefined>, v.ReadonlyAction<{
|
|
580
580
|
type: "ref";
|
|
581
581
|
id: string;
|
|
582
582
|
}>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
|
|
583
583
|
[x: string]: unknown;
|
|
584
584
|
}>]>], undefined>, undefined>;
|
|
585
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
585
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
586
586
|
}, undefined>, v.ReadonlyAction<{
|
|
587
587
|
type: "input";
|
|
588
588
|
path: readonly (string | number)[] | Readonly<{
|
|
@@ -620,7 +620,51 @@ export declare const entitiesMap: {
|
|
|
620
620
|
[x: string]: unknown;
|
|
621
621
|
}> | undefined;
|
|
622
622
|
tags?: readonly string[] | undefined;
|
|
623
|
-
}>]>], undefined>, undefined>, v.
|
|
623
|
+
}>]>], undefined>, undefined>, v.MinLengthAction<(Readonly<{
|
|
624
|
+
type: "parameter";
|
|
625
|
+
id: string;
|
|
626
|
+
name: string;
|
|
627
|
+
}> | Readonly<{
|
|
628
|
+
type: "ref";
|
|
629
|
+
id: string;
|
|
630
|
+
}> | Readonly<{
|
|
631
|
+
type: "input";
|
|
632
|
+
path: readonly (string | number)[] | Readonly<{
|
|
633
|
+
type: "parameter";
|
|
634
|
+
id: string;
|
|
635
|
+
name: string;
|
|
636
|
+
}> | Readonly<{
|
|
637
|
+
type: "ref";
|
|
638
|
+
id: string;
|
|
639
|
+
}>;
|
|
640
|
+
displayName?: string | Readonly<{
|
|
641
|
+
type: "parameter";
|
|
642
|
+
id: string;
|
|
643
|
+
name: string;
|
|
644
|
+
}> | Readonly<{
|
|
645
|
+
type: "ref";
|
|
646
|
+
id: string;
|
|
647
|
+
}> | undefined;
|
|
648
|
+
kind?: string | Readonly<{
|
|
649
|
+
type: "parameter";
|
|
650
|
+
id: string;
|
|
651
|
+
name: string;
|
|
652
|
+
}> | Readonly<{
|
|
653
|
+
type: "ref";
|
|
654
|
+
id: string;
|
|
655
|
+
}> | undefined;
|
|
656
|
+
metadata?: Readonly<{
|
|
657
|
+
type: "parameter";
|
|
658
|
+
id: string;
|
|
659
|
+
name: string;
|
|
660
|
+
}> | Readonly<{
|
|
661
|
+
type: "ref";
|
|
662
|
+
id: string;
|
|
663
|
+
}> | Readonly<{
|
|
664
|
+
[x: string]: unknown;
|
|
665
|
+
}> | undefined;
|
|
666
|
+
tags?: readonly string[] | undefined;
|
|
667
|
+
}>)[], 1, undefined>, v.ReadonlyAction<(Readonly<{
|
|
624
668
|
type: "parameter";
|
|
625
669
|
id: string;
|
|
626
670
|
name: string;
|
|
@@ -665,7 +709,7 @@ export declare const entitiesMap: {
|
|
|
665
709
|
}> | undefined;
|
|
666
710
|
tags?: readonly string[] | undefined;
|
|
667
711
|
}>)[]>]>], undefined>;
|
|
668
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
712
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
669
713
|
}, undefined>, v.ReadonlyAction<{
|
|
670
714
|
type: "describe";
|
|
671
715
|
label: string | Readonly<{
|
|
@@ -734,15 +778,15 @@ export declare const entitiesMap: {
|
|
|
734
778
|
readonly uiItems: {
|
|
735
779
|
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
736
780
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
737
|
-
readonly id: v.StringSchema<undefined>;
|
|
738
|
-
readonly name: v.StringSchema<undefined>;
|
|
781
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
782
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
739
783
|
}, undefined>, v.ReadonlyAction<{
|
|
740
784
|
type: "parameter";
|
|
741
785
|
id: string;
|
|
742
786
|
name: string;
|
|
743
787
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
744
788
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
745
|
-
readonly id: v.StringSchema<undefined>;
|
|
789
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
746
790
|
}, undefined>, v.ReadonlyAction<{
|
|
747
791
|
type: "ref";
|
|
748
792
|
id: string;
|
|
@@ -756,15 +800,15 @@ export declare const entitiesMap: {
|
|
|
756
800
|
}> | import(".").BuilderUIItemSerialised)[]>]>;
|
|
757
801
|
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
758
802
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
759
|
-
readonly id: v.StringSchema<undefined>;
|
|
760
|
-
readonly name: v.StringSchema<undefined>;
|
|
803
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
804
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
761
805
|
}, undefined>, v.ReadonlyAction<{
|
|
762
806
|
type: "parameter";
|
|
763
807
|
id: string;
|
|
764
808
|
name: string;
|
|
765
809
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
766
810
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
767
|
-
readonly id: v.StringSchema<undefined>;
|
|
811
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
768
812
|
}, undefined>, v.ReadonlyAction<{
|
|
769
813
|
type: "ref";
|
|
770
814
|
id: string;
|
|
@@ -783,44 +827,44 @@ export declare const entitiesMap: {
|
|
|
783
827
|
readonly type: v.LiteralSchema<"page", undefined>;
|
|
784
828
|
readonly label: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
785
829
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
786
|
-
readonly id: v.StringSchema<undefined>;
|
|
787
|
-
readonly name: v.StringSchema<undefined>;
|
|
830
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
831
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
788
832
|
}, undefined>, v.ReadonlyAction<{
|
|
789
833
|
type: "parameter";
|
|
790
834
|
id: string;
|
|
791
835
|
name: string;
|
|
792
836
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
793
837
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
794
|
-
readonly id: v.StringSchema<undefined>;
|
|
838
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
795
839
|
}, undefined>, v.ReadonlyAction<{
|
|
796
840
|
type: "ref";
|
|
797
841
|
id: string;
|
|
798
|
-
}>]>, v.StringSchema<undefined>], undefined>;
|
|
842
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>;
|
|
799
843
|
readonly inputs: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
800
844
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
801
|
-
readonly id: v.StringSchema<undefined>;
|
|
802
|
-
readonly name: v.StringSchema<undefined>;
|
|
845
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
846
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
803
847
|
}, undefined>, v.ReadonlyAction<{
|
|
804
848
|
type: "parameter";
|
|
805
849
|
id: string;
|
|
806
850
|
name: string;
|
|
807
851
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
808
852
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
809
|
-
readonly id: v.StringSchema<undefined>;
|
|
853
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
810
854
|
}, undefined>, v.ReadonlyAction<{
|
|
811
855
|
type: "ref";
|
|
812
856
|
id: string;
|
|
813
857
|
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
814
858
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
815
|
-
readonly id: v.StringSchema<undefined>;
|
|
816
|
-
readonly name: v.StringSchema<undefined>;
|
|
859
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
860
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
817
861
|
}, undefined>, v.ReadonlyAction<{
|
|
818
862
|
type: "parameter";
|
|
819
863
|
id: string;
|
|
820
864
|
name: string;
|
|
821
865
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
822
866
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
823
|
-
readonly id: v.StringSchema<undefined>;
|
|
867
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
824
868
|
}, undefined>, v.ReadonlyAction<{
|
|
825
869
|
type: "ref";
|
|
826
870
|
id: string;
|
|
@@ -828,81 +872,81 @@ export declare const entitiesMap: {
|
|
|
828
872
|
readonly type: v.LiteralSchema<"input", undefined>;
|
|
829
873
|
readonly path: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
830
874
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
831
|
-
readonly id: v.StringSchema<undefined>;
|
|
832
|
-
readonly name: v.StringSchema<undefined>;
|
|
875
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
876
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
833
877
|
}, undefined>, v.ReadonlyAction<{
|
|
834
878
|
type: "parameter";
|
|
835
879
|
id: string;
|
|
836
880
|
name: string;
|
|
837
881
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
838
882
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
839
|
-
readonly id: v.StringSchema<undefined>;
|
|
883
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
840
884
|
}, undefined>, v.ReadonlyAction<{
|
|
841
885
|
type: "ref";
|
|
842
886
|
id: string;
|
|
843
|
-
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
887
|
+
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
844
888
|
readonly displayName: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
845
889
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
846
|
-
readonly id: v.StringSchema<undefined>;
|
|
847
|
-
readonly name: v.StringSchema<undefined>;
|
|
890
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
891
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
848
892
|
}, undefined>, v.ReadonlyAction<{
|
|
849
893
|
type: "parameter";
|
|
850
894
|
id: string;
|
|
851
895
|
name: string;
|
|
852
896
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
853
897
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
854
|
-
readonly id: v.StringSchema<undefined>;
|
|
898
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
855
899
|
}, undefined>, v.ReadonlyAction<{
|
|
856
900
|
type: "ref";
|
|
857
901
|
id: string;
|
|
858
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
902
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
859
903
|
readonly kind: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
860
904
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
861
|
-
readonly id: v.StringSchema<undefined>;
|
|
862
|
-
readonly name: v.StringSchema<undefined>;
|
|
905
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
906
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
863
907
|
}, undefined>, v.ReadonlyAction<{
|
|
864
908
|
type: "parameter";
|
|
865
909
|
id: string;
|
|
866
910
|
name: string;
|
|
867
911
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
868
912
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
869
|
-
readonly id: v.StringSchema<undefined>;
|
|
913
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
870
914
|
}, undefined>, v.ReadonlyAction<{
|
|
871
915
|
type: "ref";
|
|
872
916
|
id: string;
|
|
873
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
917
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
874
918
|
readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
875
919
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
876
|
-
readonly id: v.StringSchema<undefined>;
|
|
877
|
-
readonly name: v.StringSchema<undefined>;
|
|
920
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
921
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
878
922
|
}, undefined>, v.ReadonlyAction<{
|
|
879
923
|
type: "parameter";
|
|
880
924
|
id: string;
|
|
881
925
|
name: string;
|
|
882
926
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
883
927
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
884
|
-
readonly id: v.StringSchema<undefined>;
|
|
928
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
885
929
|
}, undefined>, v.ReadonlyAction<{
|
|
886
930
|
type: "ref";
|
|
887
931
|
id: string;
|
|
888
|
-
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
932
|
+
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
889
933
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
890
|
-
readonly id: v.StringSchema<undefined>;
|
|
891
|
-
readonly name: v.StringSchema<undefined>;
|
|
934
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
935
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
892
936
|
}, undefined>, v.ReadonlyAction<{
|
|
893
937
|
type: "parameter";
|
|
894
938
|
id: string;
|
|
895
939
|
name: string;
|
|
896
940
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
897
941
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
898
|
-
readonly id: v.StringSchema<undefined>;
|
|
942
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
899
943
|
}, undefined>, v.ReadonlyAction<{
|
|
900
944
|
type: "ref";
|
|
901
945
|
id: string;
|
|
902
946
|
}>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
|
|
903
947
|
[x: string]: unknown;
|
|
904
948
|
}>]>], undefined>, undefined>;
|
|
905
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
949
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
906
950
|
}, undefined>, v.ReadonlyAction<{
|
|
907
951
|
type: "input";
|
|
908
952
|
path: readonly (string | number)[] | Readonly<{
|
|
@@ -940,7 +984,51 @@ export declare const entitiesMap: {
|
|
|
940
984
|
[x: string]: unknown;
|
|
941
985
|
}> | undefined;
|
|
942
986
|
tags?: readonly string[] | undefined;
|
|
943
|
-
}>]>], undefined>, undefined>, v.
|
|
987
|
+
}>]>], undefined>, undefined>, v.MinLengthAction<(Readonly<{
|
|
988
|
+
type: "parameter";
|
|
989
|
+
id: string;
|
|
990
|
+
name: string;
|
|
991
|
+
}> | Readonly<{
|
|
992
|
+
type: "ref";
|
|
993
|
+
id: string;
|
|
994
|
+
}> | Readonly<{
|
|
995
|
+
type: "input";
|
|
996
|
+
path: readonly (string | number)[] | Readonly<{
|
|
997
|
+
type: "parameter";
|
|
998
|
+
id: string;
|
|
999
|
+
name: string;
|
|
1000
|
+
}> | Readonly<{
|
|
1001
|
+
type: "ref";
|
|
1002
|
+
id: string;
|
|
1003
|
+
}>;
|
|
1004
|
+
displayName?: string | Readonly<{
|
|
1005
|
+
type: "parameter";
|
|
1006
|
+
id: string;
|
|
1007
|
+
name: string;
|
|
1008
|
+
}> | Readonly<{
|
|
1009
|
+
type: "ref";
|
|
1010
|
+
id: string;
|
|
1011
|
+
}> | undefined;
|
|
1012
|
+
kind?: string | Readonly<{
|
|
1013
|
+
type: "parameter";
|
|
1014
|
+
id: string;
|
|
1015
|
+
name: string;
|
|
1016
|
+
}> | Readonly<{
|
|
1017
|
+
type: "ref";
|
|
1018
|
+
id: string;
|
|
1019
|
+
}> | undefined;
|
|
1020
|
+
metadata?: Readonly<{
|
|
1021
|
+
type: "parameter";
|
|
1022
|
+
id: string;
|
|
1023
|
+
name: string;
|
|
1024
|
+
}> | Readonly<{
|
|
1025
|
+
type: "ref";
|
|
1026
|
+
id: string;
|
|
1027
|
+
}> | Readonly<{
|
|
1028
|
+
[x: string]: unknown;
|
|
1029
|
+
}> | undefined;
|
|
1030
|
+
tags?: readonly string[] | undefined;
|
|
1031
|
+
}>)[], 1, undefined>, v.ReadonlyAction<(Readonly<{
|
|
944
1032
|
type: "parameter";
|
|
945
1033
|
id: string;
|
|
946
1034
|
name: string;
|
|
@@ -985,7 +1073,7 @@ export declare const entitiesMap: {
|
|
|
985
1073
|
}> | undefined;
|
|
986
1074
|
tags?: readonly string[] | undefined;
|
|
987
1075
|
}>)[]>]>], undefined>;
|
|
988
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
1076
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
989
1077
|
}, undefined>, v.ReadonlyAction<{
|
|
990
1078
|
type: "page";
|
|
991
1079
|
label: string | Readonly<{
|
|
@@ -1061,81 +1149,81 @@ export declare const entitiesMap: {
|
|
|
1061
1149
|
readonly type: v.LiteralSchema<"input", undefined>;
|
|
1062
1150
|
readonly path: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1063
1151
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
1064
|
-
readonly id: v.StringSchema<undefined>;
|
|
1065
|
-
readonly name: v.StringSchema<undefined>;
|
|
1152
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1153
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1066
1154
|
}, undefined>, v.ReadonlyAction<{
|
|
1067
1155
|
type: "parameter";
|
|
1068
1156
|
id: string;
|
|
1069
1157
|
name: string;
|
|
1070
1158
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1071
1159
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
1072
|
-
readonly id: v.StringSchema<undefined>;
|
|
1160
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1073
1161
|
}, undefined>, v.ReadonlyAction<{
|
|
1074
1162
|
type: "ref";
|
|
1075
1163
|
id: string;
|
|
1076
|
-
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
1164
|
+
}>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
|
|
1077
1165
|
readonly displayName: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1078
1166
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
1079
|
-
readonly id: v.StringSchema<undefined>;
|
|
1080
|
-
readonly name: v.StringSchema<undefined>;
|
|
1167
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1168
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1081
1169
|
}, undefined>, v.ReadonlyAction<{
|
|
1082
1170
|
type: "parameter";
|
|
1083
1171
|
id: string;
|
|
1084
1172
|
name: string;
|
|
1085
1173
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1086
1174
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
1087
|
-
readonly id: v.StringSchema<undefined>;
|
|
1175
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1088
1176
|
}, undefined>, v.ReadonlyAction<{
|
|
1089
1177
|
type: "ref";
|
|
1090
1178
|
id: string;
|
|
1091
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
1179
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
1092
1180
|
readonly kind: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1093
1181
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
1094
|
-
readonly id: v.StringSchema<undefined>;
|
|
1095
|
-
readonly name: v.StringSchema<undefined>;
|
|
1182
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1183
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1096
1184
|
}, undefined>, v.ReadonlyAction<{
|
|
1097
1185
|
type: "parameter";
|
|
1098
1186
|
id: string;
|
|
1099
1187
|
name: string;
|
|
1100
1188
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1101
1189
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
1102
|
-
readonly id: v.StringSchema<undefined>;
|
|
1190
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1103
1191
|
}, undefined>, v.ReadonlyAction<{
|
|
1104
1192
|
type: "ref";
|
|
1105
1193
|
id: string;
|
|
1106
|
-
}>]>, v.StringSchema<undefined>], undefined>, undefined>;
|
|
1194
|
+
}>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
|
|
1107
1195
|
readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1108
1196
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
1109
|
-
readonly id: v.StringSchema<undefined>;
|
|
1110
|
-
readonly name: v.StringSchema<undefined>;
|
|
1197
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1198
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1111
1199
|
}, undefined>, v.ReadonlyAction<{
|
|
1112
1200
|
type: "parameter";
|
|
1113
1201
|
id: string;
|
|
1114
1202
|
name: string;
|
|
1115
1203
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1116
1204
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
1117
|
-
readonly id: v.StringSchema<undefined>;
|
|
1205
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1118
1206
|
}, undefined>, v.ReadonlyAction<{
|
|
1119
1207
|
type: "ref";
|
|
1120
1208
|
id: string;
|
|
1121
|
-
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1209
|
+
}>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1122
1210
|
readonly type: v.LiteralSchema<"parameter", undefined>;
|
|
1123
|
-
readonly id: v.StringSchema<undefined>;
|
|
1124
|
-
readonly name: v.StringSchema<undefined>;
|
|
1211
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1212
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1125
1213
|
}, undefined>, v.ReadonlyAction<{
|
|
1126
1214
|
type: "parameter";
|
|
1127
1215
|
id: string;
|
|
1128
1216
|
name: string;
|
|
1129
1217
|
}>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1130
1218
|
readonly type: v.LiteralSchema<"ref", undefined>;
|
|
1131
|
-
readonly id: v.StringSchema<undefined>;
|
|
1219
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1132
1220
|
}, undefined>, v.ReadonlyAction<{
|
|
1133
1221
|
type: "ref";
|
|
1134
1222
|
id: string;
|
|
1135
1223
|
}>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
|
|
1136
1224
|
[x: string]: unknown;
|
|
1137
1225
|
}>]>], undefined>, undefined>;
|
|
1138
|
-
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
1226
|
+
readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
|
|
1139
1227
|
}, undefined>, v.ReadonlyAction<{
|
|
1140
1228
|
type: "input";
|
|
1141
1229
|
path: readonly (string | number)[] | Readonly<{
|
|
@@ -1186,7 +1274,7 @@ export declare const entitiesMap: {
|
|
|
1186
1274
|
readonly expectations: {
|
|
1187
1275
|
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.InstanceSchema<typeof import("./expectation.js").BuilderExpectation, undefined>, undefined>, v.ReadonlyAction<import("./expectation.js").BuilderExpectation<string, unknown, "option" | "component" | "collection">[]>]>;
|
|
1188
1276
|
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
1189
|
-
readonly name: v.StringSchema<undefined>;
|
|
1277
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1190
1278
|
readonly kind: v.PicklistSchema<["option", "component", "collection"], undefined>;
|
|
1191
1279
|
}, undefined>, v.ReadonlyAction<{
|
|
1192
1280
|
name: string;
|
|
@@ -1197,12 +1285,12 @@ export declare const entitiesMap: {
|
|
|
1197
1285
|
}>[]>]>;
|
|
1198
1286
|
};
|
|
1199
1287
|
readonly paths: {
|
|
1200
|
-
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>, undefined>, v.ReadonlyAction<(readonly (string | number)[])[]>]>;
|
|
1201
|
-
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>, undefined>, v.ReadonlyAction<(readonly (string | number)[])[]>]>;
|
|
1288
|
+
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>, undefined>, v.ReadonlyAction<(readonly (string | number)[])[]>]>;
|
|
1289
|
+
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>, undefined>, v.ReadonlyAction<(readonly (string | number)[])[]>]>;
|
|
1202
1290
|
};
|
|
1203
1291
|
readonly path: {
|
|
1204
|
-
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>;
|
|
1205
|
-
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>;
|
|
1292
|
+
readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>;
|
|
1293
|
+
readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>;
|
|
1206
1294
|
};
|
|
1207
1295
|
readonly number: {
|
|
1208
1296
|
readonly runtime: v.NumberSchema<undefined>;
|
|
@@ -1217,9 +1305,9 @@ export declare const entitiesMap: {
|
|
|
1217
1305
|
readonly serialised: v.BooleanSchema<undefined>;
|
|
1218
1306
|
};
|
|
1219
1307
|
};
|
|
1220
|
-
export declare const validateNumber: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../
|
|
1221
|
-
export declare const validateString: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../
|
|
1222
|
-
export declare const validateBoolean: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../
|
|
1308
|
+
export declare const validateNumber: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../errors/errors").BuilderErrorsScope) => import("./validated").ValidationResult<number>;
|
|
1309
|
+
export declare const validateString: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../errors/errors").BuilderErrorsScope) => import("./validated").ValidationResult<string>;
|
|
1310
|
+
export declare const validateBoolean: (input: unknown, references?: import("./references").BuilderReferences, errors?: import("../errors/errors").BuilderErrorsScope) => import("./validated").ValidationResult<boolean>;
|
|
1223
1311
|
export type EntitiesMap = typeof entitiesMap;
|
|
1224
1312
|
export type EntitiesSerialisedSchemas = EntitiesMap[BuilderEntityKind]['serialised'];
|
|
1225
1313
|
export declare const BuilderEntityKindSchema: v.PicklistSchema<readonly ["builder", "model", "select", "toggle", "optionSelectMap", "optionWhen", "componentConfig", "componentSelectMap", "componentWhen", "collectionConfig", "collectionSelectMap", "collectionWhen", "ui", "uiDescribe", "uiItems", "uiPage", "uiPages", "uiInput", "pricing", "pricingRates", "expectations", "paths", "path", "number", "string", "boolean"], undefined>;
|