@builder-builder/builder 0.0.9 → 0.0.10

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 (83) hide show
  1. package/dist/entities/bind.d.ts +4 -0
  2. package/dist/entities/bind.js +44 -0
  3. package/dist/entities/builder/bind.d.ts +85 -0
  4. package/dist/entities/builder/bind.js +9 -0
  5. package/dist/entities/builder/builder.d.ts +111 -92
  6. package/dist/entities/builder/builder.js +11 -8
  7. package/dist/entities/builder/builders.d.ts +23 -8
  8. package/dist/entities/builder/builders.js +6 -5
  9. package/dist/entities/builder/index.d.ts +3 -3
  10. package/dist/entities/builder/index.js +1 -1
  11. package/dist/entities/builder/methods.d.ts +17 -17
  12. package/dist/entities/builder/state.d.ts +4 -4
  13. package/dist/entities/builder/validate.js +7 -7
  14. package/dist/entities/collection/collection.d.ts +6 -5
  15. package/dist/entities/collection/collection.js +6 -5
  16. package/dist/entities/collection/config.d.ts +280 -232
  17. package/dist/entities/collection/config.js +4 -4
  18. package/dist/entities/collection/index.d.ts +1 -1
  19. package/dist/entities/collection/index.js +1 -1
  20. package/dist/entities/collection/when.d.ts +5 -5
  21. package/dist/entities/component/component.d.ts +91 -90
  22. package/dist/entities/component/component.js +5 -4
  23. package/dist/entities/component/details.d.ts +16 -16
  24. package/dist/entities/component/details.js +2 -2
  25. package/dist/entities/component/index.d.ts +1 -1
  26. package/dist/entities/component/index.js +1 -1
  27. package/dist/entities/component/when.d.ts +5 -5
  28. package/dist/entities/index.d.ts +10 -8
  29. package/dist/entities/index.js +7 -6
  30. package/dist/entities/kind.d.ts +6 -0
  31. package/dist/entities/kind.js +6 -0
  32. package/dist/entities/option/index.d.ts +1 -1
  33. package/dist/entities/option/index.js +1 -1
  34. package/dist/entities/option/option.d.ts +39 -38
  35. package/dist/entities/option/option.js +5 -4
  36. package/dist/entities/option/values.d.ts +5 -7
  37. package/dist/entities/option/values.js +4 -4
  38. package/dist/entities/option/when.d.ts +5 -5
  39. package/dist/entities/serialise.d.ts +1582 -2226
  40. package/dist/entities/serialise.js +52 -22
  41. package/dist/entities/ui/bind.d.ts +10 -0
  42. package/dist/entities/ui/bind.js +9 -0
  43. package/dist/entities/ui/describe.d.ts +26 -51
  44. package/dist/entities/ui/describe.js +3 -4
  45. package/dist/entities/ui/index.d.ts +5 -7
  46. package/dist/entities/ui/index.js +2 -3
  47. package/dist/entities/ui/page.d.ts +26 -51
  48. package/dist/entities/ui/page.js +3 -4
  49. package/dist/entities/ui/pages.d.ts +17 -405
  50. package/dist/entities/ui/pages.js +6 -6
  51. package/dist/entities/ui/ui.d.ts +307 -688
  52. package/dist/entities/ui/ui.js +16 -17
  53. package/dist/entities/ui/uis.d.ts +11 -5
  54. package/dist/entities/ui/uis.js +9 -10
  55. package/dist/entities/ui/validate.d.ts +2 -2
  56. package/dist/entities/ui/validate.js +3 -3
  57. package/dist/entities/validate.d.ts +3 -3
  58. package/dist/entities/when.d.ts +45 -44
  59. package/dist/entities/when.js +10 -7
  60. package/dist/index.d.ts +19 -15
  61. package/dist/index.js +6 -3
  62. package/dist/mappers/assert/builder.js +13 -13
  63. package/dist/mappers/assert/ui.js +4 -4
  64. package/dist/mappers/index.d.ts +2 -0
  65. package/dist/mappers/index.js +1 -0
  66. package/dist/mappers/refs.d.ts +12 -0
  67. package/dist/mappers/refs.js +36 -0
  68. package/dist/mappers/render/render.js +3 -3
  69. package/dist/model.d.ts +29 -8
  70. package/dist/model.js +9 -1
  71. package/dist/references.d.ts +55 -29
  72. package/dist/references.js +25 -10
  73. package/dist/walker/walker.d.ts +13 -5
  74. package/dist/walker/walker.js +39 -27
  75. package/dist/walker/walkers.d.ts +4 -3
  76. package/dist/walker/walkers.js +18 -14
  77. package/package.json +9 -7
  78. package/dist/entities/builder/parameter.d.ts +0 -62
  79. package/dist/entities/builder/parameter.js +0 -18
  80. package/dist/entities/ui/label.d.ts +0 -18
  81. package/dist/entities/ui/label.js +0 -12
  82. package/dist/entities/ui/parameter.d.ts +0 -7
  83. package/dist/entities/ui/parameter.js +0 -29
@@ -1,65 +1,62 @@
1
- import type { BuilderRefs, Refable } from '../../references';
1
+ import type { BuilderParameters, BuilderReferences, Paramable } from '../../references';
2
2
  import type { Builder, BuilderGeneric, BuilderStateAsserted, BuilderStateOf } from '../builder/index';
3
3
  import type { CollectionNamesOf } from '../collection/index';
4
4
  import type { BuilderExpectation, BuilderExpectations } from '../expectation';
5
5
  import type { BuilderValidPathsOf } from '../when';
6
- import type { BuilderUIBindings } from './parameter';
6
+ import type { BuilderUIBindings } from './bind';
7
7
  import type { BuilderUIItems } from './pages';
8
8
  import * as v from 'valibot';
9
- import { BuilderUIDescribe } from './describe.js';
10
- import { BuilderUILabel } from './label.js';
11
- import { BuilderUIPage } from './page.js';
12
- export declare class BuilderUI<BuilderType extends Refable<BuilderGeneric> = BuilderGeneric, Items extends BuilderUIItems = BuilderUIItems> {
13
- #private;
9
+ export declare class BuilderUI<BuilderType extends Paramable<BuilderGeneric> = BuilderGeneric, Items extends BuilderUIItems = BuilderUIItems> {
14
10
  readonly type: 'ui';
15
11
  readonly builder: BuilderType;
16
- readonly references: BuilderRefs;
12
+ readonly parameters: BuilderParameters;
17
13
  readonly items: Items;
18
14
  readonly expectations: BuilderExpectations;
15
+ readonly references: BuilderReferences;
19
16
  readonly id: `${string}-${string}-${string}-${string}-${string}`;
20
- constructor(builder: BuilderType, references: BuilderRefs, items: Items, expectations: BuilderExpectations);
17
+ constructor(builder: BuilderType, parameters: BuilderParameters, items: Items, expectations: BuilderExpectations, references?: BuilderReferences);
21
18
  expect<const Expectations extends readonly [BuilderExpectation, ...ReadonlyArray<BuilderExpectation>]>(...expectations: Expectations): BuilderUI<Builder<BuilderStateAsserted<BuilderStateOf<BuilderType>, Expectations>>>;
22
- page(label: Refable<string>, paths: Refable<BuilderValidPathsOf<BuilderType>>): BuilderUI<BuilderType>;
23
- describe(label: Refable<string>, paths: Refable<BuilderValidPathsOf<BuilderType>>): BuilderUI<BuilderType>;
24
- pages<const Name extends CollectionNamesOf<BuilderStateOf<BuilderType>>>(name: Name, label: Refable<string>, itemUI: Refable<BuilderUIGeneric>): BuilderUI<BuilderType>;
25
- bind(bindings: BuilderUIBindings): BuilderUI<BuilderType>;
19
+ page(label: Paramable<string>, paths: Paramable<BuilderValidPathsOf<BuilderType>>): BuilderUI<BuilderType>;
20
+ describe(label: Paramable<string>, paths: Paramable<BuilderValidPathsOf<BuilderType>>): BuilderUI<BuilderType>;
21
+ pages<const Name extends CollectionNamesOf<BuilderStateOf<BuilderType>>>(name: Name, label: Paramable<string>, itemUI: Paramable<BuilderUIGeneric>): BuilderUI<BuilderType>;
22
+ bind(bindings: BuilderUIBindings<BuilderType>): BuilderUI<BuilderType>;
26
23
  }
27
24
  export declare const BuilderUISchema: v.InstanceSchema<typeof BuilderUI, undefined>;
28
- export type BuilderUIGeneric = BuilderUI<Refable<BuilderGeneric>>;
25
+ export type BuilderUIGeneric = BuilderUI<Paramable<BuilderGeneric>>;
29
26
  export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.ObjectSchema<{
30
27
  readonly builder: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
31
- readonly type: v.LiteralSchema<"ref", undefined>;
28
+ readonly type: v.LiteralSchema<"parameter", undefined>;
32
29
  readonly id: v.StringSchema<undefined>;
33
30
  readonly name: v.StringSchema<undefined>;
34
31
  }, undefined>, v.ReadonlyAction<{
35
- type: "ref";
32
+ type: "parameter";
36
33
  id: string;
37
34
  name: string;
38
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.LazySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
39
- readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
40
- readonly type: v.LiteralSchema<"ref", undefined>;
35
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.LazySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
36
+ readonly parameters: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
37
+ readonly type: v.LiteralSchema<"parameter", undefined>;
41
38
  readonly id: v.StringSchema<undefined>;
42
39
  readonly name: v.StringSchema<undefined>;
43
40
  }, undefined>, v.ReadonlyAction<{
44
- type: "ref";
41
+ type: "parameter";
45
42
  id: string;
46
43
  name: string;
47
44
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
48
- type: "ref";
45
+ type: "parameter";
49
46
  id: string;
50
47
  name: string;
51
48
  }>[]>]>;
52
49
  readonly options: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
53
50
  readonly name: v.StringSchema<undefined>;
54
51
  readonly payload: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
55
- readonly type: v.LiteralSchema<"ref", undefined>;
52
+ readonly type: v.LiteralSchema<"parameter", undefined>;
56
53
  readonly id: v.StringSchema<undefined>;
57
54
  readonly name: v.StringSchema<undefined>;
58
55
  }, undefined>, v.ReadonlyAction<{
59
- type: "ref";
56
+ type: "parameter";
60
57
  id: string;
61
58
  name: string;
62
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
59
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
63
60
  readonly type: v.LiteralSchema<"select", undefined>;
64
61
  readonly options: v.SchemaWithPipe<readonly [v.TupleWithRestSchema<[v.StringSchema<undefined>], v.StringSchema<undefined>, undefined>, v.ReadonlyAction<[string, ...string[]]>]>;
65
62
  readonly defaultValue: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -116,7 +113,7 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
116
113
  defaultValue: string | number | boolean | null;
117
114
  isOptional: boolean;
118
115
  }>>]>, v.GenericSchema], undefined>], undefined>, v.MetadataAction<unknown, {
119
- readonly refable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
116
+ readonly paramable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
120
117
  readonly type: v.LiteralSchema<"select", undefined>;
121
118
  readonly options: v.SchemaWithPipe<readonly [v.TupleWithRestSchema<[v.StringSchema<undefined>], v.StringSchema<undefined>, undefined>, v.ReadonlyAction<[string, ...string[]]>]>;
122
119
  readonly defaultValue: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -175,68 +172,68 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
175
172
  }>>]>, v.GenericSchema], undefined>;
176
173
  }>]>;
177
174
  readonly gatePaths: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
178
- readonly type: v.LiteralSchema<"ref", undefined>;
175
+ readonly type: v.LiteralSchema<"parameter", undefined>;
179
176
  readonly id: v.StringSchema<undefined>;
180
177
  readonly name: v.StringSchema<undefined>;
181
178
  }, undefined>, v.ReadonlyAction<{
182
- type: "ref";
179
+ type: "parameter";
183
180
  id: string;
184
181
  name: string;
185
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
186
- type: "ref";
182
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | Readonly<{
183
+ type: "parameter";
187
184
  id: string;
188
185
  name: string;
189
- }>, {
190
- readonly refable: 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)[])[]>]>;
186
+ }> | import("../..").BuilderParameter<string>, {
187
+ readonly paramable: 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)[])[]>]>;
191
188
  }>]>, undefined>;
192
189
  }, undefined>, v.MetadataAction<{
193
190
  name: string;
194
191
  payload: unknown;
195
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
196
- type: "ref";
192
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
193
+ type: "parameter";
197
194
  id: string;
198
195
  name: string;
199
- }> | undefined;
196
+ }> | import("../..").BuilderParameter<string> | undefined;
200
197
  }, {
201
198
  readonly serialisable: typeof import("..").BuilderOption;
202
199
  readonly instance: v.InstanceSchema<typeof import("..").BuilderOption, undefined>;
203
200
  }>, v.ReadonlyAction<{
204
201
  name: string;
205
202
  payload: unknown;
206
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
207
- type: "ref";
203
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
204
+ type: "parameter";
208
205
  id: string;
209
206
  name: string;
210
- }> | undefined;
207
+ }> | import("../..").BuilderParameter<string> | undefined;
211
208
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
212
209
  name: string;
213
210
  payload: unknown;
214
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
215
- type: "ref";
211
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
212
+ type: "parameter";
216
213
  id: string;
217
214
  name: string;
218
- }> | undefined;
215
+ }> | import("../..").BuilderParameter<string> | undefined;
219
216
  }>[]>]>;
220
217
  readonly components: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
221
218
  readonly name: v.StringSchema<undefined>;
222
219
  readonly payload: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
223
- readonly type: v.LiteralSchema<"ref", undefined>;
220
+ readonly type: v.LiteralSchema<"parameter", undefined>;
224
221
  readonly id: v.StringSchema<undefined>;
225
222
  readonly name: v.StringSchema<undefined>;
226
223
  }, undefined>, v.ReadonlyAction<{
227
- type: "ref";
224
+ type: "parameter";
228
225
  id: string;
229
226
  name: string;
230
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
227
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
231
228
  readonly expectations: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
232
- readonly type: v.LiteralSchema<"ref", undefined>;
229
+ readonly type: v.LiteralSchema<"parameter", undefined>;
233
230
  readonly id: v.StringSchema<undefined>;
234
231
  readonly name: v.StringSchema<undefined>;
235
232
  }, undefined>, v.ReadonlyAction<{
236
- type: "ref";
233
+ type: "parameter";
237
234
  id: string;
238
235
  name: string;
239
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
236
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
240
237
  readonly name: v.StringSchema<undefined>;
241
238
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
242
239
  }, undefined>, v.MetadataAction<{
@@ -251,15 +248,15 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
251
248
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
252
249
  name: string;
253
250
  kind: "option" | "component" | "collection" | "detail";
254
- }>[]>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
255
- type: "ref";
251
+ }>[]>]>], undefined>, v.MetadataAction<Readonly<{
252
+ type: "parameter";
256
253
  id: string;
257
254
  name: string;
258
- }> | readonly Readonly<{
255
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
259
256
  name: string;
260
257
  kind: "option" | "component" | "collection" | "detail";
261
258
  }>[], {
262
- readonly refable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
259
+ readonly paramable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
263
260
  readonly name: v.StringSchema<undefined>;
264
261
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
265
262
  }, undefined>, v.MetadataAction<{
@@ -277,11 +274,11 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
277
274
  }>[]>]>;
278
275
  }>]>;
279
276
  }, undefined>, v.MetadataAction<{
280
- expectations: import("../..").BuilderRef | Readonly<{
281
- type: "ref";
277
+ expectations: Readonly<{
278
+ type: "parameter";
282
279
  id: string;
283
280
  name: string;
284
- }> | readonly Readonly<{
281
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
285
282
  name: string;
286
283
  kind: "option" | "component" | "collection" | "detail";
287
284
  }>[];
@@ -289,25 +286,25 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
289
286
  readonly serialisable: typeof import("..").BuilderComponentDetails;
290
287
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponentDetails, undefined>;
291
288
  }>, v.ReadonlyAction<{
292
- expectations: import("../..").BuilderRef | Readonly<{
293
- type: "ref";
289
+ expectations: Readonly<{
290
+ type: "parameter";
294
291
  id: string;
295
292
  name: string;
296
- }> | readonly Readonly<{
293
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
297
294
  name: string;
298
295
  kind: "option" | "component" | "collection" | "detail";
299
296
  }>[];
300
297
  }>]>, v.GenericSchema], undefined>], undefined>, v.MetadataAction<unknown, {
301
- readonly refable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
298
+ readonly paramable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
302
299
  readonly expectations: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
303
- readonly type: v.LiteralSchema<"ref", undefined>;
300
+ readonly type: v.LiteralSchema<"parameter", undefined>;
304
301
  readonly id: v.StringSchema<undefined>;
305
302
  readonly name: v.StringSchema<undefined>;
306
303
  }, undefined>, v.ReadonlyAction<{
307
- type: "ref";
304
+ type: "parameter";
308
305
  id: string;
309
306
  name: string;
310
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
307
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
311
308
  readonly name: v.StringSchema<undefined>;
312
309
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
313
310
  }, undefined>, v.MetadataAction<{
@@ -322,15 +319,15 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
322
319
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
323
320
  name: string;
324
321
  kind: "option" | "component" | "collection" | "detail";
325
- }>[]>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
326
- type: "ref";
322
+ }>[]>]>], undefined>, v.MetadataAction<Readonly<{
323
+ type: "parameter";
327
324
  id: string;
328
325
  name: string;
329
- }> | readonly Readonly<{
326
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
330
327
  name: string;
331
328
  kind: "option" | "component" | "collection" | "detail";
332
329
  }>[], {
333
- readonly refable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
330
+ readonly paramable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
334
331
  readonly name: v.StringSchema<undefined>;
335
332
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
336
333
  }, undefined>, v.MetadataAction<{
@@ -348,11 +345,11 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
348
345
  }>[]>]>;
349
346
  }>]>;
350
347
  }, undefined>, v.MetadataAction<{
351
- expectations: import("../..").BuilderRef | Readonly<{
352
- type: "ref";
348
+ expectations: Readonly<{
349
+ type: "parameter";
353
350
  id: string;
354
351
  name: string;
355
- }> | readonly Readonly<{
352
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
356
353
  name: string;
357
354
  kind: "option" | "component" | "collection" | "detail";
358
355
  }>[];
@@ -360,58 +357,58 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
360
357
  readonly serialisable: typeof import("..").BuilderComponentDetails;
361
358
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponentDetails, undefined>;
362
359
  }>, v.ReadonlyAction<{
363
- expectations: import("../..").BuilderRef | Readonly<{
364
- type: "ref";
360
+ expectations: Readonly<{
361
+ type: "parameter";
365
362
  id: string;
366
363
  name: string;
367
- }> | readonly Readonly<{
364
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
368
365
  name: string;
369
366
  kind: "option" | "component" | "collection" | "detail";
370
367
  }>[];
371
368
  }>]>, v.GenericSchema], undefined>;
372
369
  }>]>;
373
370
  readonly gatePaths: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
374
- readonly type: v.LiteralSchema<"ref", undefined>;
371
+ readonly type: v.LiteralSchema<"parameter", undefined>;
375
372
  readonly id: v.StringSchema<undefined>;
376
373
  readonly name: v.StringSchema<undefined>;
377
374
  }, undefined>, v.ReadonlyAction<{
378
- type: "ref";
375
+ type: "parameter";
379
376
  id: string;
380
377
  name: string;
381
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
382
- type: "ref";
378
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | Readonly<{
379
+ type: "parameter";
383
380
  id: string;
384
381
  name: string;
385
- }>, {
386
- readonly refable: 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)[])[]>]>;
382
+ }> | import("../..").BuilderParameter<string>, {
383
+ readonly paramable: 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)[])[]>]>;
387
384
  }>]>, undefined>;
388
385
  }, undefined>, v.MetadataAction<{
389
386
  name: string;
390
387
  payload: unknown;
391
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
392
- type: "ref";
388
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
389
+ type: "parameter";
393
390
  id: string;
394
391
  name: string;
395
- }> | undefined;
392
+ }> | import("../..").BuilderParameter<string> | undefined;
396
393
  }, {
397
394
  readonly serialisable: typeof import("..").BuilderComponent;
398
395
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponent, undefined>;
399
396
  }>, v.ReadonlyAction<{
400
397
  name: string;
401
398
  payload: unknown;
402
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
403
- type: "ref";
399
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
400
+ type: "parameter";
404
401
  id: string;
405
402
  name: string;
406
- }> | undefined;
403
+ }> | import("../..").BuilderParameter<string> | undefined;
407
404
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
408
405
  name: string;
409
406
  payload: unknown;
410
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
411
- type: "ref";
407
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
408
+ type: "parameter";
412
409
  id: string;
413
410
  name: string;
414
- }> | undefined;
411
+ }> | import("../..").BuilderParameter<string> | undefined;
415
412
  }>[]>]>;
416
413
  readonly collections: v.SchemaWithPipe<readonly [v.ArraySchema<v.GenericSchema<import("..").BuilderCollectionSerialised>, undefined>, v.ReadonlyAction<import("..").BuilderCollectionSerialised[]>]>;
417
414
  readonly expectations: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
@@ -430,126 +427,148 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
430
427
  name: string;
431
428
  kind: "option" | "component" | "collection" | "detail";
432
429
  }>[]>]>;
430
+ readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
431
+ readonly parameter: v.StringSchema<undefined>;
432
+ readonly id: v.StringSchema<undefined>;
433
+ }, undefined>, v.ReadonlyAction<{
434
+ parameter: string;
435
+ id: string;
436
+ }>]>, undefined>, v.ReadonlyAction<Readonly<{
437
+ parameter: string;
438
+ id: string;
439
+ }>[]>]>;
433
440
  }, undefined>, v.MetadataAction<{
434
- readonly references: readonly Readonly<{
435
- type: "ref";
441
+ readonly parameters: readonly Readonly<{
442
+ type: "parameter";
436
443
  id: string;
437
444
  name: string;
438
445
  }>[];
439
446
  readonly options: readonly Readonly<{
440
447
  name: string;
441
448
  payload: unknown;
442
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
443
- type: "ref";
449
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
450
+ type: "parameter";
444
451
  id: string;
445
452
  name: string;
446
- }> | undefined;
453
+ }> | import("../..").BuilderParameter<string> | undefined;
447
454
  }>[];
448
455
  readonly components: readonly Readonly<{
449
456
  name: string;
450
457
  payload: unknown;
451
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
452
- type: "ref";
458
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
459
+ type: "parameter";
453
460
  id: string;
454
461
  name: string;
455
- }> | undefined;
462
+ }> | import("../..").BuilderParameter<string> | undefined;
456
463
  }>[];
457
464
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
458
465
  readonly expectations: readonly Readonly<{
459
466
  name: string;
460
467
  kind: "option" | "component" | "collection" | "detail";
461
468
  }>[];
469
+ readonly references: readonly Readonly<{
470
+ parameter: string;
471
+ id: string;
472
+ }>[];
462
473
  }, {
463
474
  readonly serialisable: typeof Builder;
464
475
  readonly instance: v.InstanceSchema<typeof Builder, undefined>;
465
476
  }>, v.ReadonlyAction<{
466
- readonly references: readonly Readonly<{
467
- type: "ref";
477
+ readonly parameters: readonly Readonly<{
478
+ type: "parameter";
468
479
  id: string;
469
480
  name: string;
470
481
  }>[];
471
482
  readonly options: readonly Readonly<{
472
483
  name: string;
473
484
  payload: unknown;
474
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
475
- type: "ref";
485
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
486
+ type: "parameter";
476
487
  id: string;
477
488
  name: string;
478
- }> | undefined;
489
+ }> | import("../..").BuilderParameter<string> | undefined;
479
490
  }>[];
480
491
  readonly components: readonly Readonly<{
481
492
  name: string;
482
493
  payload: unknown;
483
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
484
- type: "ref";
494
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
495
+ type: "parameter";
485
496
  id: string;
486
497
  name: string;
487
- }> | undefined;
498
+ }> | import("../..").BuilderParameter<string> | undefined;
488
499
  }>[];
489
500
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
490
501
  readonly expectations: readonly Readonly<{
491
502
  name: string;
492
503
  kind: "option" | "component" | "collection" | "detail";
493
504
  }>[];
494
- }>]>>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
495
- type: "ref";
505
+ readonly references: readonly Readonly<{
506
+ parameter: string;
507
+ id: string;
508
+ }>[];
509
+ }>]>>], undefined>, v.MetadataAction<Readonly<{
510
+ type: "parameter";
496
511
  id: string;
497
512
  name: string;
498
- }> | Readonly<{
499
- readonly references: readonly Readonly<{
500
- type: "ref";
513
+ }> | import("../..").BuilderParameter<string> | Readonly<{
514
+ readonly parameters: readonly Readonly<{
515
+ type: "parameter";
501
516
  id: string;
502
517
  name: string;
503
518
  }>[];
504
519
  readonly options: readonly Readonly<{
505
520
  name: string;
506
521
  payload: unknown;
507
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
508
- type: "ref";
522
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
523
+ type: "parameter";
509
524
  id: string;
510
525
  name: string;
511
- }> | undefined;
526
+ }> | import("../..").BuilderParameter<string> | undefined;
512
527
  }>[];
513
528
  readonly components: readonly Readonly<{
514
529
  name: string;
515
530
  payload: unknown;
516
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
517
- type: "ref";
531
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
532
+ type: "parameter";
518
533
  id: string;
519
534
  name: string;
520
- }> | undefined;
535
+ }> | import("../..").BuilderParameter<string> | undefined;
521
536
  }>[];
522
537
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
523
538
  readonly expectations: readonly Readonly<{
524
539
  name: string;
525
540
  kind: "option" | "component" | "collection" | "detail";
526
541
  }>[];
542
+ readonly references: readonly Readonly<{
543
+ parameter: string;
544
+ id: string;
545
+ }>[];
527
546
  }>, {
528
- readonly refable: v.LazySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
529
- readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
530
- readonly type: v.LiteralSchema<"ref", undefined>;
547
+ readonly paramable: v.LazySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
548
+ readonly parameters: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
549
+ readonly type: v.LiteralSchema<"parameter", undefined>;
531
550
  readonly id: v.StringSchema<undefined>;
532
551
  readonly name: v.StringSchema<undefined>;
533
552
  }, undefined>, v.ReadonlyAction<{
534
- type: "ref";
553
+ type: "parameter";
535
554
  id: string;
536
555
  name: string;
537
556
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
538
- type: "ref";
557
+ type: "parameter";
539
558
  id: string;
540
559
  name: string;
541
560
  }>[]>]>;
542
561
  readonly options: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
543
562
  readonly name: v.StringSchema<undefined>;
544
563
  readonly payload: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
545
- readonly type: v.LiteralSchema<"ref", undefined>;
564
+ readonly type: v.LiteralSchema<"parameter", undefined>;
546
565
  readonly id: v.StringSchema<undefined>;
547
566
  readonly name: v.StringSchema<undefined>;
548
567
  }, undefined>, v.ReadonlyAction<{
549
- type: "ref";
568
+ type: "parameter";
550
569
  id: string;
551
570
  name: string;
552
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
571
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
553
572
  readonly type: v.LiteralSchema<"select", undefined>;
554
573
  readonly options: v.SchemaWithPipe<readonly [v.TupleWithRestSchema<[v.StringSchema<undefined>], v.StringSchema<undefined>, undefined>, v.ReadonlyAction<[string, ...string[]]>]>;
555
574
  readonly defaultValue: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -606,7 +625,7 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
606
625
  defaultValue: string | number | boolean | null;
607
626
  isOptional: boolean;
608
627
  }>>]>, v.GenericSchema], undefined>], undefined>, v.MetadataAction<unknown, {
609
- readonly refable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
628
+ readonly paramable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.VariantSchema<"type", [v.SchemaWithPipe<readonly [v.ObjectSchema<{
610
629
  readonly type: v.LiteralSchema<"select", undefined>;
611
630
  readonly options: v.SchemaWithPipe<readonly [v.TupleWithRestSchema<[v.StringSchema<undefined>], v.StringSchema<undefined>, undefined>, v.ReadonlyAction<[string, ...string[]]>]>;
612
631
  readonly defaultValue: v.NullableSchema<v.StringSchema<undefined>, undefined>;
@@ -665,68 +684,68 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
665
684
  }>>]>, v.GenericSchema], undefined>;
666
685
  }>]>;
667
686
  readonly gatePaths: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
668
- readonly type: v.LiteralSchema<"ref", undefined>;
687
+ readonly type: v.LiteralSchema<"parameter", undefined>;
669
688
  readonly id: v.StringSchema<undefined>;
670
689
  readonly name: v.StringSchema<undefined>;
671
690
  }, undefined>, v.ReadonlyAction<{
672
- type: "ref";
691
+ type: "parameter";
673
692
  id: string;
674
693
  name: string;
675
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
676
- type: "ref";
694
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | Readonly<{
695
+ type: "parameter";
677
696
  id: string;
678
697
  name: string;
679
- }>, {
680
- readonly refable: 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)[])[]>]>;
698
+ }> | import("../..").BuilderParameter<string>, {
699
+ readonly paramable: 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)[])[]>]>;
681
700
  }>]>, undefined>;
682
701
  }, undefined>, v.MetadataAction<{
683
702
  name: string;
684
703
  payload: unknown;
685
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
686
- type: "ref";
704
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
705
+ type: "parameter";
687
706
  id: string;
688
707
  name: string;
689
- }> | undefined;
708
+ }> | import("../..").BuilderParameter<string> | undefined;
690
709
  }, {
691
710
  readonly serialisable: typeof import("..").BuilderOption;
692
711
  readonly instance: v.InstanceSchema<typeof import("..").BuilderOption, undefined>;
693
712
  }>, v.ReadonlyAction<{
694
713
  name: string;
695
714
  payload: unknown;
696
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
697
- type: "ref";
715
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
716
+ type: "parameter";
698
717
  id: string;
699
718
  name: string;
700
- }> | undefined;
719
+ }> | import("../..").BuilderParameter<string> | undefined;
701
720
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
702
721
  name: string;
703
722
  payload: unknown;
704
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
705
- type: "ref";
723
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
724
+ type: "parameter";
706
725
  id: string;
707
726
  name: string;
708
- }> | undefined;
727
+ }> | import("../..").BuilderParameter<string> | undefined;
709
728
  }>[]>]>;
710
729
  readonly components: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
711
730
  readonly name: v.StringSchema<undefined>;
712
731
  readonly payload: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
713
- readonly type: v.LiteralSchema<"ref", undefined>;
732
+ readonly type: v.LiteralSchema<"parameter", undefined>;
714
733
  readonly id: v.StringSchema<undefined>;
715
734
  readonly name: v.StringSchema<undefined>;
716
735
  }, undefined>, v.ReadonlyAction<{
717
- type: "ref";
736
+ type: "parameter";
718
737
  id: string;
719
738
  name: string;
720
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
739
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
721
740
  readonly expectations: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
722
- readonly type: v.LiteralSchema<"ref", undefined>;
741
+ readonly type: v.LiteralSchema<"parameter", undefined>;
723
742
  readonly id: v.StringSchema<undefined>;
724
743
  readonly name: v.StringSchema<undefined>;
725
744
  }, undefined>, v.ReadonlyAction<{
726
- type: "ref";
745
+ type: "parameter";
727
746
  id: string;
728
747
  name: string;
729
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
748
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
730
749
  readonly name: v.StringSchema<undefined>;
731
750
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
732
751
  }, undefined>, v.MetadataAction<{
@@ -741,15 +760,15 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
741
760
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
742
761
  name: string;
743
762
  kind: "option" | "component" | "collection" | "detail";
744
- }>[]>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
745
- type: "ref";
763
+ }>[]>]>], undefined>, v.MetadataAction<Readonly<{
764
+ type: "parameter";
746
765
  id: string;
747
766
  name: string;
748
- }> | readonly Readonly<{
767
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
749
768
  name: string;
750
769
  kind: "option" | "component" | "collection" | "detail";
751
770
  }>[], {
752
- readonly refable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
771
+ readonly paramable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
753
772
  readonly name: v.StringSchema<undefined>;
754
773
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
755
774
  }, undefined>, v.MetadataAction<{
@@ -767,11 +786,11 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
767
786
  }>[]>]>;
768
787
  }>]>;
769
788
  }, undefined>, v.MetadataAction<{
770
- expectations: import("../..").BuilderRef | Readonly<{
771
- type: "ref";
789
+ expectations: Readonly<{
790
+ type: "parameter";
772
791
  id: string;
773
792
  name: string;
774
- }> | readonly Readonly<{
793
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
775
794
  name: string;
776
795
  kind: "option" | "component" | "collection" | "detail";
777
796
  }>[];
@@ -779,25 +798,25 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
779
798
  readonly serialisable: typeof import("..").BuilderComponentDetails;
780
799
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponentDetails, undefined>;
781
800
  }>, v.ReadonlyAction<{
782
- expectations: import("../..").BuilderRef | Readonly<{
783
- type: "ref";
801
+ expectations: Readonly<{
802
+ type: "parameter";
784
803
  id: string;
785
804
  name: string;
786
- }> | readonly Readonly<{
805
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
787
806
  name: string;
788
807
  kind: "option" | "component" | "collection" | "detail";
789
808
  }>[];
790
809
  }>]>, v.GenericSchema], undefined>], undefined>, v.MetadataAction<unknown, {
791
- readonly refable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
810
+ readonly paramable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
792
811
  readonly expectations: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
793
- readonly type: v.LiteralSchema<"ref", undefined>;
812
+ readonly type: v.LiteralSchema<"parameter", undefined>;
794
813
  readonly id: v.StringSchema<undefined>;
795
814
  readonly name: v.StringSchema<undefined>;
796
815
  }, undefined>, v.ReadonlyAction<{
797
- type: "ref";
816
+ type: "parameter";
798
817
  id: string;
799
818
  name: string;
800
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
819
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
801
820
  readonly name: v.StringSchema<undefined>;
802
821
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
803
822
  }, undefined>, v.MetadataAction<{
@@ -812,15 +831,15 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
812
831
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
813
832
  name: string;
814
833
  kind: "option" | "component" | "collection" | "detail";
815
- }>[]>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
816
- type: "ref";
834
+ }>[]>]>], undefined>, v.MetadataAction<Readonly<{
835
+ type: "parameter";
817
836
  id: string;
818
837
  name: string;
819
- }> | readonly Readonly<{
838
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
820
839
  name: string;
821
840
  kind: "option" | "component" | "collection" | "detail";
822
841
  }>[], {
823
- readonly refable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
842
+ readonly paramable: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
824
843
  readonly name: v.StringSchema<undefined>;
825
844
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
826
845
  }, undefined>, v.MetadataAction<{
@@ -838,11 +857,11 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
838
857
  }>[]>]>;
839
858
  }>]>;
840
859
  }, undefined>, v.MetadataAction<{
841
- expectations: import("../..").BuilderRef | Readonly<{
842
- type: "ref";
860
+ expectations: Readonly<{
861
+ type: "parameter";
843
862
  id: string;
844
863
  name: string;
845
- }> | readonly Readonly<{
864
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
846
865
  name: string;
847
866
  kind: "option" | "component" | "collection" | "detail";
848
867
  }>[];
@@ -850,58 +869,58 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
850
869
  readonly serialisable: typeof import("..").BuilderComponentDetails;
851
870
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponentDetails, undefined>;
852
871
  }>, v.ReadonlyAction<{
853
- expectations: import("../..").BuilderRef | Readonly<{
854
- type: "ref";
872
+ expectations: Readonly<{
873
+ type: "parameter";
855
874
  id: string;
856
875
  name: string;
857
- }> | readonly Readonly<{
876
+ }> | import("../..").BuilderParameter<string> | readonly Readonly<{
858
877
  name: string;
859
878
  kind: "option" | "component" | "collection" | "detail";
860
879
  }>[];
861
880
  }>]>, v.GenericSchema], undefined>;
862
881
  }>]>;
863
882
  readonly gatePaths: v.OptionalSchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
864
- readonly type: v.LiteralSchema<"ref", undefined>;
883
+ readonly type: v.LiteralSchema<"parameter", undefined>;
865
884
  readonly id: v.StringSchema<undefined>;
866
885
  readonly name: v.StringSchema<undefined>;
867
886
  }, undefined>, v.ReadonlyAction<{
868
- type: "ref";
887
+ type: "parameter";
869
888
  id: string;
870
889
  name: string;
871
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
872
- type: "ref";
890
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | Readonly<{
891
+ type: "parameter";
873
892
  id: string;
874
893
  name: string;
875
- }>, {
876
- readonly refable: 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)[])[]>]>;
894
+ }> | import("../..").BuilderParameter<string>, {
895
+ readonly paramable: 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)[])[]>]>;
877
896
  }>]>, undefined>;
878
897
  }, undefined>, v.MetadataAction<{
879
898
  name: string;
880
899
  payload: unknown;
881
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
882
- type: "ref";
900
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
901
+ type: "parameter";
883
902
  id: string;
884
903
  name: string;
885
- }> | undefined;
904
+ }> | import("../..").BuilderParameter<string> | undefined;
886
905
  }, {
887
906
  readonly serialisable: typeof import("..").BuilderComponent;
888
907
  readonly instance: v.InstanceSchema<typeof import("..").BuilderComponent, undefined>;
889
908
  }>, v.ReadonlyAction<{
890
909
  name: string;
891
910
  payload: unknown;
892
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
893
- type: "ref";
911
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
912
+ type: "parameter";
894
913
  id: string;
895
914
  name: string;
896
- }> | undefined;
915
+ }> | import("../..").BuilderParameter<string> | undefined;
897
916
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
898
917
  name: string;
899
918
  payload: unknown;
900
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
901
- type: "ref";
919
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
920
+ type: "parameter";
902
921
  id: string;
903
922
  name: string;
904
- }> | undefined;
923
+ }> | import("../..").BuilderParameter<string> | undefined;
905
924
  }>[]>]>;
906
925
  readonly collections: v.SchemaWithPipe<readonly [v.ArraySchema<v.GenericSchema<import("..").BuilderCollectionSerialised>, undefined>, v.ReadonlyAction<import("..").BuilderCollectionSerialised[]>]>;
907
926
  readonly expectations: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
@@ -920,489 +939,119 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
920
939
  name: string;
921
940
  kind: "option" | "component" | "collection" | "detail";
922
941
  }>[]>]>;
942
+ readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
943
+ readonly parameter: v.StringSchema<undefined>;
944
+ readonly id: v.StringSchema<undefined>;
945
+ }, undefined>, v.ReadonlyAction<{
946
+ parameter: string;
947
+ id: string;
948
+ }>]>, undefined>, v.ReadonlyAction<Readonly<{
949
+ parameter: string;
950
+ id: string;
951
+ }>[]>]>;
923
952
  }, undefined>, v.MetadataAction<{
924
- readonly references: readonly Readonly<{
925
- type: "ref";
953
+ readonly parameters: readonly Readonly<{
954
+ type: "parameter";
926
955
  id: string;
927
956
  name: string;
928
957
  }>[];
929
958
  readonly options: readonly Readonly<{
930
959
  name: string;
931
960
  payload: unknown;
932
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
933
- type: "ref";
961
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
962
+ type: "parameter";
934
963
  id: string;
935
964
  name: string;
936
- }> | undefined;
965
+ }> | import("../..").BuilderParameter<string> | undefined;
937
966
  }>[];
938
967
  readonly components: readonly Readonly<{
939
968
  name: string;
940
969
  payload: unknown;
941
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
942
- type: "ref";
970
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
971
+ type: "parameter";
943
972
  id: string;
944
973
  name: string;
945
- }> | undefined;
974
+ }> | import("../..").BuilderParameter<string> | undefined;
946
975
  }>[];
947
976
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
948
977
  readonly expectations: readonly Readonly<{
949
978
  name: string;
950
979
  kind: "option" | "component" | "collection" | "detail";
951
980
  }>[];
981
+ readonly references: readonly Readonly<{
982
+ parameter: string;
983
+ id: string;
984
+ }>[];
952
985
  }, {
953
986
  readonly serialisable: typeof Builder;
954
987
  readonly instance: v.InstanceSchema<typeof Builder, undefined>;
955
988
  }>, v.ReadonlyAction<{
956
- readonly references: readonly Readonly<{
957
- type: "ref";
989
+ readonly parameters: readonly Readonly<{
990
+ type: "parameter";
958
991
  id: string;
959
992
  name: string;
960
993
  }>[];
961
994
  readonly options: readonly Readonly<{
962
995
  name: string;
963
996
  payload: unknown;
964
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
965
- type: "ref";
997
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
998
+ type: "parameter";
966
999
  id: string;
967
1000
  name: string;
968
- }> | undefined;
1001
+ }> | import("../..").BuilderParameter<string> | undefined;
969
1002
  }>[];
970
1003
  readonly components: readonly Readonly<{
971
1004
  name: string;
972
1005
  payload: unknown;
973
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
974
- type: "ref";
1006
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
1007
+ type: "parameter";
975
1008
  id: string;
976
1009
  name: string;
977
- }> | undefined;
1010
+ }> | import("../..").BuilderParameter<string> | undefined;
978
1011
  }>[];
979
1012
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
980
1013
  readonly expectations: readonly Readonly<{
981
1014
  name: string;
982
1015
  kind: "option" | "component" | "collection" | "detail";
983
1016
  }>[];
1017
+ readonly references: readonly Readonly<{
1018
+ parameter: string;
1019
+ id: string;
1020
+ }>[];
984
1021
  }>]>>;
985
1022
  }>]>;
986
- readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
987
- readonly type: v.LiteralSchema<"ref", undefined>;
1023
+ readonly parameters: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1024
+ readonly type: v.LiteralSchema<"parameter", undefined>;
988
1025
  readonly id: v.StringSchema<undefined>;
989
1026
  readonly name: v.StringSchema<undefined>;
990
1027
  }, undefined>, v.ReadonlyAction<{
991
- type: "ref";
1028
+ type: "parameter";
992
1029
  id: string;
993
1030
  name: string;
994
1031
  }>]>, undefined>, v.ReadonlyAction<Readonly<{
995
- type: "ref";
1032
+ type: "parameter";
996
1033
  id: string;
997
1034
  name: string;
998
1035
  }>[]>]>;
999
1036
  readonly items: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1000
- readonly type: v.LiteralSchema<"ref", undefined>;
1037
+ readonly type: v.LiteralSchema<"parameter", undefined>;
1001
1038
  readonly id: v.StringSchema<undefined>;
1002
1039
  readonly name: v.StringSchema<undefined>;
1003
1040
  }, undefined>, v.ReadonlyAction<{
1004
- type: "ref";
1041
+ type: "parameter";
1005
1042
  id: string;
1006
1043
  name: string;
1007
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1008
- readonly type: v.LiteralSchema<"page", undefined>;
1009
- readonly label: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1010
- readonly type: v.LiteralSchema<"ref", undefined>;
1011
- readonly id: v.StringSchema<undefined>;
1012
- readonly name: v.StringSchema<undefined>;
1013
- }, undefined>, v.ReadonlyAction<{
1014
- type: "ref";
1015
- id: string;
1016
- name: string;
1017
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1018
- readonly label: v.StringSchema<undefined>;
1019
- }, undefined>, v.MetadataAction<{
1020
- label: string;
1021
- }, {
1022
- readonly serialisable: typeof BuilderUILabel;
1023
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1024
- }>, v.ReadonlyAction<{
1025
- label: string;
1026
- }>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
1027
- type: "ref";
1028
- id: string;
1029
- name: string;
1030
- }> | Readonly<{
1031
- label: string;
1032
- }>, {
1033
- readonly refable: v.SchemaWithPipe<readonly [v.ObjectSchema<{
1034
- readonly label: v.StringSchema<undefined>;
1035
- }, undefined>, v.MetadataAction<{
1036
- label: string;
1037
- }, {
1038
- readonly serialisable: typeof BuilderUILabel;
1039
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1040
- }>, v.ReadonlyAction<{
1041
- label: string;
1042
- }>]>;
1043
- }>]>;
1044
- readonly paths: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1045
- readonly type: v.LiteralSchema<"ref", undefined>;
1046
- readonly id: v.StringSchema<undefined>;
1047
- readonly name: v.StringSchema<undefined>;
1048
- }, undefined>, v.ReadonlyAction<{
1049
- type: "ref";
1050
- id: string;
1051
- name: string;
1052
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1053
- type: "ref";
1054
- id: string;
1055
- name: string;
1056
- }>, {
1057
- readonly refable: 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)[])[]>]>;
1058
- }>]>;
1059
- }, undefined>, v.MetadataAction<{
1060
- type: "page";
1061
- label: import("../..").BuilderRef | Readonly<{
1062
- type: "ref";
1063
- id: string;
1064
- name: string;
1065
- }> | Readonly<{
1066
- label: string;
1067
- }>;
1068
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1069
- type: "ref";
1070
- id: string;
1071
- name: string;
1072
- }>;
1073
- }, {
1074
- readonly serialisable: typeof BuilderUIPage;
1075
- readonly instance: v.InstanceSchema<typeof BuilderUIPage, undefined>;
1076
- }>, v.ReadonlyAction<{
1077
- type: "page";
1078
- label: import("../..").BuilderRef | Readonly<{
1079
- type: "ref";
1080
- id: string;
1081
- name: string;
1082
- }> | Readonly<{
1083
- label: string;
1084
- }>;
1085
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1086
- type: "ref";
1087
- id: string;
1088
- name: string;
1089
- }>;
1090
- }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1091
- readonly type: v.LiteralSchema<"describe", undefined>;
1092
- readonly label: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1093
- readonly type: v.LiteralSchema<"ref", undefined>;
1094
- readonly id: v.StringSchema<undefined>;
1095
- readonly name: v.StringSchema<undefined>;
1096
- }, undefined>, v.ReadonlyAction<{
1097
- type: "ref";
1098
- id: string;
1099
- name: string;
1100
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1101
- readonly label: v.StringSchema<undefined>;
1102
- }, undefined>, v.MetadataAction<{
1103
- label: string;
1104
- }, {
1105
- readonly serialisable: typeof BuilderUILabel;
1106
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1107
- }>, v.ReadonlyAction<{
1108
- label: string;
1109
- }>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
1110
- type: "ref";
1111
- id: string;
1112
- name: string;
1113
- }> | Readonly<{
1114
- label: string;
1115
- }>, {
1116
- readonly refable: v.SchemaWithPipe<readonly [v.ObjectSchema<{
1117
- readonly label: v.StringSchema<undefined>;
1118
- }, undefined>, v.MetadataAction<{
1119
- label: string;
1120
- }, {
1121
- readonly serialisable: typeof BuilderUILabel;
1122
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1123
- }>, v.ReadonlyAction<{
1124
- label: string;
1125
- }>]>;
1126
- }>]>;
1127
- readonly paths: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1128
- readonly type: v.LiteralSchema<"ref", undefined>;
1129
- readonly id: v.StringSchema<undefined>;
1130
- readonly name: v.StringSchema<undefined>;
1131
- }, undefined>, v.ReadonlyAction<{
1132
- type: "ref";
1133
- id: string;
1134
- name: string;
1135
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1136
- type: "ref";
1137
- id: string;
1138
- name: string;
1139
- }>, {
1140
- readonly refable: 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)[])[]>]>;
1141
- }>]>;
1142
- }, undefined>, v.MetadataAction<{
1143
- type: "describe";
1144
- label: import("../..").BuilderRef | Readonly<{
1145
- type: "ref";
1146
- id: string;
1147
- name: string;
1148
- }> | Readonly<{
1149
- label: string;
1150
- }>;
1151
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1152
- type: "ref";
1153
- id: string;
1154
- name: string;
1155
- }>;
1156
- }, {
1157
- readonly serialisable: typeof BuilderUIDescribe;
1158
- readonly instance: v.InstanceSchema<typeof BuilderUIDescribe, undefined>;
1159
- }>, v.ReadonlyAction<{
1160
- type: "describe";
1161
- label: import("../..").BuilderRef | Readonly<{
1162
- type: "ref";
1163
- id: string;
1164
- name: string;
1165
- }> | Readonly<{
1166
- label: string;
1167
- }>;
1168
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1169
- type: "ref";
1170
- id: string;
1171
- name: string;
1172
- }>;
1173
- }>]>, v.GenericSchema<import("./pages").BuilderUIPagesSerialised>], undefined>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
1174
- type: "ref";
1044
+ }>]>, v.InstanceSchema<typeof import("../..").BuilderParameter, undefined>, v.GenericSchema<import("./pages").BuilderUIItemSerialised>], undefined>, v.MetadataAction<Readonly<{
1045
+ type: "parameter";
1175
1046
  id: string;
1176
1047
  name: string;
1177
- }> | Readonly<{
1178
- type: "describe";
1179
- label: import("../..").BuilderRef | Readonly<{
1180
- type: "ref";
1181
- id: string;
1182
- name: string;
1183
- }> | Readonly<{
1184
- label: string;
1185
- }>;
1186
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1187
- type: "ref";
1188
- id: string;
1189
- name: string;
1190
- }>;
1191
- }> | Readonly<{
1192
- type: "page";
1193
- label: import("../..").BuilderRef | Readonly<{
1194
- type: "ref";
1195
- id: string;
1196
- name: string;
1197
- }> | Readonly<{
1198
- label: string;
1199
- }>;
1200
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1201
- type: "ref";
1202
- id: string;
1203
- name: string;
1204
- }>;
1205
- }> | import("./pages").BuilderUIPagesSerialised, {
1206
- readonly refable: v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1207
- readonly type: v.LiteralSchema<"page", undefined>;
1208
- readonly label: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1209
- readonly type: v.LiteralSchema<"ref", undefined>;
1210
- readonly id: v.StringSchema<undefined>;
1211
- readonly name: v.StringSchema<undefined>;
1212
- }, undefined>, v.ReadonlyAction<{
1213
- type: "ref";
1214
- id: string;
1215
- name: string;
1216
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1217
- readonly label: v.StringSchema<undefined>;
1218
- }, undefined>, v.MetadataAction<{
1219
- label: string;
1220
- }, {
1221
- readonly serialisable: typeof BuilderUILabel;
1222
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1223
- }>, v.ReadonlyAction<{
1224
- label: string;
1225
- }>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
1226
- type: "ref";
1227
- id: string;
1228
- name: string;
1229
- }> | Readonly<{
1230
- label: string;
1231
- }>, {
1232
- readonly refable: v.SchemaWithPipe<readonly [v.ObjectSchema<{
1233
- readonly label: v.StringSchema<undefined>;
1234
- }, undefined>, v.MetadataAction<{
1235
- label: string;
1236
- }, {
1237
- readonly serialisable: typeof BuilderUILabel;
1238
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1239
- }>, v.ReadonlyAction<{
1240
- label: string;
1241
- }>]>;
1242
- }>]>;
1243
- readonly paths: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1244
- readonly type: v.LiteralSchema<"ref", undefined>;
1245
- readonly id: v.StringSchema<undefined>;
1246
- readonly name: v.StringSchema<undefined>;
1247
- }, undefined>, v.ReadonlyAction<{
1248
- type: "ref";
1249
- id: string;
1250
- name: string;
1251
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1252
- type: "ref";
1253
- id: string;
1254
- name: string;
1255
- }>, {
1256
- readonly refable: 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)[])[]>]>;
1257
- }>]>;
1258
- }, undefined>, v.MetadataAction<{
1259
- type: "page";
1260
- label: import("../..").BuilderRef | Readonly<{
1261
- type: "ref";
1262
- id: string;
1263
- name: string;
1264
- }> | Readonly<{
1265
- label: string;
1266
- }>;
1267
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1268
- type: "ref";
1269
- id: string;
1270
- name: string;
1271
- }>;
1272
- }, {
1273
- readonly serialisable: typeof BuilderUIPage;
1274
- readonly instance: v.InstanceSchema<typeof BuilderUIPage, undefined>;
1275
- }>, v.ReadonlyAction<{
1276
- type: "page";
1277
- label: import("../..").BuilderRef | Readonly<{
1278
- type: "ref";
1279
- id: string;
1280
- name: string;
1281
- }> | Readonly<{
1282
- label: string;
1283
- }>;
1284
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1285
- type: "ref";
1286
- id: string;
1287
- name: string;
1288
- }>;
1289
- }>]>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1290
- readonly type: v.LiteralSchema<"describe", undefined>;
1291
- readonly label: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1292
- readonly type: v.LiteralSchema<"ref", undefined>;
1293
- readonly id: v.StringSchema<undefined>;
1294
- readonly name: v.StringSchema<undefined>;
1295
- }, undefined>, v.ReadonlyAction<{
1296
- type: "ref";
1297
- id: string;
1298
- name: string;
1299
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, v.SchemaWithPipe<readonly [v.ObjectSchema<{
1300
- readonly label: v.StringSchema<undefined>;
1301
- }, undefined>, v.MetadataAction<{
1302
- label: string;
1303
- }, {
1304
- readonly serialisable: typeof BuilderUILabel;
1305
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1306
- }>, v.ReadonlyAction<{
1307
- label: string;
1308
- }>]>], undefined>, v.MetadataAction<import("../..").BuilderRef | Readonly<{
1309
- type: "ref";
1310
- id: string;
1311
- name: string;
1312
- }> | Readonly<{
1313
- label: string;
1314
- }>, {
1315
- readonly refable: v.SchemaWithPipe<readonly [v.ObjectSchema<{
1316
- readonly label: v.StringSchema<undefined>;
1317
- }, undefined>, v.MetadataAction<{
1318
- label: string;
1319
- }, {
1320
- readonly serialisable: typeof BuilderUILabel;
1321
- readonly instance: v.InstanceSchema<typeof BuilderUILabel, undefined>;
1322
- }>, v.ReadonlyAction<{
1323
- label: string;
1324
- }>]>;
1325
- }>]>;
1326
- readonly paths: v.SchemaWithPipe<readonly [v.UnionSchema<[v.SchemaWithPipe<readonly [v.ObjectSchema<{
1327
- readonly type: v.LiteralSchema<"ref", undefined>;
1328
- readonly id: v.StringSchema<undefined>;
1329
- readonly name: v.StringSchema<undefined>;
1330
- }, undefined>, v.ReadonlyAction<{
1331
- type: "ref";
1332
- id: string;
1333
- name: string;
1334
- }>]>, v.InstanceSchema<typeof import("../..").BuilderRef, undefined>, 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)[])[]>]>], undefined>, v.MetadataAction<readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1335
- type: "ref";
1336
- id: string;
1337
- name: string;
1338
- }>, {
1339
- readonly refable: 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)[])[]>]>;
1340
- }>]>;
1341
- }, undefined>, v.MetadataAction<{
1342
- type: "describe";
1343
- label: import("../..").BuilderRef | Readonly<{
1344
- type: "ref";
1345
- id: string;
1346
- name: string;
1347
- }> | Readonly<{
1348
- label: string;
1349
- }>;
1350
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1351
- type: "ref";
1352
- id: string;
1353
- name: string;
1354
- }>;
1355
- }, {
1356
- readonly serialisable: typeof BuilderUIDescribe;
1357
- readonly instance: v.InstanceSchema<typeof BuilderUIDescribe, undefined>;
1358
- }>, v.ReadonlyAction<{
1359
- type: "describe";
1360
- label: import("../..").BuilderRef | Readonly<{
1361
- type: "ref";
1362
- id: string;
1363
- name: string;
1364
- }> | Readonly<{
1365
- label: string;
1366
- }>;
1367
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1368
- type: "ref";
1369
- id: string;
1370
- name: string;
1371
- }>;
1372
- }>]>, v.GenericSchema<import("./pages").BuilderUIPagesSerialised>], undefined>;
1373
- }>]>, undefined>, v.ReadonlyAction<(import("../..").BuilderRef | Readonly<{
1374
- type: "ref";
1048
+ }> | import("../..").BuilderParameter<string> | import("./pages").BuilderUIItemSerialised, {
1049
+ readonly paramable: v.GenericSchema<import("./pages").BuilderUIItemSerialised>;
1050
+ }>]>, undefined>, v.ReadonlyAction<(Readonly<{
1051
+ type: "parameter";
1375
1052
  id: string;
1376
1053
  name: string;
1377
- }> | Readonly<{
1378
- type: "describe";
1379
- label: import("../..").BuilderRef | Readonly<{
1380
- type: "ref";
1381
- id: string;
1382
- name: string;
1383
- }> | Readonly<{
1384
- label: string;
1385
- }>;
1386
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1387
- type: "ref";
1388
- id: string;
1389
- name: string;
1390
- }>;
1391
- }> | Readonly<{
1392
- type: "page";
1393
- label: import("../..").BuilderRef | Readonly<{
1394
- type: "ref";
1395
- id: string;
1396
- name: string;
1397
- }> | Readonly<{
1398
- label: string;
1399
- }>;
1400
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1401
- type: "ref";
1402
- id: string;
1403
- name: string;
1404
- }>;
1405
- }> | import("./pages").BuilderUIPagesSerialised)[]>]>;
1054
+ }> | import("../..").BuilderParameter<string> | import("./pages").BuilderUIItemSerialised)[]>]>;
1406
1055
  readonly expectations: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1407
1056
  readonly name: v.StringSchema<undefined>;
1408
1057
  readonly kind: v.PicklistSchema<["option", "component", "collection", "detail"], undefined>;
@@ -1419,164 +1068,134 @@ export declare const BuilderUISerialisedSchema: v.SchemaWithPipe<readonly [v.Obj
1419
1068
  name: string;
1420
1069
  kind: "option" | "component" | "collection" | "detail";
1421
1070
  }>[]>]>;
1071
+ readonly references: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1072
+ readonly parameter: v.StringSchema<undefined>;
1073
+ readonly id: v.StringSchema<undefined>;
1074
+ }, undefined>, v.ReadonlyAction<{
1075
+ parameter: string;
1076
+ id: string;
1077
+ }>]>, undefined>, v.ReadonlyAction<Readonly<{
1078
+ parameter: string;
1079
+ id: string;
1080
+ }>[]>]>;
1422
1081
  }, undefined>, v.MetadataAction<{
1423
- builder: import("../..").BuilderRef | Readonly<{
1424
- type: "ref";
1082
+ builder: Readonly<{
1083
+ type: "parameter";
1425
1084
  id: string;
1426
1085
  name: string;
1427
- }> | Readonly<{
1428
- readonly references: readonly Readonly<{
1429
- type: "ref";
1086
+ }> | import("../..").BuilderParameter<string> | Readonly<{
1087
+ readonly parameters: readonly Readonly<{
1088
+ type: "parameter";
1430
1089
  id: string;
1431
1090
  name: string;
1432
1091
  }>[];
1433
1092
  readonly options: readonly Readonly<{
1434
1093
  name: string;
1435
1094
  payload: unknown;
1436
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1437
- type: "ref";
1095
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
1096
+ type: "parameter";
1438
1097
  id: string;
1439
1098
  name: string;
1440
- }> | undefined;
1099
+ }> | import("../..").BuilderParameter<string> | undefined;
1441
1100
  }>[];
1442
1101
  readonly components: readonly Readonly<{
1443
1102
  name: string;
1444
1103
  payload: unknown;
1445
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1446
- type: "ref";
1104
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
1105
+ type: "parameter";
1447
1106
  id: string;
1448
1107
  name: string;
1449
- }> | undefined;
1108
+ }> | import("../..").BuilderParameter<string> | undefined;
1450
1109
  }>[];
1451
1110
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
1452
1111
  readonly expectations: readonly Readonly<{
1453
1112
  name: string;
1454
1113
  kind: "option" | "component" | "collection" | "detail";
1455
1114
  }>[];
1115
+ readonly references: readonly Readonly<{
1116
+ parameter: string;
1117
+ id: string;
1118
+ }>[];
1456
1119
  }>;
1457
- readonly references: readonly Readonly<{
1458
- type: "ref";
1120
+ readonly parameters: readonly Readonly<{
1121
+ type: "parameter";
1459
1122
  id: string;
1460
1123
  name: string;
1461
1124
  }>[];
1462
- readonly items: readonly (import("../..").BuilderRef | Readonly<{
1463
- type: "ref";
1125
+ readonly items: readonly (Readonly<{
1126
+ type: "parameter";
1464
1127
  id: string;
1465
1128
  name: string;
1466
- }> | Readonly<{
1467
- type: "describe";
1468
- label: import("../..").BuilderRef | Readonly<{
1469
- type: "ref";
1470
- id: string;
1471
- name: string;
1472
- }> | Readonly<{
1473
- label: string;
1474
- }>;
1475
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1476
- type: "ref";
1477
- id: string;
1478
- name: string;
1479
- }>;
1480
- }> | Readonly<{
1481
- type: "page";
1482
- label: import("../..").BuilderRef | Readonly<{
1483
- type: "ref";
1484
- id: string;
1485
- name: string;
1486
- }> | Readonly<{
1487
- label: string;
1488
- }>;
1489
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1490
- type: "ref";
1491
- id: string;
1492
- name: string;
1493
- }>;
1494
- }> | import("./pages").BuilderUIPagesSerialised)[];
1129
+ }> | import("../..").BuilderParameter<string> | import("./pages").BuilderUIItemSerialised)[];
1495
1130
  readonly expectations: readonly Readonly<{
1496
1131
  name: string;
1497
1132
  kind: "option" | "component" | "collection" | "detail";
1498
1133
  }>[];
1134
+ readonly references: readonly Readonly<{
1135
+ parameter: string;
1136
+ id: string;
1137
+ }>[];
1499
1138
  }, {
1500
1139
  readonly serialisable: typeof BuilderUI;
1501
1140
  readonly instance: v.InstanceSchema<typeof BuilderUI, undefined>;
1502
1141
  }>, v.ReadonlyAction<{
1503
- builder: import("../..").BuilderRef | Readonly<{
1504
- type: "ref";
1142
+ builder: Readonly<{
1143
+ type: "parameter";
1505
1144
  id: string;
1506
1145
  name: string;
1507
- }> | Readonly<{
1508
- readonly references: readonly Readonly<{
1509
- type: "ref";
1146
+ }> | import("../..").BuilderParameter<string> | Readonly<{
1147
+ readonly parameters: readonly Readonly<{
1148
+ type: "parameter";
1510
1149
  id: string;
1511
1150
  name: string;
1512
1151
  }>[];
1513
1152
  readonly options: readonly Readonly<{
1514
1153
  name: string;
1515
1154
  payload: unknown;
1516
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1517
- type: "ref";
1155
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
1156
+ type: "parameter";
1518
1157
  id: string;
1519
1158
  name: string;
1520
- }> | undefined;
1159
+ }> | import("../..").BuilderParameter<string> | undefined;
1521
1160
  }>[];
1522
1161
  readonly components: readonly Readonly<{
1523
1162
  name: string;
1524
1163
  payload: unknown;
1525
- gatePaths?: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1526
- type: "ref";
1164
+ gatePaths?: readonly (readonly (string | number)[])[] | Readonly<{
1165
+ type: "parameter";
1527
1166
  id: string;
1528
1167
  name: string;
1529
- }> | undefined;
1168
+ }> | import("../..").BuilderParameter<string> | undefined;
1530
1169
  }>[];
1531
1170
  readonly collections: readonly import("..").BuilderCollectionSerialised[];
1532
1171
  readonly expectations: readonly Readonly<{
1533
1172
  name: string;
1534
1173
  kind: "option" | "component" | "collection" | "detail";
1535
1174
  }>[];
1175
+ readonly references: readonly Readonly<{
1176
+ parameter: string;
1177
+ id: string;
1178
+ }>[];
1536
1179
  }>;
1537
- readonly references: readonly Readonly<{
1538
- type: "ref";
1180
+ readonly parameters: readonly Readonly<{
1181
+ type: "parameter";
1539
1182
  id: string;
1540
1183
  name: string;
1541
1184
  }>[];
1542
- readonly items: readonly (import("../..").BuilderRef | Readonly<{
1543
- type: "ref";
1185
+ readonly items: readonly (Readonly<{
1186
+ type: "parameter";
1544
1187
  id: string;
1545
1188
  name: string;
1546
- }> | Readonly<{
1547
- type: "describe";
1548
- label: import("../..").BuilderRef | Readonly<{
1549
- type: "ref";
1550
- id: string;
1551
- name: string;
1552
- }> | Readonly<{
1553
- label: string;
1554
- }>;
1555
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1556
- type: "ref";
1557
- id: string;
1558
- name: string;
1559
- }>;
1560
- }> | Readonly<{
1561
- type: "page";
1562
- label: import("../..").BuilderRef | Readonly<{
1563
- type: "ref";
1564
- id: string;
1565
- name: string;
1566
- }> | Readonly<{
1567
- label: string;
1568
- }>;
1569
- paths: readonly (readonly (string | number)[])[] | import("../..").BuilderRef | Readonly<{
1570
- type: "ref";
1571
- id: string;
1572
- name: string;
1573
- }>;
1574
- }> | import("./pages").BuilderUIPagesSerialised)[];
1189
+ }> | import("../..").BuilderParameter<string> | import("./pages").BuilderUIItemSerialised)[];
1575
1190
  readonly expectations: readonly Readonly<{
1576
1191
  name: string;
1577
1192
  kind: "option" | "component" | "collection" | "detail";
1578
1193
  }>[];
1194
+ readonly references: readonly Readonly<{
1195
+ parameter: string;
1196
+ id: string;
1197
+ }>[];
1579
1198
  }>]>;
1580
1199
  export type BuilderUISerialised = v.InferOutput<typeof BuilderUISerialisedSchema>;
1581
- export type BuilderUIReference = Refable<BuilderUIGeneric>;
1582
- export type BuilderUIReferences = ReadonlyArray<BuilderUIReference>;
1200
+ export type BuilderUIPart = Paramable<BuilderUIGeneric>;
1201
+ export type BuilderUIParts = ReadonlyArray<BuilderUIPart>;