@builder-builder/builder 0.0.25 → 0.0.27

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.
Files changed (103) hide show
  1. package/dist/client/schema.d.ts +29 -4
  2. package/dist/client/schema.js +3 -1
  3. package/dist/components/Builder.svelte.d.ts +24 -0
  4. package/dist/components/BuilderCollectionButtons.svelte.d.ts +22 -0
  5. package/dist/components/BuilderCollections.svelte.d.ts +23 -0
  6. package/dist/components/BuilderDescription.svelte.d.ts +18 -0
  7. package/dist/components/BuilderLayout.svelte.d.ts +24 -0
  8. package/dist/components/BuilderOption.svelte.d.ts +31 -0
  9. package/dist/components/BuilderOptionSelect.svelte.d.ts +21 -0
  10. package/dist/components/BuilderOptionToggleBoolean.svelte.d.ts +20 -0
  11. package/dist/components/BuilderOptionToggleNumber.svelte.d.ts +21 -0
  12. package/dist/components/BuilderOptionToggleString.svelte.d.ts +21 -0
  13. package/dist/components/BuilderPrice.svelte.d.ts +21 -0
  14. package/dist/components/BuilderRender.svelte.d.ts +39 -0
  15. package/dist/components/config.d.ts +2 -0
  16. package/dist/components/config.js +1 -0
  17. package/dist/components/dispatch.d.ts +1 -0
  18. package/dist/components/dispatch.js +3 -0
  19. package/dist/components/id.d.ts +1 -0
  20. package/dist/components/id.js +3 -0
  21. package/dist/components/index.d.ts +25 -0
  22. package/dist/components/index.js +7441 -0
  23. package/dist/entities/builder/builder.js +2 -1
  24. package/dist/entities/collection/collection.js +2 -1
  25. package/dist/entities/collection/config.d.ts +20 -20
  26. package/dist/entities/collection/config.js +3 -2
  27. package/dist/entities/component/component.d.ts +30 -30
  28. package/dist/entities/component/component.js +2 -1
  29. package/dist/entities/component/config.d.ts +12 -12
  30. package/dist/entities/component/field.d.ts +4 -4
  31. package/dist/entities/component/field.js +4 -3
  32. package/dist/entities/expectation.d.ts +2 -2
  33. package/dist/entities/expectation.js +2 -1
  34. package/dist/entities/index.d.ts +1 -1
  35. package/dist/entities/kind.d.ts +1 -1
  36. package/dist/entities/kind.js +43 -3
  37. package/dist/entities/model/models.d.ts +3 -3
  38. package/dist/entities/option/config.d.ts +4 -4
  39. package/dist/entities/option/option.d.ts +22 -22
  40. package/dist/entities/option/option.js +2 -1
  41. package/dist/entities/option/select.d.ts +1 -1
  42. package/dist/entities/option/select.js +5 -4
  43. package/dist/entities/option/toggle.d.ts +1 -1
  44. package/dist/entities/option/toggle.js +4 -3
  45. package/dist/entities/paths.d.ts +2 -2
  46. package/dist/entities/paths.js +2 -1
  47. package/dist/entities/pricing/expression.js +5 -4
  48. package/dist/entities/pricing/rates.js +2 -1
  49. package/dist/entities/references.d.ts +50 -2
  50. package/dist/entities/references.js +2 -1
  51. package/dist/entities/serialise.d.ts +318 -113
  52. package/dist/entities/serialise.js +4 -3
  53. package/dist/entities/tags.d.ts +1 -1
  54. package/dist/entities/tags.js +2 -1
  55. package/dist/entities/ui/describe.d.ts +126 -34
  56. package/dist/entities/ui/describe.js +3 -2
  57. package/dist/entities/ui/input.d.ts +158 -49
  58. package/dist/entities/ui/input.js +13 -6
  59. package/dist/entities/ui/page.d.ts +124 -32
  60. package/dist/entities/ui/page.js +2 -1
  61. package/dist/entities/ui/pages.d.ts +11 -3
  62. package/dist/entities/ui/pages.js +3 -2
  63. package/dist/entities/validated.d.ts +1 -0
  64. package/dist/entities/when.d.ts +16 -16
  65. package/dist/entities/when.js +2 -2
  66. package/dist/errors/errors.d.ts +10 -0
  67. package/dist/errors/errors.js +6 -0
  68. package/dist/instance.d.ts +7 -7
  69. package/dist/instance.js +4 -4
  70. package/dist/mappers/index.d.ts +1 -1
  71. package/dist/mappers/order.js +4 -2
  72. package/dist/mappers/price.js +1 -2
  73. package/dist/mappers/render/collection.d.ts +9 -0
  74. package/dist/mappers/render/collection.js +27 -0
  75. package/dist/mappers/render/compose.d.ts +5 -0
  76. package/dist/mappers/render/compose.js +15 -0
  77. package/dist/mappers/render/description.d.ts +3 -0
  78. package/dist/mappers/render/description.js +17 -0
  79. package/dist/mappers/render/index.d.ts +3 -1
  80. package/dist/mappers/render/option.d.ts +21 -0
  81. package/dist/mappers/render/option.js +26 -0
  82. package/dist/mappers/render/page.d.ts +11 -0
  83. package/dist/mappers/render/page.js +11 -0
  84. package/dist/mappers/render/paths.d.ts +3 -0
  85. package/dist/mappers/render/paths.js +21 -0
  86. package/dist/mappers/render/render.d.ts +1 -1
  87. package/dist/mappers/render/render.js +33 -98
  88. package/dist/mappers/resolve.d.ts +2 -1
  89. package/dist/mappers/resolve.js +24 -23
  90. package/dist/primitive.d.ts +5 -0
  91. package/dist/primitive.js +6 -1
  92. package/dist/public.d.ts +1 -1
  93. package/dist/references.d.ts +6 -6
  94. package/dist/references.js +3 -2
  95. package/dist/validate/model.js +16 -5
  96. package/dist/validate/paths.js +3 -5
  97. package/dist/validate/pricing.js +5 -6
  98. package/dist/validate/resolve.d.ts +2 -1
  99. package/dist/validate/resolve.js +87 -73
  100. package/dist/validate/ui.js +14 -13
  101. package/package.json +7 -5
  102. package/dist/mappers/render/pages.d.ts +0 -24
  103. package/dist/mappers/render/pages.js +0 -2
@@ -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,96 @@ 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
+ readonly placeholderLabel: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
555
+ readonly type: v.LiteralSchema<"parameter", 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
+ }, undefined>, v.ReadonlyAction<{
559
+ type: "parameter";
560
+ id: string;
561
+ name: string;
562
+ }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
563
+ readonly type: v.LiteralSchema<"ref", undefined>;
564
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
565
+ }, undefined>, v.ReadonlyAction<{
566
+ type: "ref";
567
+ id: string;
568
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
554
569
  readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
555
570
  readonly type: v.LiteralSchema<"parameter", undefined>;
556
- readonly id: v.StringSchema<undefined>;
557
- readonly name: v.StringSchema<undefined>;
571
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
572
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
558
573
  }, undefined>, v.ReadonlyAction<{
559
574
  type: "parameter";
560
575
  id: string;
561
576
  name: string;
562
577
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
563
578
  readonly type: v.LiteralSchema<"ref", undefined>;
564
- readonly id: v.StringSchema<undefined>;
579
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
565
580
  }, undefined>, v.ReadonlyAction<{
566
581
  type: "ref";
567
582
  id: string;
568
- }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
583
+ }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
569
584
  readonly type: v.LiteralSchema<"parameter", undefined>;
570
- readonly id: v.StringSchema<undefined>;
571
- readonly name: v.StringSchema<undefined>;
585
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
586
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
572
587
  }, undefined>, v.ReadonlyAction<{
573
588
  type: "parameter";
574
589
  id: string;
575
590
  name: string;
576
591
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
577
592
  readonly type: v.LiteralSchema<"ref", undefined>;
578
- readonly id: v.StringSchema<undefined>;
593
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
579
594
  }, undefined>, v.ReadonlyAction<{
580
595
  type: "ref";
581
596
  id: string;
582
597
  }>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
583
598
  [x: string]: unknown;
584
599
  }>]>], undefined>, undefined>;
585
- readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
600
+ 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
601
  }, undefined>, v.ReadonlyAction<{
587
602
  type: "input";
588
603
  path: readonly (string | number)[] | Readonly<{
@@ -609,6 +624,66 @@ export declare const entitiesMap: {
609
624
  type: "ref";
610
625
  id: string;
611
626
  }> | undefined;
627
+ placeholderLabel?: string | Readonly<{
628
+ type: "parameter";
629
+ id: string;
630
+ name: string;
631
+ }> | Readonly<{
632
+ type: "ref";
633
+ id: string;
634
+ }> | undefined;
635
+ metadata?: Readonly<{
636
+ type: "parameter";
637
+ id: string;
638
+ name: string;
639
+ }> | Readonly<{
640
+ type: "ref";
641
+ id: string;
642
+ }> | Readonly<{
643
+ [x: string]: unknown;
644
+ }> | undefined;
645
+ tags?: readonly string[] | undefined;
646
+ }>]>], undefined>, undefined>, v.MinLengthAction<(Readonly<{
647
+ type: "parameter";
648
+ id: string;
649
+ name: string;
650
+ }> | Readonly<{
651
+ type: "ref";
652
+ id: string;
653
+ }> | Readonly<{
654
+ type: "input";
655
+ path: readonly (string | number)[] | Readonly<{
656
+ type: "parameter";
657
+ id: string;
658
+ name: string;
659
+ }> | Readonly<{
660
+ type: "ref";
661
+ id: string;
662
+ }>;
663
+ displayName?: string | Readonly<{
664
+ type: "parameter";
665
+ id: string;
666
+ name: string;
667
+ }> | Readonly<{
668
+ type: "ref";
669
+ id: string;
670
+ }> | undefined;
671
+ kind?: string | Readonly<{
672
+ type: "parameter";
673
+ id: string;
674
+ name: string;
675
+ }> | Readonly<{
676
+ type: "ref";
677
+ id: string;
678
+ }> | undefined;
679
+ placeholderLabel?: string | Readonly<{
680
+ type: "parameter";
681
+ id: string;
682
+ name: string;
683
+ }> | Readonly<{
684
+ type: "ref";
685
+ id: string;
686
+ }> | undefined;
612
687
  metadata?: Readonly<{
613
688
  type: "parameter";
614
689
  id: string;
@@ -620,7 +695,7 @@ export declare const entitiesMap: {
620
695
  [x: string]: unknown;
621
696
  }> | undefined;
622
697
  tags?: readonly string[] | undefined;
623
- }>]>], undefined>, undefined>, v.ReadonlyAction<(Readonly<{
698
+ }>)[], 1, undefined>, v.ReadonlyAction<(Readonly<{
624
699
  type: "parameter";
625
700
  id: string;
626
701
  name: string;
@@ -653,6 +728,14 @@ export declare const entitiesMap: {
653
728
  type: "ref";
654
729
  id: string;
655
730
  }> | undefined;
731
+ placeholderLabel?: string | Readonly<{
732
+ type: "parameter";
733
+ id: string;
734
+ name: string;
735
+ }> | Readonly<{
736
+ type: "ref";
737
+ id: string;
738
+ }> | undefined;
656
739
  metadata?: Readonly<{
657
740
  type: "parameter";
658
741
  id: string;
@@ -665,7 +748,7 @@ export declare const entitiesMap: {
665
748
  }> | undefined;
666
749
  tags?: readonly string[] | undefined;
667
750
  }>)[]>]>], undefined>;
668
- readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
751
+ 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
752
  }, undefined>, v.ReadonlyAction<{
670
753
  type: "describe";
671
754
  label: string | Readonly<{
@@ -716,6 +799,14 @@ export declare const entitiesMap: {
716
799
  type: "ref";
717
800
  id: string;
718
801
  }> | undefined;
802
+ placeholderLabel?: string | Readonly<{
803
+ type: "parameter";
804
+ id: string;
805
+ name: string;
806
+ }> | Readonly<{
807
+ type: "ref";
808
+ id: string;
809
+ }> | undefined;
719
810
  metadata?: Readonly<{
720
811
  type: "parameter";
721
812
  id: string;
@@ -734,15 +825,15 @@ export declare const entitiesMap: {
734
825
  readonly uiItems: {
735
826
  readonly runtime: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
736
827
  readonly type: v.LiteralSchema<"parameter", undefined>;
737
- readonly id: v.StringSchema<undefined>;
738
- readonly name: v.StringSchema<undefined>;
828
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
829
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
739
830
  }, undefined>, v.ReadonlyAction<{
740
831
  type: "parameter";
741
832
  id: string;
742
833
  name: string;
743
834
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
744
835
  readonly type: v.LiteralSchema<"ref", undefined>;
745
- readonly id: v.StringSchema<undefined>;
836
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
746
837
  }, undefined>, v.ReadonlyAction<{
747
838
  type: "ref";
748
839
  id: string;
@@ -756,15 +847,15 @@ export declare const entitiesMap: {
756
847
  }> | import(".").BuilderUIItemSerialised)[]>]>;
757
848
  readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
758
849
  readonly type: v.LiteralSchema<"parameter", undefined>;
759
- readonly id: v.StringSchema<undefined>;
760
- readonly name: v.StringSchema<undefined>;
850
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
851
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
761
852
  }, undefined>, v.ReadonlyAction<{
762
853
  type: "parameter";
763
854
  id: string;
764
855
  name: string;
765
856
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
766
857
  readonly type: v.LiteralSchema<"ref", undefined>;
767
- readonly id: v.StringSchema<undefined>;
858
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
768
859
  }, undefined>, v.ReadonlyAction<{
769
860
  type: "ref";
770
861
  id: string;
@@ -783,44 +874,44 @@ export declare const entitiesMap: {
783
874
  readonly type: v.LiteralSchema<"page", undefined>;
784
875
  readonly label: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
785
876
  readonly type: v.LiteralSchema<"parameter", undefined>;
786
- readonly id: v.StringSchema<undefined>;
787
- readonly name: v.StringSchema<undefined>;
877
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
878
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
788
879
  }, undefined>, v.ReadonlyAction<{
789
880
  type: "parameter";
790
881
  id: string;
791
882
  name: string;
792
883
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
793
884
  readonly type: v.LiteralSchema<"ref", undefined>;
794
- readonly id: v.StringSchema<undefined>;
885
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
795
886
  }, undefined>, v.ReadonlyAction<{
796
887
  type: "ref";
797
888
  id: string;
798
- }>]>, v.StringSchema<undefined>], undefined>;
889
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>;
799
890
  readonly inputs: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
800
891
  readonly type: v.LiteralSchema<"parameter", undefined>;
801
- readonly id: v.StringSchema<undefined>;
802
- readonly name: v.StringSchema<undefined>;
892
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
893
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
803
894
  }, undefined>, v.ReadonlyAction<{
804
895
  type: "parameter";
805
896
  id: string;
806
897
  name: string;
807
898
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
808
899
  readonly type: v.LiteralSchema<"ref", undefined>;
809
- readonly id: v.StringSchema<undefined>;
900
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
810
901
  }, undefined>, v.ReadonlyAction<{
811
902
  type: "ref";
812
903
  id: string;
813
904
  }>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
814
905
  readonly type: v.LiteralSchema<"parameter", undefined>;
815
- readonly id: v.StringSchema<undefined>;
816
- readonly name: v.StringSchema<undefined>;
906
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
907
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
817
908
  }, undefined>, v.ReadonlyAction<{
818
909
  type: "parameter";
819
910
  id: string;
820
911
  name: string;
821
912
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
822
913
  readonly type: v.LiteralSchema<"ref", undefined>;
823
- readonly id: v.StringSchema<undefined>;
914
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
824
915
  }, undefined>, v.ReadonlyAction<{
825
916
  type: "ref";
826
917
  id: string;
@@ -828,81 +919,96 @@ export declare const entitiesMap: {
828
919
  readonly type: v.LiteralSchema<"input", undefined>;
829
920
  readonly path: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
830
921
  readonly type: v.LiteralSchema<"parameter", undefined>;
831
- readonly id: v.StringSchema<undefined>;
832
- readonly name: v.StringSchema<undefined>;
922
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
923
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
833
924
  }, undefined>, v.ReadonlyAction<{
834
925
  type: "parameter";
835
926
  id: string;
836
927
  name: string;
837
928
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
838
929
  readonly type: v.LiteralSchema<"ref", undefined>;
839
- readonly id: v.StringSchema<undefined>;
930
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
840
931
  }, undefined>, v.ReadonlyAction<{
841
932
  type: "ref";
842
933
  id: string;
843
- }>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
934
+ }>]>, 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
935
  readonly displayName: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
845
936
  readonly type: v.LiteralSchema<"parameter", undefined>;
846
- readonly id: v.StringSchema<undefined>;
847
- readonly name: v.StringSchema<undefined>;
937
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
938
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
848
939
  }, undefined>, v.ReadonlyAction<{
849
940
  type: "parameter";
850
941
  id: string;
851
942
  name: string;
852
943
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
853
944
  readonly type: v.LiteralSchema<"ref", undefined>;
854
- readonly id: v.StringSchema<undefined>;
945
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
855
946
  }, undefined>, v.ReadonlyAction<{
856
947
  type: "ref";
857
948
  id: string;
858
- }>]>, v.StringSchema<undefined>], undefined>, undefined>;
949
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
859
950
  readonly kind: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
860
951
  readonly type: v.LiteralSchema<"parameter", undefined>;
861
- readonly id: v.StringSchema<undefined>;
862
- readonly name: v.StringSchema<undefined>;
952
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
953
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
863
954
  }, undefined>, v.ReadonlyAction<{
864
955
  type: "parameter";
865
956
  id: string;
866
957
  name: string;
867
958
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
868
959
  readonly type: v.LiteralSchema<"ref", undefined>;
869
- readonly id: v.StringSchema<undefined>;
960
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
870
961
  }, undefined>, v.ReadonlyAction<{
871
962
  type: "ref";
872
963
  id: string;
873
- }>]>, v.StringSchema<undefined>], undefined>, undefined>;
964
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
965
+ readonly placeholderLabel: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
966
+ readonly type: v.LiteralSchema<"parameter", undefined>;
967
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
968
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
969
+ }, undefined>, v.ReadonlyAction<{
970
+ type: "parameter";
971
+ id: string;
972
+ name: string;
973
+ }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
974
+ readonly type: v.LiteralSchema<"ref", undefined>;
975
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
976
+ }, undefined>, v.ReadonlyAction<{
977
+ type: "ref";
978
+ id: string;
979
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
874
980
  readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
875
981
  readonly type: v.LiteralSchema<"parameter", undefined>;
876
- readonly id: v.StringSchema<undefined>;
877
- readonly name: v.StringSchema<undefined>;
982
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
983
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
878
984
  }, undefined>, v.ReadonlyAction<{
879
985
  type: "parameter";
880
986
  id: string;
881
987
  name: string;
882
988
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
883
989
  readonly type: v.LiteralSchema<"ref", undefined>;
884
- readonly id: v.StringSchema<undefined>;
990
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
885
991
  }, undefined>, v.ReadonlyAction<{
886
992
  type: "ref";
887
993
  id: string;
888
- }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
994
+ }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
889
995
  readonly type: v.LiteralSchema<"parameter", undefined>;
890
- readonly id: v.StringSchema<undefined>;
891
- readonly name: v.StringSchema<undefined>;
996
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
997
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
892
998
  }, undefined>, v.ReadonlyAction<{
893
999
  type: "parameter";
894
1000
  id: string;
895
1001
  name: string;
896
1002
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
897
1003
  readonly type: v.LiteralSchema<"ref", undefined>;
898
- readonly id: v.StringSchema<undefined>;
1004
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
899
1005
  }, undefined>, v.ReadonlyAction<{
900
1006
  type: "ref";
901
1007
  id: string;
902
1008
  }>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
903
1009
  [x: string]: unknown;
904
1010
  }>]>], undefined>, undefined>;
905
- readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
1011
+ 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
1012
  }, undefined>, v.ReadonlyAction<{
907
1013
  type: "input";
908
1014
  path: readonly (string | number)[] | Readonly<{
@@ -929,6 +1035,14 @@ export declare const entitiesMap: {
929
1035
  type: "ref";
930
1036
  id: string;
931
1037
  }> | undefined;
1038
+ placeholderLabel?: string | Readonly<{
1039
+ type: "parameter";
1040
+ id: string;
1041
+ name: string;
1042
+ }> | Readonly<{
1043
+ type: "ref";
1044
+ id: string;
1045
+ }> | undefined;
932
1046
  metadata?: Readonly<{
933
1047
  type: "parameter";
934
1048
  id: string;
@@ -940,7 +1054,7 @@ export declare const entitiesMap: {
940
1054
  [x: string]: unknown;
941
1055
  }> | undefined;
942
1056
  tags?: readonly string[] | undefined;
943
- }>]>], undefined>, undefined>, v.ReadonlyAction<(Readonly<{
1057
+ }>]>], undefined>, undefined>, v.MinLengthAction<(Readonly<{
944
1058
  type: "parameter";
945
1059
  id: string;
946
1060
  name: string;
@@ -973,6 +1087,66 @@ export declare const entitiesMap: {
973
1087
  type: "ref";
974
1088
  id: string;
975
1089
  }> | undefined;
1090
+ placeholderLabel?: string | Readonly<{
1091
+ type: "parameter";
1092
+ id: string;
1093
+ name: string;
1094
+ }> | Readonly<{
1095
+ type: "ref";
1096
+ id: string;
1097
+ }> | undefined;
1098
+ metadata?: Readonly<{
1099
+ type: "parameter";
1100
+ id: string;
1101
+ name: string;
1102
+ }> | Readonly<{
1103
+ type: "ref";
1104
+ id: string;
1105
+ }> | Readonly<{
1106
+ [x: string]: unknown;
1107
+ }> | undefined;
1108
+ tags?: readonly string[] | undefined;
1109
+ }>)[], 1, undefined>, v.ReadonlyAction<(Readonly<{
1110
+ type: "parameter";
1111
+ id: string;
1112
+ name: string;
1113
+ }> | Readonly<{
1114
+ type: "ref";
1115
+ id: string;
1116
+ }> | Readonly<{
1117
+ type: "input";
1118
+ path: readonly (string | number)[] | Readonly<{
1119
+ type: "parameter";
1120
+ id: string;
1121
+ name: string;
1122
+ }> | Readonly<{
1123
+ type: "ref";
1124
+ id: string;
1125
+ }>;
1126
+ displayName?: string | Readonly<{
1127
+ type: "parameter";
1128
+ id: string;
1129
+ name: string;
1130
+ }> | Readonly<{
1131
+ type: "ref";
1132
+ id: string;
1133
+ }> | undefined;
1134
+ kind?: string | Readonly<{
1135
+ type: "parameter";
1136
+ id: string;
1137
+ name: string;
1138
+ }> | Readonly<{
1139
+ type: "ref";
1140
+ id: string;
1141
+ }> | undefined;
1142
+ placeholderLabel?: string | Readonly<{
1143
+ type: "parameter";
1144
+ id: string;
1145
+ name: string;
1146
+ }> | Readonly<{
1147
+ type: "ref";
1148
+ id: string;
1149
+ }> | undefined;
976
1150
  metadata?: Readonly<{
977
1151
  type: "parameter";
978
1152
  id: string;
@@ -985,7 +1159,7 @@ export declare const entitiesMap: {
985
1159
  }> | undefined;
986
1160
  tags?: readonly string[] | undefined;
987
1161
  }>)[]>]>], undefined>;
988
- readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
1162
+ 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
1163
  }, undefined>, v.ReadonlyAction<{
990
1164
  type: "page";
991
1165
  label: string | Readonly<{
@@ -1036,6 +1210,14 @@ export declare const entitiesMap: {
1036
1210
  type: "ref";
1037
1211
  id: string;
1038
1212
  }> | undefined;
1213
+ placeholderLabel?: string | Readonly<{
1214
+ type: "parameter";
1215
+ id: string;
1216
+ name: string;
1217
+ }> | Readonly<{
1218
+ type: "ref";
1219
+ id: string;
1220
+ }> | undefined;
1039
1221
  metadata?: Readonly<{
1040
1222
  type: "parameter";
1041
1223
  id: string;
@@ -1061,81 +1243,96 @@ export declare const entitiesMap: {
1061
1243
  readonly type: v.LiteralSchema<"input", undefined>;
1062
1244
  readonly path: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1063
1245
  readonly type: v.LiteralSchema<"parameter", undefined>;
1064
- readonly id: v.StringSchema<undefined>;
1065
- readonly name: v.StringSchema<undefined>;
1246
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1247
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1066
1248
  }, undefined>, v.ReadonlyAction<{
1067
1249
  type: "parameter";
1068
1250
  id: string;
1069
1251
  name: string;
1070
1252
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1071
1253
  readonly type: v.LiteralSchema<"ref", undefined>;
1072
- readonly id: v.StringSchema<undefined>;
1254
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1073
1255
  }, undefined>, v.ReadonlyAction<{
1074
1256
  type: "ref";
1075
1257
  id: string;
1076
- }>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, v.ReadonlyAction<(string | number)[]>]>], undefined>;
1258
+ }>]>, 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
1259
  readonly displayName: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1078
1260
  readonly type: v.LiteralSchema<"parameter", undefined>;
1079
- readonly id: v.StringSchema<undefined>;
1080
- readonly name: v.StringSchema<undefined>;
1261
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1262
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1081
1263
  }, undefined>, v.ReadonlyAction<{
1082
1264
  type: "parameter";
1083
1265
  id: string;
1084
1266
  name: string;
1085
1267
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1086
1268
  readonly type: v.LiteralSchema<"ref", undefined>;
1087
- readonly id: v.StringSchema<undefined>;
1269
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1088
1270
  }, undefined>, v.ReadonlyAction<{
1089
1271
  type: "ref";
1090
1272
  id: string;
1091
- }>]>, v.StringSchema<undefined>], undefined>, undefined>;
1273
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
1092
1274
  readonly kind: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1093
1275
  readonly type: v.LiteralSchema<"parameter", undefined>;
1094
- readonly id: v.StringSchema<undefined>;
1095
- readonly name: v.StringSchema<undefined>;
1276
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1277
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1278
+ }, undefined>, v.ReadonlyAction<{
1279
+ type: "parameter";
1280
+ id: string;
1281
+ name: string;
1282
+ }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1283
+ readonly type: v.LiteralSchema<"ref", undefined>;
1284
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1285
+ }, undefined>, v.ReadonlyAction<{
1286
+ type: "ref";
1287
+ id: string;
1288
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
1289
+ readonly placeholderLabel: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1290
+ readonly type: v.LiteralSchema<"parameter", undefined>;
1291
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1292
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1096
1293
  }, undefined>, v.ReadonlyAction<{
1097
1294
  type: "parameter";
1098
1295
  id: string;
1099
1296
  name: string;
1100
1297
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1101
1298
  readonly type: v.LiteralSchema<"ref", undefined>;
1102
- readonly id: v.StringSchema<undefined>;
1299
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1103
1300
  }, undefined>, v.ReadonlyAction<{
1104
1301
  type: "ref";
1105
1302
  id: string;
1106
- }>]>, v.StringSchema<undefined>], undefined>, undefined>;
1303
+ }>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>], undefined>, undefined>;
1107
1304
  readonly metadata: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1108
1305
  readonly type: v.LiteralSchema<"parameter", undefined>;
1109
- readonly id: v.StringSchema<undefined>;
1110
- readonly name: v.StringSchema<undefined>;
1306
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1307
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1111
1308
  }, undefined>, v.ReadonlyAction<{
1112
1309
  type: "parameter";
1113
1310
  id: string;
1114
1311
  name: string;
1115
1312
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1116
1313
  readonly type: v.LiteralSchema<"ref", undefined>;
1117
- readonly id: v.StringSchema<undefined>;
1314
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1118
1315
  }, undefined>, v.ReadonlyAction<{
1119
1316
  type: "ref";
1120
1317
  id: string;
1121
- }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1318
+ }>]>, v.SchemaWithPipe<readonly [v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1122
1319
  readonly type: v.LiteralSchema<"parameter", undefined>;
1123
- readonly id: v.StringSchema<undefined>;
1124
- readonly name: v.StringSchema<undefined>;
1320
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1321
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1125
1322
  }, undefined>, v.ReadonlyAction<{
1126
1323
  type: "parameter";
1127
1324
  id: string;
1128
1325
  name: string;
1129
1326
  }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1130
1327
  readonly type: v.LiteralSchema<"ref", undefined>;
1131
- readonly id: v.StringSchema<undefined>;
1328
+ readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1132
1329
  }, undefined>, v.ReadonlyAction<{
1133
1330
  type: "ref";
1134
1331
  id: string;
1135
1332
  }>]>, v.UnknownSchema], undefined>, undefined>, v.ReadonlyAction<{
1136
1333
  [x: string]: unknown;
1137
1334
  }>]>], undefined>, undefined>;
1138
- readonly tags: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.ReadonlyAction<string[]>]>, undefined>;
1335
+ 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
1336
  }, undefined>, v.ReadonlyAction<{
1140
1337
  type: "input";
1141
1338
  path: readonly (string | number)[] | Readonly<{
@@ -1162,6 +1359,14 @@ export declare const entitiesMap: {
1162
1359
  type: "ref";
1163
1360
  id: string;
1164
1361
  }> | undefined;
1362
+ placeholderLabel?: string | Readonly<{
1363
+ type: "parameter";
1364
+ id: string;
1365
+ name: string;
1366
+ }> | Readonly<{
1367
+ type: "ref";
1368
+ id: string;
1369
+ }> | undefined;
1165
1370
  metadata?: Readonly<{
1166
1371
  type: "parameter";
1167
1372
  id: string;
@@ -1186,7 +1391,7 @@ export declare const entitiesMap: {
1186
1391
  readonly expectations: {
1187
1392
  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
1393
  readonly serialised: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1189
- readonly name: v.StringSchema<undefined>;
1394
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
1190
1395
  readonly kind: v.PicklistSchema<["option", "component", "collection"], undefined>;
1191
1396
  }, undefined>, v.ReadonlyAction<{
1192
1397
  name: string;
@@ -1197,12 +1402,12 @@ export declare const entitiesMap: {
1197
1402
  }>[]>]>;
1198
1403
  };
1199
1404
  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)[])[]>]>;
1405
+ 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)[])[]>]>;
1406
+ 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
1407
  };
1203
1408
  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)[]>]>;
1409
+ 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)[]>]>;
1410
+ 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
1411
  };
1207
1412
  readonly number: {
1208
1413
  readonly runtime: v.NumberSchema<undefined>;