@skenion/contracts 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +7 -0
  2. package/dist/audioClock.d.ts +3 -0
  3. package/dist/audioClock.d.ts.map +1 -0
  4. package/dist/audioClock.js +41 -0
  5. package/dist/audioClock.js.map +1 -0
  6. package/dist/builtins.generated.d.ts +2689 -0
  7. package/dist/builtins.generated.d.ts.map +1 -0
  8. package/dist/builtins.generated.js +6031 -0
  9. package/dist/builtins.generated.js.map +1 -0
  10. package/dist/clock.d.ts +39 -0
  11. package/dist/clock.d.ts.map +1 -0
  12. package/dist/clock.js +157 -0
  13. package/dist/clock.js.map +1 -0
  14. package/dist/conversion.d.ts +158 -0
  15. package/dist/conversion.d.ts.map +1 -0
  16. package/dist/conversion.js +199 -0
  17. package/dist/conversion.js.map +1 -0
  18. package/dist/generated/schemas.d.ts +2189 -0
  19. package/dist/generated/schemas.d.ts.map +1 -0
  20. package/dist/generated/schemas.js +2839 -0
  21. package/dist/generated/schemas.js.map +1 -0
  22. package/dist/index.d.ts +15 -0
  23. package/dist/index.d.ts.map +1 -0
  24. package/dist/index.js +12 -0
  25. package/dist/index.js.map +1 -0
  26. package/dist/objectText.d.ts +3 -0
  27. package/dist/objectText.d.ts.map +1 -0
  28. package/dist/objectText.js +292 -0
  29. package/dist/objectText.js.map +1 -0
  30. package/dist/patch.d.ts +7 -0
  31. package/dist/patch.d.ts.map +1 -0
  32. package/dist/patch.js +296 -0
  33. package/dist/patch.js.map +1 -0
  34. package/dist/project.d.ts +3 -0
  35. package/dist/project.d.ts.map +1 -0
  36. package/dist/project.js +22 -0
  37. package/dist/project.js.map +1 -0
  38. package/dist/runtimeHttp.d.ts +23 -0
  39. package/dist/runtimeHttp.d.ts.map +1 -0
  40. package/dist/runtimeHttp.js +474 -0
  41. package/dist/runtimeHttp.js.map +1 -0
  42. package/dist/shaderInterface.d.ts +6 -0
  43. package/dist/shaderInterface.d.ts.map +1 -0
  44. package/dist/shaderInterface.js +262 -0
  45. package/dist/shaderInterface.js.map +1 -0
  46. package/dist/types.d.ts +1122 -0
  47. package/dist/types.d.ts.map +1 -0
  48. package/dist/types.js +2 -0
  49. package/dist/types.js.map +1 -0
  50. package/dist/validate.d.ts +16 -0
  51. package/dist/validate.d.ts.map +1 -0
  52. package/dist/validate.js +485 -0
  53. package/dist/validate.js.map +1 -0
  54. package/package.json +104 -0
@@ -0,0 +1,2189 @@
1
+ export declare const graphV01Schema: {
2
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
3
+ readonly $id: "https://skenion.dev/schemas/graph/v0.1/graph.schema.json";
4
+ readonly title: "Skenion Graph Document v0.1";
5
+ readonly type: "object";
6
+ readonly required: readonly ["schema", "schemaVersion", "id", "revision", "nodes", "edges"];
7
+ readonly properties: {
8
+ readonly schema: {
9
+ readonly const: "skenion.graph";
10
+ };
11
+ readonly schemaVersion: {
12
+ readonly const: "0.1.0";
13
+ };
14
+ readonly id: {
15
+ readonly type: "string";
16
+ readonly minLength: 1;
17
+ };
18
+ readonly revision: {
19
+ readonly type: "string";
20
+ readonly minLength: 1;
21
+ };
22
+ readonly nodes: {
23
+ readonly type: "array";
24
+ readonly items: {
25
+ readonly $ref: "#/$defs/node";
26
+ };
27
+ };
28
+ readonly edges: {
29
+ readonly type: "array";
30
+ readonly items: {
31
+ readonly $ref: "#/$defs/edge";
32
+ };
33
+ };
34
+ };
35
+ readonly additionalProperties: false;
36
+ readonly $defs: {
37
+ readonly node: {
38
+ readonly type: "object";
39
+ readonly required: readonly ["id", "kind", "kindVersion", "params", "ports"];
40
+ readonly properties: {
41
+ readonly id: {
42
+ readonly type: "string";
43
+ readonly minLength: 1;
44
+ };
45
+ readonly kind: {
46
+ readonly type: "string";
47
+ readonly minLength: 1;
48
+ };
49
+ readonly kindVersion: {
50
+ readonly type: "string";
51
+ readonly minLength: 1;
52
+ };
53
+ readonly params: {
54
+ readonly type: "object";
55
+ readonly additionalProperties: true;
56
+ };
57
+ readonly ports: {
58
+ readonly type: "array";
59
+ readonly items: {
60
+ readonly $ref: "#/$defs/port";
61
+ };
62
+ };
63
+ };
64
+ readonly additionalProperties: false;
65
+ };
66
+ readonly port: {
67
+ readonly type: "object";
68
+ readonly required: readonly ["id", "direction", "type"];
69
+ readonly properties: {
70
+ readonly id: {
71
+ readonly type: "string";
72
+ readonly minLength: 1;
73
+ };
74
+ readonly direction: {
75
+ readonly enum: readonly ["input", "output"];
76
+ };
77
+ readonly label: {
78
+ readonly type: "string";
79
+ };
80
+ readonly type: {
81
+ readonly $ref: "#/$defs/dataType";
82
+ };
83
+ readonly required: {
84
+ readonly type: "boolean";
85
+ };
86
+ readonly default: true;
87
+ readonly activation: {
88
+ readonly enum: readonly ["trigger", "latched"];
89
+ };
90
+ };
91
+ readonly additionalProperties: false;
92
+ };
93
+ readonly dataType: {
94
+ readonly type: "object";
95
+ readonly required: readonly ["flow", "dataKind"];
96
+ readonly properties: {
97
+ readonly flow: {
98
+ readonly enum: readonly ["value", "event", "signal", "stream", "resource"];
99
+ };
100
+ readonly dataKind: {
101
+ readonly type: "string";
102
+ readonly minLength: 1;
103
+ };
104
+ readonly unit: {
105
+ readonly type: "string";
106
+ };
107
+ readonly range: {
108
+ readonly type: "object";
109
+ readonly properties: {
110
+ readonly min: {
111
+ readonly type: "number";
112
+ };
113
+ readonly max: {
114
+ readonly type: "number";
115
+ };
116
+ readonly step: {
117
+ readonly type: "number";
118
+ readonly exclusiveMinimum: 0;
119
+ };
120
+ };
121
+ readonly additionalProperties: false;
122
+ };
123
+ readonly shape: {
124
+ readonly type: "array";
125
+ readonly items: {
126
+ readonly type: "integer";
127
+ readonly minimum: 1;
128
+ };
129
+ };
130
+ readonly channels: {
131
+ readonly type: "integer";
132
+ readonly minimum: 1;
133
+ };
134
+ readonly sampleRate: {
135
+ readonly type: "number";
136
+ readonly exclusiveMinimum: 0;
137
+ };
138
+ readonly format: {
139
+ readonly oneOf: readonly [{
140
+ readonly type: "string";
141
+ readonly minLength: 1;
142
+ }, {
143
+ readonly type: "array";
144
+ readonly items: {
145
+ readonly type: "string";
146
+ readonly minLength: 1;
147
+ };
148
+ }];
149
+ };
150
+ readonly colorSpace: {
151
+ readonly type: "string";
152
+ };
153
+ readonly frameRate: {
154
+ readonly type: "number";
155
+ readonly exclusiveMinimum: 0;
156
+ };
157
+ readonly alphaPolicy: {
158
+ readonly enum: readonly ["error", "white", "black", "luminance"];
159
+ };
160
+ readonly values: {
161
+ readonly type: "array";
162
+ readonly items: {
163
+ readonly oneOf: readonly [{
164
+ readonly type: "string";
165
+ }, {
166
+ readonly type: "number";
167
+ }, {
168
+ readonly type: "boolean";
169
+ }];
170
+ };
171
+ };
172
+ };
173
+ readonly additionalProperties: false;
174
+ };
175
+ readonly edge: {
176
+ readonly type: "object";
177
+ readonly required: readonly ["from", "to"];
178
+ readonly properties: {
179
+ readonly from: {
180
+ readonly $ref: "#/$defs/portRef";
181
+ };
182
+ readonly to: {
183
+ readonly $ref: "#/$defs/portRef";
184
+ };
185
+ };
186
+ readonly additionalProperties: false;
187
+ };
188
+ readonly portRef: {
189
+ readonly type: "object";
190
+ readonly required: readonly ["node", "port"];
191
+ readonly properties: {
192
+ readonly node: {
193
+ readonly type: "string";
194
+ readonly minLength: 1;
195
+ };
196
+ readonly port: {
197
+ readonly type: "string";
198
+ readonly minLength: 1;
199
+ };
200
+ };
201
+ readonly additionalProperties: false;
202
+ };
203
+ };
204
+ };
205
+ export declare const graphV02Schema: {
206
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
207
+ readonly $id: "https://skenion.dev/schemas/graph/v0.2/graph.schema.json";
208
+ readonly title: "Skenion Graph Document v0.2";
209
+ readonly type: "object";
210
+ readonly required: readonly ["schema", "schemaVersion", "id", "revision", "nodes", "edges"];
211
+ readonly properties: {
212
+ readonly schema: {
213
+ readonly const: "skenion.graph";
214
+ };
215
+ readonly schemaVersion: {
216
+ readonly const: "0.2.0";
217
+ };
218
+ readonly id: {
219
+ readonly type: "string";
220
+ readonly minLength: 1;
221
+ };
222
+ readonly revision: {
223
+ readonly type: "string";
224
+ readonly minLength: 1;
225
+ };
226
+ readonly nodes: {
227
+ readonly type: "array";
228
+ readonly items: {
229
+ readonly $ref: "#/$defs/node";
230
+ };
231
+ };
232
+ readonly edges: {
233
+ readonly type: "array";
234
+ readonly items: {
235
+ readonly $ref: "#/$defs/edge";
236
+ };
237
+ };
238
+ readonly cableStyles: {
239
+ readonly $ref: "#/$defs/cableStyleRegistry";
240
+ };
241
+ };
242
+ readonly additionalProperties: false;
243
+ readonly $defs: {
244
+ readonly node: {
245
+ readonly type: "object";
246
+ readonly required: readonly ["id", "kind", "kindVersion", "params", "ports"];
247
+ readonly properties: {
248
+ readonly id: {
249
+ readonly type: "string";
250
+ readonly minLength: 1;
251
+ };
252
+ readonly kind: {
253
+ readonly type: "string";
254
+ readonly minLength: 1;
255
+ };
256
+ readonly kindVersion: {
257
+ readonly type: "string";
258
+ readonly minLength: 1;
259
+ };
260
+ readonly params: {
261
+ readonly type: "object";
262
+ readonly additionalProperties: true;
263
+ };
264
+ readonly ports: {
265
+ readonly type: "array";
266
+ readonly items: {
267
+ readonly $ref: "#/$defs/port";
268
+ };
269
+ };
270
+ readonly portGroups: {
271
+ readonly type: "array";
272
+ readonly items: {
273
+ readonly $ref: "#/$defs/portGroup";
274
+ };
275
+ };
276
+ };
277
+ readonly additionalProperties: false;
278
+ };
279
+ readonly port: {
280
+ readonly type: "object";
281
+ readonly required: readonly ["id", "direction", "type"];
282
+ readonly properties: {
283
+ readonly id: {
284
+ readonly type: "string";
285
+ readonly minLength: 1;
286
+ };
287
+ readonly direction: {
288
+ readonly enum: readonly ["input", "output"];
289
+ };
290
+ readonly type: {
291
+ readonly type: "string";
292
+ readonly minLength: 1;
293
+ };
294
+ readonly label: {
295
+ readonly type: "string";
296
+ };
297
+ readonly rate: {
298
+ readonly enum: readonly ["event", "control", "audio", "render", "gpu", "resource", "io"];
299
+ };
300
+ readonly accepts: {
301
+ readonly type: "array";
302
+ readonly items: {
303
+ readonly type: "string";
304
+ readonly minLength: 1;
305
+ };
306
+ readonly uniqueItems: true;
307
+ };
308
+ readonly minConnections: {
309
+ readonly type: "integer";
310
+ readonly minimum: 0;
311
+ };
312
+ readonly maxConnections: {
313
+ readonly oneOf: readonly [{
314
+ readonly type: "integer";
315
+ readonly minimum: 0;
316
+ }, {
317
+ readonly type: "null";
318
+ }];
319
+ };
320
+ readonly mergePolicy: {
321
+ readonly enum: readonly ["forbid", "ordered-events", "mix", "array", "latest", "first", "custom"];
322
+ };
323
+ readonly fanOutPolicy: {
324
+ readonly enum: readonly ["allow", "forbid", "copy", "share"];
325
+ };
326
+ readonly triggerMode: {
327
+ readonly enum: readonly ["passive", "trigger", "latched"];
328
+ };
329
+ readonly defaultValue: true;
330
+ readonly latch: {
331
+ readonly type: "boolean";
332
+ };
333
+ readonly required: {
334
+ readonly type: "boolean";
335
+ };
336
+ readonly styleKey: {
337
+ readonly type: "string";
338
+ readonly minLength: 1;
339
+ };
340
+ readonly group: {
341
+ readonly type: "string";
342
+ readonly minLength: 1;
343
+ };
344
+ readonly description: {
345
+ readonly type: "string";
346
+ };
347
+ };
348
+ readonly additionalProperties: false;
349
+ };
350
+ readonly portGroup: {
351
+ readonly type: "object";
352
+ readonly required: readonly ["id", "direction", "type", "minPorts"];
353
+ readonly properties: {
354
+ readonly id: {
355
+ readonly type: "string";
356
+ readonly minLength: 1;
357
+ };
358
+ readonly label: {
359
+ readonly type: "string";
360
+ };
361
+ readonly direction: {
362
+ readonly enum: readonly ["input", "output"];
363
+ };
364
+ readonly type: {
365
+ readonly type: "string";
366
+ readonly minLength: 1;
367
+ };
368
+ readonly rate: {
369
+ readonly enum: readonly ["event", "control", "audio", "render", "gpu", "resource", "io"];
370
+ };
371
+ readonly minPorts: {
372
+ readonly type: "integer";
373
+ readonly minimum: 0;
374
+ };
375
+ readonly maxPorts: {
376
+ readonly type: "integer";
377
+ readonly minimum: 0;
378
+ };
379
+ readonly ordered: {
380
+ readonly type: "boolean";
381
+ };
382
+ readonly portIdPattern: {
383
+ readonly type: "string";
384
+ readonly minLength: 1;
385
+ };
386
+ readonly createLabel: {
387
+ readonly type: "string";
388
+ };
389
+ readonly defaultPortSpec: {
390
+ readonly $ref: "#/$defs/port";
391
+ };
392
+ };
393
+ readonly additionalProperties: false;
394
+ };
395
+ readonly edge: {
396
+ readonly type: "object";
397
+ readonly required: readonly ["id", "source", "target"];
398
+ readonly properties: {
399
+ readonly id: {
400
+ readonly type: "string";
401
+ readonly minLength: 1;
402
+ };
403
+ readonly source: {
404
+ readonly $ref: "#/$defs/portEndpoint";
405
+ };
406
+ readonly target: {
407
+ readonly $ref: "#/$defs/portEndpoint";
408
+ };
409
+ readonly resolvedType: {
410
+ readonly type: "string";
411
+ readonly minLength: 1;
412
+ };
413
+ readonly order: {
414
+ readonly type: "integer";
415
+ readonly minimum: 0;
416
+ };
417
+ readonly enabled: {
418
+ readonly type: "boolean";
419
+ };
420
+ readonly adapter: {
421
+ readonly type: "string";
422
+ readonly minLength: 1;
423
+ };
424
+ readonly feedback: {
425
+ readonly $ref: "#/$defs/feedbackPolicy";
426
+ };
427
+ readonly styleOverride: {
428
+ readonly type: "string";
429
+ readonly minLength: 1;
430
+ };
431
+ readonly label: {
432
+ readonly type: "string";
433
+ };
434
+ readonly description: {
435
+ readonly type: "string";
436
+ };
437
+ };
438
+ readonly additionalProperties: false;
439
+ };
440
+ readonly portEndpoint: {
441
+ readonly type: "object";
442
+ readonly required: readonly ["nodeId", "portId"];
443
+ readonly properties: {
444
+ readonly nodeId: {
445
+ readonly type: "string";
446
+ readonly minLength: 1;
447
+ };
448
+ readonly portId: {
449
+ readonly type: "string";
450
+ readonly minLength: 1;
451
+ };
452
+ };
453
+ readonly additionalProperties: false;
454
+ };
455
+ readonly feedbackPolicy: {
456
+ readonly type: "object";
457
+ readonly required: readonly ["enabled", "boundary"];
458
+ readonly properties: {
459
+ readonly enabled: {
460
+ readonly type: "boolean";
461
+ };
462
+ readonly boundary: {
463
+ readonly enum: readonly ["same-turn", "next-tick", "control-frame", "audio-sample", "audio-block", "render-frame", "gpu-pingpong", "manual"];
464
+ };
465
+ readonly initialValue: true;
466
+ readonly recursionLimit: {
467
+ readonly type: "integer";
468
+ readonly minimum: 0;
469
+ };
470
+ readonly maxEventsPerTick: {
471
+ readonly type: "integer";
472
+ readonly minimum: 1;
473
+ };
474
+ readonly maxIterationsPerFrame: {
475
+ readonly type: "integer";
476
+ readonly minimum: 1;
477
+ };
478
+ readonly bufferMode: {
479
+ readonly enum: readonly ["latest", "queue", "ring", "pingpong"];
480
+ };
481
+ readonly intentional: {
482
+ readonly type: "boolean";
483
+ };
484
+ readonly label: {
485
+ readonly type: "string";
486
+ };
487
+ };
488
+ readonly additionalProperties: false;
489
+ };
490
+ readonly cableStyleRegistry: {
491
+ readonly type: "object";
492
+ readonly additionalProperties: {
493
+ readonly type: "object";
494
+ readonly properties: {
495
+ readonly color: {
496
+ readonly type: "string";
497
+ };
498
+ readonly pattern: {
499
+ readonly enum: readonly ["solid", "dashed", "dotted"];
500
+ };
501
+ readonly width: {
502
+ readonly type: "number";
503
+ readonly exclusiveMinimum: 0;
504
+ };
505
+ readonly marker: {
506
+ readonly type: "string";
507
+ };
508
+ };
509
+ readonly additionalProperties: false;
510
+ };
511
+ };
512
+ };
513
+ };
514
+ export declare const viewStateV01Schema: {
515
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
516
+ readonly $id: "https://skenion.dev/schemas/view/v0.1/view-state.schema.json";
517
+ readonly title: "Skenion View State v0.1";
518
+ readonly type: "object";
519
+ readonly required: readonly ["schema", "schemaVersion", "canvas"];
520
+ readonly properties: {
521
+ readonly schema: {
522
+ readonly const: "skenion.view-state";
523
+ };
524
+ readonly schemaVersion: {
525
+ readonly const: "0.1.0";
526
+ };
527
+ readonly canvas: {
528
+ readonly type: "object";
529
+ readonly required: readonly ["nodes"];
530
+ readonly properties: {
531
+ readonly nodes: {
532
+ readonly type: "object";
533
+ readonly additionalProperties: {
534
+ readonly $ref: "#/$defs/canvasNodeView";
535
+ };
536
+ };
537
+ readonly viewport: {
538
+ readonly $ref: "#/$defs/canvasViewport";
539
+ };
540
+ };
541
+ readonly additionalProperties: false;
542
+ };
543
+ };
544
+ readonly additionalProperties: false;
545
+ readonly $defs: {
546
+ readonly canvasNodeView: {
547
+ readonly type: "object";
548
+ readonly required: readonly ["x", "y"];
549
+ readonly properties: {
550
+ readonly x: {
551
+ readonly type: "number";
552
+ };
553
+ readonly y: {
554
+ readonly type: "number";
555
+ };
556
+ readonly width: {
557
+ readonly type: "number";
558
+ readonly exclusiveMinimum: 0;
559
+ };
560
+ readonly height: {
561
+ readonly type: "number";
562
+ readonly exclusiveMinimum: 0;
563
+ };
564
+ readonly collapsed: {
565
+ readonly type: "boolean";
566
+ };
567
+ };
568
+ readonly additionalProperties: false;
569
+ };
570
+ readonly canvasViewport: {
571
+ readonly type: "object";
572
+ readonly required: readonly ["x", "y", "zoom"];
573
+ readonly properties: {
574
+ readonly x: {
575
+ readonly type: "number";
576
+ };
577
+ readonly y: {
578
+ readonly type: "number";
579
+ };
580
+ readonly zoom: {
581
+ readonly type: "number";
582
+ readonly exclusiveMinimum: 0;
583
+ };
584
+ };
585
+ readonly additionalProperties: false;
586
+ };
587
+ };
588
+ };
589
+ export declare const projectV01Schema: {
590
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
591
+ readonly $id: "https://skenion.dev/schemas/project/v0.1/project.schema.json";
592
+ readonly title: "Skenion Project Document v0.1";
593
+ readonly type: "object";
594
+ readonly required: readonly ["schema", "schemaVersion", "id", "revision", "graph", "viewState"];
595
+ readonly properties: {
596
+ readonly schema: {
597
+ readonly const: "skenion.project";
598
+ };
599
+ readonly schemaVersion: {
600
+ readonly const: "0.1.0";
601
+ };
602
+ readonly id: {
603
+ readonly type: "string";
604
+ readonly minLength: 1;
605
+ };
606
+ readonly revision: {
607
+ readonly type: "string";
608
+ readonly minLength: 1;
609
+ };
610
+ readonly metadata: {
611
+ readonly type: "object";
612
+ readonly properties: {
613
+ readonly title: {
614
+ readonly type: "string";
615
+ };
616
+ readonly description: {
617
+ readonly type: "string";
618
+ };
619
+ readonly createdAt: {
620
+ readonly type: "string";
621
+ };
622
+ readonly updatedAt: {
623
+ readonly type: "string";
624
+ };
625
+ };
626
+ readonly additionalProperties: true;
627
+ };
628
+ readonly graph: {
629
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.1/graph.schema.json";
630
+ };
631
+ readonly viewState: {
632
+ readonly $ref: "https://skenion.dev/schemas/view/v0.1/view-state.schema.json";
633
+ };
634
+ readonly tutorial: {
635
+ readonly type: "object";
636
+ readonly additionalProperties: true;
637
+ };
638
+ readonly help: {
639
+ readonly type: "object";
640
+ readonly additionalProperties: true;
641
+ };
642
+ };
643
+ readonly additionalProperties: false;
644
+ };
645
+ export declare const graphPatchV01Schema: {
646
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
647
+ readonly $id: "https://skenion.dev/schemas/graph/v0.1/patch.schema.json";
648
+ readonly title: "Skenion Graph Patch v0.1";
649
+ readonly type: "object";
650
+ readonly required: readonly ["schema", "schemaVersion", "id", "baseRevision", "ops"];
651
+ readonly properties: {
652
+ readonly schema: {
653
+ readonly const: "skenion.graph.patch";
654
+ };
655
+ readonly schemaVersion: {
656
+ readonly const: "0.1.0";
657
+ };
658
+ readonly id: {
659
+ readonly type: "string";
660
+ readonly minLength: 1;
661
+ };
662
+ readonly baseRevision: {
663
+ readonly type: "string";
664
+ readonly minLength: 1;
665
+ };
666
+ readonly clientId: {
667
+ readonly type: "string";
668
+ readonly minLength: 1;
669
+ };
670
+ readonly createdAt: {
671
+ readonly type: "string";
672
+ readonly minLength: 1;
673
+ };
674
+ readonly description: {
675
+ readonly type: "string";
676
+ };
677
+ readonly ops: {
678
+ readonly type: "array";
679
+ readonly items: {
680
+ readonly oneOf: readonly [{
681
+ readonly $ref: "#/$defs/addNode";
682
+ }, {
683
+ readonly $ref: "#/$defs/removeNode";
684
+ }, {
685
+ readonly $ref: "#/$defs/replaceNode";
686
+ }, {
687
+ readonly $ref: "#/$defs/setNodeParams";
688
+ }, {
689
+ readonly $ref: "#/$defs/setNodeParam";
690
+ }, {
691
+ readonly $ref: "#/$defs/addEdge";
692
+ }, {
693
+ readonly $ref: "#/$defs/removeEdge";
694
+ }, {
695
+ readonly $ref: "#/$defs/replaceNodeInterface";
696
+ }];
697
+ };
698
+ };
699
+ };
700
+ readonly additionalProperties: false;
701
+ readonly $defs: {
702
+ readonly addNode: {
703
+ readonly type: "object";
704
+ readonly required: readonly ["op", "node"];
705
+ readonly properties: {
706
+ readonly op: {
707
+ readonly const: "addNode";
708
+ };
709
+ readonly node: {
710
+ readonly $ref: "#/$defs/node";
711
+ };
712
+ };
713
+ readonly additionalProperties: false;
714
+ };
715
+ readonly removeNode: {
716
+ readonly type: "object";
717
+ readonly required: readonly ["op", "nodeId"];
718
+ readonly properties: {
719
+ readonly op: {
720
+ readonly const: "removeNode";
721
+ };
722
+ readonly nodeId: {
723
+ readonly type: "string";
724
+ readonly minLength: 1;
725
+ };
726
+ };
727
+ readonly additionalProperties: false;
728
+ };
729
+ readonly replaceNode: {
730
+ readonly type: "object";
731
+ readonly required: readonly ["op", "nodeId", "node", "edgePolicy"];
732
+ readonly properties: {
733
+ readonly op: {
734
+ readonly const: "replaceNode";
735
+ };
736
+ readonly nodeId: {
737
+ readonly type: "string";
738
+ readonly minLength: 1;
739
+ };
740
+ readonly node: {
741
+ readonly $ref: "#/$defs/node";
742
+ };
743
+ readonly edgePolicy: {
744
+ readonly const: "removeInvalidEdges";
745
+ };
746
+ };
747
+ readonly additionalProperties: false;
748
+ };
749
+ readonly setNodeParams: {
750
+ readonly type: "object";
751
+ readonly required: readonly ["op", "nodeId", "params"];
752
+ readonly properties: {
753
+ readonly op: {
754
+ readonly const: "setNodeParams";
755
+ };
756
+ readonly nodeId: {
757
+ readonly type: "string";
758
+ readonly minLength: 1;
759
+ };
760
+ readonly params: {
761
+ readonly type: "object";
762
+ readonly additionalProperties: true;
763
+ };
764
+ };
765
+ readonly additionalProperties: false;
766
+ };
767
+ readonly setNodeParam: {
768
+ readonly type: "object";
769
+ readonly required: readonly ["op", "nodeId", "key", "value"];
770
+ readonly properties: {
771
+ readonly op: {
772
+ readonly const: "setNodeParam";
773
+ };
774
+ readonly nodeId: {
775
+ readonly type: "string";
776
+ readonly minLength: 1;
777
+ };
778
+ readonly key: {
779
+ readonly type: "string";
780
+ readonly minLength: 1;
781
+ };
782
+ readonly value: true;
783
+ };
784
+ readonly additionalProperties: false;
785
+ };
786
+ readonly addEdge: {
787
+ readonly type: "object";
788
+ readonly required: readonly ["op", "edge"];
789
+ readonly properties: {
790
+ readonly op: {
791
+ readonly const: "addEdge";
792
+ };
793
+ readonly edge: {
794
+ readonly $ref: "#/$defs/edge";
795
+ };
796
+ };
797
+ readonly additionalProperties: false;
798
+ };
799
+ readonly removeEdge: {
800
+ readonly type: "object";
801
+ readonly required: readonly ["op", "edge"];
802
+ readonly properties: {
803
+ readonly op: {
804
+ readonly const: "removeEdge";
805
+ };
806
+ readonly edge: {
807
+ readonly $ref: "#/$defs/edge";
808
+ };
809
+ };
810
+ readonly additionalProperties: false;
811
+ };
812
+ readonly replaceNodeInterface: {
813
+ readonly type: "object";
814
+ readonly required: readonly ["op", "nodeId", "ports", "edgePolicy"];
815
+ readonly properties: {
816
+ readonly op: {
817
+ readonly const: "replaceNodeInterface";
818
+ };
819
+ readonly nodeId: {
820
+ readonly type: "string";
821
+ readonly minLength: 1;
822
+ };
823
+ readonly ports: {
824
+ readonly type: "array";
825
+ readonly items: {
826
+ readonly $ref: "#/$defs/port";
827
+ };
828
+ };
829
+ readonly edgePolicy: {
830
+ readonly const: "removeInvalidEdges";
831
+ };
832
+ };
833
+ readonly additionalProperties: false;
834
+ };
835
+ readonly node: {
836
+ readonly type: "object";
837
+ readonly required: readonly ["id", "kind", "kindVersion", "params", "ports"];
838
+ readonly properties: {
839
+ readonly id: {
840
+ readonly type: "string";
841
+ readonly minLength: 1;
842
+ };
843
+ readonly kind: {
844
+ readonly type: "string";
845
+ readonly minLength: 1;
846
+ };
847
+ readonly kindVersion: {
848
+ readonly type: "string";
849
+ readonly minLength: 1;
850
+ };
851
+ readonly params: {
852
+ readonly type: "object";
853
+ readonly additionalProperties: true;
854
+ };
855
+ readonly ports: {
856
+ readonly type: "array";
857
+ readonly items: {
858
+ readonly $ref: "#/$defs/port";
859
+ };
860
+ };
861
+ };
862
+ readonly additionalProperties: false;
863
+ };
864
+ readonly port: {
865
+ readonly type: "object";
866
+ readonly required: readonly ["id", "direction", "type"];
867
+ readonly properties: {
868
+ readonly id: {
869
+ readonly type: "string";
870
+ readonly minLength: 1;
871
+ };
872
+ readonly direction: {
873
+ readonly enum: readonly ["input", "output"];
874
+ };
875
+ readonly label: {
876
+ readonly type: "string";
877
+ };
878
+ readonly type: {
879
+ readonly $ref: "#/$defs/dataType";
880
+ };
881
+ readonly required: {
882
+ readonly type: "boolean";
883
+ };
884
+ readonly default: true;
885
+ readonly activation: {
886
+ readonly enum: readonly ["trigger", "latched"];
887
+ };
888
+ };
889
+ readonly additionalProperties: false;
890
+ };
891
+ readonly dataType: {
892
+ readonly type: "object";
893
+ readonly required: readonly ["flow", "dataKind"];
894
+ readonly properties: {
895
+ readonly flow: {
896
+ readonly enum: readonly ["value", "event", "signal", "stream", "resource"];
897
+ };
898
+ readonly dataKind: {
899
+ readonly type: "string";
900
+ readonly minLength: 1;
901
+ };
902
+ readonly unit: {
903
+ readonly type: "string";
904
+ };
905
+ readonly range: {
906
+ readonly type: "object";
907
+ readonly properties: {
908
+ readonly min: {
909
+ readonly type: "number";
910
+ };
911
+ readonly max: {
912
+ readonly type: "number";
913
+ };
914
+ readonly step: {
915
+ readonly type: "number";
916
+ readonly exclusiveMinimum: 0;
917
+ };
918
+ };
919
+ readonly additionalProperties: false;
920
+ };
921
+ readonly shape: {
922
+ readonly type: "array";
923
+ readonly items: {
924
+ readonly type: "integer";
925
+ readonly minimum: 1;
926
+ };
927
+ };
928
+ readonly channels: {
929
+ readonly type: "integer";
930
+ readonly minimum: 1;
931
+ };
932
+ readonly sampleRate: {
933
+ readonly type: "number";
934
+ readonly exclusiveMinimum: 0;
935
+ };
936
+ readonly format: {
937
+ readonly oneOf: readonly [{
938
+ readonly type: "string";
939
+ readonly minLength: 1;
940
+ }, {
941
+ readonly type: "array";
942
+ readonly items: {
943
+ readonly type: "string";
944
+ readonly minLength: 1;
945
+ };
946
+ }];
947
+ };
948
+ readonly colorSpace: {
949
+ readonly type: "string";
950
+ };
951
+ readonly frameRate: {
952
+ readonly type: "number";
953
+ readonly exclusiveMinimum: 0;
954
+ };
955
+ readonly alphaPolicy: {
956
+ readonly enum: readonly ["error", "white", "black", "luminance"];
957
+ };
958
+ readonly values: {
959
+ readonly type: "array";
960
+ readonly items: {
961
+ readonly oneOf: readonly [{
962
+ readonly type: "string";
963
+ }, {
964
+ readonly type: "number";
965
+ }, {
966
+ readonly type: "boolean";
967
+ }];
968
+ };
969
+ };
970
+ };
971
+ readonly additionalProperties: false;
972
+ };
973
+ readonly edge: {
974
+ readonly type: "object";
975
+ readonly required: readonly ["from", "to"];
976
+ readonly properties: {
977
+ readonly from: {
978
+ readonly $ref: "#/$defs/portRef";
979
+ };
980
+ readonly to: {
981
+ readonly $ref: "#/$defs/portRef";
982
+ };
983
+ };
984
+ readonly additionalProperties: false;
985
+ };
986
+ readonly portRef: {
987
+ readonly type: "object";
988
+ readonly required: readonly ["node", "port"];
989
+ readonly properties: {
990
+ readonly node: {
991
+ readonly type: "string";
992
+ readonly minLength: 1;
993
+ };
994
+ readonly port: {
995
+ readonly type: "string";
996
+ readonly minLength: 1;
997
+ };
998
+ };
999
+ readonly additionalProperties: false;
1000
+ };
1001
+ };
1002
+ };
1003
+ export declare const graphPatchEventV01Schema: {
1004
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1005
+ readonly $id: "https://skenion.dev/schemas/graph/v0.1/patch-event.schema.json";
1006
+ readonly title: "Skenion Graph Patch Event v0.1";
1007
+ readonly type: "object";
1008
+ readonly required: readonly ["schema", "schemaVersion", "id", "sequence", "kind", "patch", "inversePatch", "revisionBefore", "revisionAfter", "createdAt"];
1009
+ readonly properties: {
1010
+ readonly schema: {
1011
+ readonly const: "skenion.graph.patch.event";
1012
+ };
1013
+ readonly schemaVersion: {
1014
+ readonly const: "0.1.0";
1015
+ };
1016
+ readonly id: {
1017
+ readonly type: "string";
1018
+ readonly minLength: 1;
1019
+ };
1020
+ readonly sequence: {
1021
+ readonly type: "integer";
1022
+ readonly minimum: 1;
1023
+ };
1024
+ readonly kind: {
1025
+ readonly enum: readonly ["apply", "undo", "redo"];
1026
+ };
1027
+ readonly patch: {
1028
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.1/patch.schema.json";
1029
+ };
1030
+ readonly inversePatch: {
1031
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.1/patch.schema.json";
1032
+ };
1033
+ readonly revisionBefore: {
1034
+ readonly type: "string";
1035
+ readonly minLength: 1;
1036
+ };
1037
+ readonly revisionAfter: {
1038
+ readonly type: "string";
1039
+ readonly minLength: 1;
1040
+ };
1041
+ readonly clientId: {
1042
+ readonly type: "string";
1043
+ readonly minLength: 1;
1044
+ };
1045
+ readonly description: {
1046
+ readonly type: "string";
1047
+ };
1048
+ readonly subjectEventId: {
1049
+ readonly type: "string";
1050
+ readonly minLength: 1;
1051
+ };
1052
+ readonly createdAt: {
1053
+ readonly type: "string";
1054
+ readonly minLength: 1;
1055
+ };
1056
+ };
1057
+ readonly additionalProperties: false;
1058
+ };
1059
+ export declare const graphPatchHistoryV01Schema: {
1060
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1061
+ readonly $id: "https://skenion.dev/schemas/graph/v0.1/patch-history.schema.json";
1062
+ readonly title: "Skenion Graph Patch History v0.1";
1063
+ readonly type: "object";
1064
+ readonly required: readonly ["schema", "schemaVersion", "events", "canUndo", "canRedo", "undoDepth", "redoDepth"];
1065
+ readonly properties: {
1066
+ readonly schema: {
1067
+ readonly const: "skenion.graph.patch.history";
1068
+ };
1069
+ readonly schemaVersion: {
1070
+ readonly const: "0.1.0";
1071
+ };
1072
+ readonly events: {
1073
+ readonly type: "array";
1074
+ readonly items: {
1075
+ readonly $ref: "https://skenion.dev/schemas/graph/v0.1/patch-event.schema.json";
1076
+ };
1077
+ };
1078
+ readonly canUndo: {
1079
+ readonly type: "boolean";
1080
+ };
1081
+ readonly canRedo: {
1082
+ readonly type: "boolean";
1083
+ };
1084
+ readonly undoDepth: {
1085
+ readonly type: "integer";
1086
+ readonly minimum: 0;
1087
+ };
1088
+ readonly redoDepth: {
1089
+ readonly type: "integer";
1090
+ readonly minimum: 0;
1091
+ };
1092
+ };
1093
+ readonly additionalProperties: false;
1094
+ };
1095
+ export declare const nodeDefinitionV01Schema: {
1096
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1097
+ readonly $id: "https://skenion.dev/schemas/node/v0.1/node-definition.schema.json";
1098
+ readonly title: "Skenion Node Definition Manifest v0.1";
1099
+ readonly type: "object";
1100
+ readonly required: readonly ["schema", "schemaVersion", "id", "version", "displayName", "category", "ports", "execution", "state", "permissions", "capabilities"];
1101
+ readonly properties: {
1102
+ readonly schema: {
1103
+ readonly const: "skenion.node.definition";
1104
+ };
1105
+ readonly schemaVersion: {
1106
+ readonly const: "0.1.0";
1107
+ };
1108
+ readonly id: {
1109
+ readonly type: "string";
1110
+ readonly minLength: 1;
1111
+ };
1112
+ readonly version: {
1113
+ readonly type: "string";
1114
+ readonly minLength: 1;
1115
+ };
1116
+ readonly displayName: {
1117
+ readonly type: "string";
1118
+ readonly minLength: 1;
1119
+ };
1120
+ readonly category: {
1121
+ readonly type: "string";
1122
+ readonly minLength: 1;
1123
+ };
1124
+ readonly scriptApiVersion: {
1125
+ readonly type: "string";
1126
+ readonly minLength: 1;
1127
+ };
1128
+ readonly bundleHash: {
1129
+ readonly type: "string";
1130
+ readonly minLength: 1;
1131
+ };
1132
+ readonly surface: {
1133
+ readonly $ref: "#/$defs/surface";
1134
+ };
1135
+ readonly ports: {
1136
+ readonly type: "array";
1137
+ readonly items: {
1138
+ readonly $ref: "#/$defs/port";
1139
+ };
1140
+ };
1141
+ readonly execution: {
1142
+ readonly $ref: "#/$defs/execution";
1143
+ };
1144
+ readonly state: {
1145
+ readonly $ref: "#/$defs/state";
1146
+ };
1147
+ readonly permissions: {
1148
+ readonly type: "array";
1149
+ readonly items: {
1150
+ readonly type: "string";
1151
+ };
1152
+ };
1153
+ readonly capabilities: {
1154
+ readonly type: "array";
1155
+ readonly items: {
1156
+ readonly type: "string";
1157
+ };
1158
+ };
1159
+ };
1160
+ readonly additionalProperties: false;
1161
+ readonly $defs: {
1162
+ readonly port: {
1163
+ readonly type: "object";
1164
+ readonly required: readonly ["id", "direction", "type"];
1165
+ readonly properties: {
1166
+ readonly id: {
1167
+ readonly type: "string";
1168
+ readonly minLength: 1;
1169
+ };
1170
+ readonly direction: {
1171
+ readonly enum: readonly ["input", "output"];
1172
+ };
1173
+ readonly label: {
1174
+ readonly type: "string";
1175
+ };
1176
+ readonly type: {
1177
+ readonly $ref: "#/$defs/dataType";
1178
+ };
1179
+ readonly required: {
1180
+ readonly type: "boolean";
1181
+ };
1182
+ readonly default: true;
1183
+ readonly activation: {
1184
+ readonly enum: readonly ["trigger", "latched"];
1185
+ };
1186
+ };
1187
+ readonly additionalProperties: false;
1188
+ };
1189
+ readonly dataType: {
1190
+ readonly type: "object";
1191
+ readonly required: readonly ["flow", "dataKind"];
1192
+ readonly properties: {
1193
+ readonly flow: {
1194
+ readonly enum: readonly ["value", "event", "signal", "stream", "resource"];
1195
+ };
1196
+ readonly dataKind: {
1197
+ readonly type: "string";
1198
+ readonly minLength: 1;
1199
+ };
1200
+ readonly unit: {
1201
+ readonly type: "string";
1202
+ };
1203
+ readonly range: {
1204
+ readonly type: "object";
1205
+ readonly properties: {
1206
+ readonly min: {
1207
+ readonly type: "number";
1208
+ };
1209
+ readonly max: {
1210
+ readonly type: "number";
1211
+ };
1212
+ readonly step: {
1213
+ readonly type: "number";
1214
+ readonly exclusiveMinimum: 0;
1215
+ };
1216
+ };
1217
+ readonly additionalProperties: false;
1218
+ };
1219
+ readonly shape: {
1220
+ readonly type: "array";
1221
+ readonly items: {
1222
+ readonly type: "integer";
1223
+ readonly minimum: 1;
1224
+ };
1225
+ };
1226
+ readonly channels: {
1227
+ readonly type: "integer";
1228
+ readonly minimum: 1;
1229
+ };
1230
+ readonly sampleRate: {
1231
+ readonly type: "number";
1232
+ readonly exclusiveMinimum: 0;
1233
+ };
1234
+ readonly format: {
1235
+ readonly oneOf: readonly [{
1236
+ readonly type: "string";
1237
+ readonly minLength: 1;
1238
+ }, {
1239
+ readonly type: "array";
1240
+ readonly items: {
1241
+ readonly type: "string";
1242
+ readonly minLength: 1;
1243
+ };
1244
+ }];
1245
+ };
1246
+ readonly colorSpace: {
1247
+ readonly type: "string";
1248
+ };
1249
+ readonly frameRate: {
1250
+ readonly type: "number";
1251
+ readonly exclusiveMinimum: 0;
1252
+ };
1253
+ readonly alphaPolicy: {
1254
+ readonly enum: readonly ["error", "white", "black", "luminance"];
1255
+ };
1256
+ readonly values: {
1257
+ readonly type: "array";
1258
+ readonly items: {
1259
+ readonly oneOf: readonly [{
1260
+ readonly type: "string";
1261
+ }, {
1262
+ readonly type: "number";
1263
+ }, {
1264
+ readonly type: "boolean";
1265
+ }];
1266
+ };
1267
+ };
1268
+ };
1269
+ readonly additionalProperties: false;
1270
+ };
1271
+ readonly execution: {
1272
+ readonly type: "object";
1273
+ readonly required: readonly ["model"];
1274
+ readonly properties: {
1275
+ readonly model: {
1276
+ readonly enum: readonly ["event", "value", "frame", "audio_block", "video_frame", "gpu_pass", "async_resource", "script_control", "native_plugin"];
1277
+ };
1278
+ readonly clock: {
1279
+ readonly enum: readonly ["frame", "audio", "beat", "timecode", "external"];
1280
+ };
1281
+ };
1282
+ readonly additionalProperties: false;
1283
+ };
1284
+ readonly surface: {
1285
+ readonly type: "object";
1286
+ readonly properties: {
1287
+ readonly palette: {
1288
+ readonly enum: readonly ["direct"];
1289
+ };
1290
+ };
1291
+ readonly additionalProperties: false;
1292
+ };
1293
+ readonly state: {
1294
+ readonly type: "object";
1295
+ readonly required: readonly ["persistent"];
1296
+ readonly properties: {
1297
+ readonly persistent: {
1298
+ readonly type: "boolean";
1299
+ };
1300
+ };
1301
+ readonly additionalProperties: false;
1302
+ };
1303
+ };
1304
+ };
1305
+ export declare const nodeDefinitionV02Schema: {
1306
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1307
+ readonly $id: "https://skenion.dev/schemas/node/v0.2/node-definition.schema.json";
1308
+ readonly title: "Skenion Node Definition Manifest v0.2";
1309
+ readonly type: "object";
1310
+ readonly required: readonly ["schema", "schemaVersion", "id", "version", "displayName", "category", "ports", "execution", "state", "permissions", "capabilities"];
1311
+ readonly properties: {
1312
+ readonly schema: {
1313
+ readonly const: "skenion.node.definition";
1314
+ };
1315
+ readonly schemaVersion: {
1316
+ readonly const: "0.2.0";
1317
+ };
1318
+ readonly id: {
1319
+ readonly type: "string";
1320
+ readonly minLength: 1;
1321
+ };
1322
+ readonly version: {
1323
+ readonly type: "string";
1324
+ readonly minLength: 1;
1325
+ };
1326
+ readonly displayName: {
1327
+ readonly type: "string";
1328
+ readonly minLength: 1;
1329
+ };
1330
+ readonly category: {
1331
+ readonly type: "string";
1332
+ readonly minLength: 1;
1333
+ };
1334
+ readonly scriptApiVersion: {
1335
+ readonly type: "string";
1336
+ readonly minLength: 1;
1337
+ };
1338
+ readonly bundleHash: {
1339
+ readonly type: "string";
1340
+ readonly minLength: 1;
1341
+ };
1342
+ readonly surface: {
1343
+ readonly $ref: "#/$defs/surface";
1344
+ };
1345
+ readonly ports: {
1346
+ readonly type: "array";
1347
+ readonly items: {
1348
+ readonly $ref: "#/$defs/port";
1349
+ };
1350
+ };
1351
+ readonly portGroups: {
1352
+ readonly type: "array";
1353
+ readonly items: {
1354
+ readonly $ref: "#/$defs/portGroup";
1355
+ };
1356
+ };
1357
+ readonly execution: {
1358
+ readonly $ref: "#/$defs/execution";
1359
+ };
1360
+ readonly state: {
1361
+ readonly $ref: "#/$defs/state";
1362
+ };
1363
+ readonly permissions: {
1364
+ readonly type: "array";
1365
+ readonly items: {
1366
+ readonly type: "string";
1367
+ };
1368
+ };
1369
+ readonly capabilities: {
1370
+ readonly type: "array";
1371
+ readonly items: {
1372
+ readonly type: "string";
1373
+ };
1374
+ };
1375
+ };
1376
+ readonly additionalProperties: false;
1377
+ readonly $defs: {
1378
+ readonly port: {
1379
+ readonly type: "object";
1380
+ readonly required: readonly ["id", "direction", "type"];
1381
+ readonly properties: {
1382
+ readonly id: {
1383
+ readonly type: "string";
1384
+ readonly minLength: 1;
1385
+ };
1386
+ readonly direction: {
1387
+ readonly enum: readonly ["input", "output"];
1388
+ };
1389
+ readonly type: {
1390
+ readonly type: "string";
1391
+ readonly minLength: 1;
1392
+ };
1393
+ readonly label: {
1394
+ readonly type: "string";
1395
+ };
1396
+ readonly rate: {
1397
+ readonly enum: readonly ["event", "control", "audio", "render", "gpu", "resource", "io"];
1398
+ };
1399
+ readonly accepts: {
1400
+ readonly type: "array";
1401
+ readonly items: {
1402
+ readonly type: "string";
1403
+ readonly minLength: 1;
1404
+ };
1405
+ readonly uniqueItems: true;
1406
+ };
1407
+ readonly minConnections: {
1408
+ readonly type: "integer";
1409
+ readonly minimum: 0;
1410
+ };
1411
+ readonly maxConnections: {
1412
+ readonly oneOf: readonly [{
1413
+ readonly type: "integer";
1414
+ readonly minimum: 0;
1415
+ }, {
1416
+ readonly type: "null";
1417
+ }];
1418
+ };
1419
+ readonly mergePolicy: {
1420
+ readonly enum: readonly ["forbid", "ordered-events", "mix", "array", "latest", "first", "custom"];
1421
+ };
1422
+ readonly fanOutPolicy: {
1423
+ readonly enum: readonly ["allow", "forbid", "copy", "share"];
1424
+ };
1425
+ readonly triggerMode: {
1426
+ readonly enum: readonly ["passive", "trigger", "latched"];
1427
+ };
1428
+ readonly defaultValue: true;
1429
+ readonly latch: {
1430
+ readonly type: "boolean";
1431
+ };
1432
+ readonly required: {
1433
+ readonly type: "boolean";
1434
+ };
1435
+ readonly styleKey: {
1436
+ readonly type: "string";
1437
+ readonly minLength: 1;
1438
+ };
1439
+ readonly group: {
1440
+ readonly type: "string";
1441
+ readonly minLength: 1;
1442
+ };
1443
+ readonly description: {
1444
+ readonly type: "string";
1445
+ };
1446
+ };
1447
+ readonly additionalProperties: false;
1448
+ };
1449
+ readonly portGroup: {
1450
+ readonly type: "object";
1451
+ readonly required: readonly ["id", "direction", "type", "minPorts"];
1452
+ readonly properties: {
1453
+ readonly id: {
1454
+ readonly type: "string";
1455
+ readonly minLength: 1;
1456
+ };
1457
+ readonly label: {
1458
+ readonly type: "string";
1459
+ };
1460
+ readonly direction: {
1461
+ readonly enum: readonly ["input", "output"];
1462
+ };
1463
+ readonly type: {
1464
+ readonly type: "string";
1465
+ readonly minLength: 1;
1466
+ };
1467
+ readonly rate: {
1468
+ readonly enum: readonly ["event", "control", "audio", "render", "gpu", "resource", "io"];
1469
+ };
1470
+ readonly minPorts: {
1471
+ readonly type: "integer";
1472
+ readonly minimum: 0;
1473
+ };
1474
+ readonly maxPorts: {
1475
+ readonly type: "integer";
1476
+ readonly minimum: 0;
1477
+ };
1478
+ readonly ordered: {
1479
+ readonly type: "boolean";
1480
+ };
1481
+ readonly portIdPattern: {
1482
+ readonly type: "string";
1483
+ readonly minLength: 1;
1484
+ };
1485
+ readonly createLabel: {
1486
+ readonly type: "string";
1487
+ };
1488
+ readonly defaultPortSpec: {
1489
+ readonly $ref: "#/$defs/port";
1490
+ };
1491
+ };
1492
+ readonly additionalProperties: false;
1493
+ };
1494
+ readonly execution: {
1495
+ readonly type: "object";
1496
+ readonly required: readonly ["model"];
1497
+ readonly properties: {
1498
+ readonly model: {
1499
+ readonly enum: readonly ["event", "value", "frame", "audio_block", "video_frame", "gpu_pass", "async_resource", "script_control", "native_plugin"];
1500
+ };
1501
+ readonly clock: {
1502
+ readonly enum: readonly ["frame", "audio", "beat", "timecode", "external"];
1503
+ };
1504
+ };
1505
+ readonly additionalProperties: false;
1506
+ };
1507
+ readonly surface: {
1508
+ readonly type: "object";
1509
+ readonly properties: {
1510
+ readonly palette: {
1511
+ readonly enum: readonly ["direct"];
1512
+ };
1513
+ };
1514
+ readonly additionalProperties: false;
1515
+ };
1516
+ readonly state: {
1517
+ readonly type: "object";
1518
+ readonly required: readonly ["persistent"];
1519
+ readonly properties: {
1520
+ readonly persistent: {
1521
+ readonly type: "boolean";
1522
+ };
1523
+ };
1524
+ readonly additionalProperties: false;
1525
+ };
1526
+ };
1527
+ };
1528
+ export declare const shaderInterfaceV01Schema: {
1529
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1530
+ readonly $id: "https://skenion.dev/schemas/shader/v0.1/shader-interface.schema.json";
1531
+ readonly title: "Skenion Shader Interface v0.1";
1532
+ readonly type: "object";
1533
+ readonly required: readonly ["schema", "schemaVersion", "language", "uniforms"];
1534
+ readonly properties: {
1535
+ readonly schema: {
1536
+ readonly const: "skenion.shader.interface";
1537
+ };
1538
+ readonly schemaVersion: {
1539
+ readonly const: "0.1.0";
1540
+ };
1541
+ readonly language: {
1542
+ readonly const: "wgsl";
1543
+ };
1544
+ readonly uniforms: {
1545
+ readonly type: "array";
1546
+ readonly items: {
1547
+ readonly $ref: "#/$defs/uniform";
1548
+ };
1549
+ };
1550
+ };
1551
+ readonly additionalProperties: false;
1552
+ readonly $defs: {
1553
+ readonly uniform: {
1554
+ readonly type: "object";
1555
+ readonly required: readonly ["id", "label", "type", "required"];
1556
+ readonly properties: {
1557
+ readonly id: {
1558
+ readonly type: "string";
1559
+ readonly pattern: "^[A-Za-z_][A-Za-z0-9_]*$";
1560
+ readonly not: {
1561
+ readonly enum: readonly ["out", "in", "set", "bang", "value"];
1562
+ };
1563
+ };
1564
+ readonly label: {
1565
+ readonly type: "string";
1566
+ readonly minLength: 1;
1567
+ };
1568
+ readonly type: {
1569
+ readonly $ref: "#/$defs/dataType";
1570
+ };
1571
+ readonly default: true;
1572
+ readonly required: {
1573
+ readonly type: "boolean";
1574
+ };
1575
+ };
1576
+ readonly additionalProperties: false;
1577
+ };
1578
+ readonly dataType: {
1579
+ readonly type: "object";
1580
+ readonly required: readonly ["flow", "dataKind"];
1581
+ readonly properties: {
1582
+ readonly flow: {
1583
+ readonly const: "value";
1584
+ };
1585
+ readonly dataKind: {
1586
+ readonly enum: readonly ["number.float", "number.int", "number.uint", "boolean", "color"];
1587
+ };
1588
+ readonly format: {
1589
+ readonly type: "string";
1590
+ };
1591
+ readonly colorSpace: {
1592
+ readonly type: "string";
1593
+ };
1594
+ readonly range: {
1595
+ readonly type: "object";
1596
+ readonly properties: {
1597
+ readonly min: {
1598
+ readonly type: "number";
1599
+ };
1600
+ readonly max: {
1601
+ readonly type: "number";
1602
+ };
1603
+ readonly step: {
1604
+ readonly type: "number";
1605
+ readonly exclusiveMinimum: 0;
1606
+ };
1607
+ };
1608
+ readonly additionalProperties: false;
1609
+ };
1610
+ };
1611
+ readonly additionalProperties: false;
1612
+ };
1613
+ };
1614
+ };
1615
+ export declare const shaderDiagnosticV01Schema: {
1616
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1617
+ readonly $id: "https://skenion.dev/schemas/shader/v0.1/shader-diagnostic.schema.json";
1618
+ readonly title: "Skenion Shader Diagnostic v0.1";
1619
+ readonly type: "object";
1620
+ readonly required: readonly ["severity", "phase", "code", "message", "source"];
1621
+ readonly properties: {
1622
+ readonly severity: {
1623
+ readonly enum: readonly ["error", "warning", "info"];
1624
+ };
1625
+ readonly phase: {
1626
+ readonly enum: readonly ["interface-analysis", "source-sync", "wgsl-generation", "wgsl-compile", "render-pipeline", "render-frame"];
1627
+ };
1628
+ readonly code: {
1629
+ readonly type: "string";
1630
+ readonly pattern: "^[a-z0-9]+(?:-[a-z0-9]+)*$";
1631
+ };
1632
+ readonly message: {
1633
+ readonly type: "string";
1634
+ readonly minLength: 1;
1635
+ };
1636
+ readonly line: {
1637
+ readonly type: "integer";
1638
+ readonly minimum: 1;
1639
+ };
1640
+ readonly column: {
1641
+ readonly type: "integer";
1642
+ readonly minimum: 1;
1643
+ };
1644
+ readonly endLine: {
1645
+ readonly type: "integer";
1646
+ readonly minimum: 1;
1647
+ };
1648
+ readonly endColumn: {
1649
+ readonly type: "integer";
1650
+ readonly minimum: 1;
1651
+ };
1652
+ readonly uniformId: {
1653
+ readonly type: "string";
1654
+ readonly pattern: "^[A-Za-z_][A-Za-z0-9_]*$";
1655
+ };
1656
+ readonly source: {
1657
+ readonly enum: readonly ["user", "generated", "runtime"];
1658
+ };
1659
+ };
1660
+ readonly additionalProperties: false;
1661
+ };
1662
+ export declare const controlMessageV01Schema: {
1663
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1664
+ readonly $id: "https://skenion.dev/schemas/control/v0.1/control-message.schema.json";
1665
+ readonly title: "Skenion Control Message v0.1";
1666
+ readonly type: "object";
1667
+ readonly required: readonly ["selector", "atoms"];
1668
+ readonly properties: {
1669
+ readonly selector: {
1670
+ readonly type: "string";
1671
+ readonly minLength: 1;
1672
+ readonly pattern: "^[A-Za-z_][A-Za-z0-9_.:-]*$";
1673
+ };
1674
+ readonly atoms: {
1675
+ readonly type: "array";
1676
+ readonly items: {
1677
+ readonly $ref: "#/$defs/atom";
1678
+ };
1679
+ readonly default: readonly [];
1680
+ };
1681
+ };
1682
+ readonly additionalProperties: false;
1683
+ readonly $defs: {
1684
+ readonly atom: {
1685
+ readonly oneOf: readonly [{
1686
+ readonly type: "object";
1687
+ readonly required: readonly ["type", "representation", "value"];
1688
+ readonly properties: {
1689
+ readonly type: {
1690
+ readonly const: "float";
1691
+ };
1692
+ readonly representation: {
1693
+ readonly enum: readonly ["f64", "f32", "f16", "f8.e4m3", "f8.e5m2", "ufloat16", "ufloat8"];
1694
+ };
1695
+ readonly value: {
1696
+ readonly type: "number";
1697
+ };
1698
+ };
1699
+ readonly additionalProperties: false;
1700
+ }, {
1701
+ readonly type: "object";
1702
+ readonly required: readonly ["type", "representation", "value"];
1703
+ readonly properties: {
1704
+ readonly type: {
1705
+ readonly const: "int";
1706
+ };
1707
+ readonly representation: {
1708
+ readonly enum: readonly ["i64", "i32", "i16", "i8"];
1709
+ };
1710
+ readonly value: {
1711
+ readonly type: "integer";
1712
+ };
1713
+ };
1714
+ readonly additionalProperties: false;
1715
+ }, {
1716
+ readonly type: "object";
1717
+ readonly required: readonly ["type", "representation", "value"];
1718
+ readonly properties: {
1719
+ readonly type: {
1720
+ readonly const: "uint";
1721
+ };
1722
+ readonly representation: {
1723
+ readonly enum: readonly ["u64", "u32", "u16", "u8"];
1724
+ };
1725
+ readonly value: {
1726
+ readonly type: "integer";
1727
+ readonly minimum: 0;
1728
+ };
1729
+ };
1730
+ readonly additionalProperties: false;
1731
+ }, {
1732
+ readonly type: "object";
1733
+ readonly required: readonly ["type", "value"];
1734
+ readonly properties: {
1735
+ readonly type: {
1736
+ readonly const: "bool";
1737
+ };
1738
+ readonly value: {
1739
+ readonly type: "boolean";
1740
+ };
1741
+ };
1742
+ readonly additionalProperties: false;
1743
+ }, {
1744
+ readonly type: "object";
1745
+ readonly required: readonly ["type", "value"];
1746
+ readonly properties: {
1747
+ readonly type: {
1748
+ readonly const: "string";
1749
+ };
1750
+ readonly value: {
1751
+ readonly type: "string";
1752
+ };
1753
+ };
1754
+ readonly additionalProperties: false;
1755
+ }, {
1756
+ readonly type: "object";
1757
+ readonly required: readonly ["type", "representation", "value"];
1758
+ readonly properties: {
1759
+ readonly type: {
1760
+ readonly const: "color";
1761
+ };
1762
+ readonly representation: {
1763
+ readonly enum: readonly ["rgba32f", "rgba16f", "rgba8unorm", "rgb8unorm"];
1764
+ };
1765
+ readonly colorSpace: {
1766
+ readonly enum: readonly ["linear", "srgb"];
1767
+ };
1768
+ readonly value: {
1769
+ readonly type: "array";
1770
+ readonly prefixItems: readonly [{
1771
+ readonly type: "number";
1772
+ }, {
1773
+ readonly type: "number";
1774
+ }, {
1775
+ readonly type: "number";
1776
+ }, {
1777
+ readonly type: "number";
1778
+ }];
1779
+ readonly minItems: 4;
1780
+ readonly maxItems: 4;
1781
+ };
1782
+ };
1783
+ readonly additionalProperties: false;
1784
+ }];
1785
+ };
1786
+ };
1787
+ };
1788
+ export declare const objectTextParseResultV01Schema: {
1789
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1790
+ readonly $id: "https://skenion.dev/schemas/object-text/v0.1/parse-result.schema.json";
1791
+ readonly title: "Skenion Object Text Parse Result v0.1";
1792
+ readonly type: "object";
1793
+ readonly required: readonly ["schema", "schemaVersion", "input", "ok", "classSymbol", "creationArgs", "resolvedKind", "resolvedKindVersion", "params", "instancePorts", "displayText", "diagnostics"];
1794
+ readonly properties: {
1795
+ readonly schema: {
1796
+ readonly const: "skenion.object-text.parse-result";
1797
+ };
1798
+ readonly schemaVersion: {
1799
+ readonly const: "0.1.0";
1800
+ };
1801
+ readonly input: {
1802
+ readonly type: "string";
1803
+ readonly minLength: 1;
1804
+ };
1805
+ readonly ok: {
1806
+ readonly type: "boolean";
1807
+ };
1808
+ readonly classSymbol: {
1809
+ readonly type: "string";
1810
+ readonly minLength: 1;
1811
+ };
1812
+ readonly creationArgs: {
1813
+ readonly type: "array";
1814
+ readonly items: {
1815
+ readonly $ref: "#/$defs/atom";
1816
+ };
1817
+ };
1818
+ readonly resolvedKind: {
1819
+ readonly type: readonly ["string", "null"];
1820
+ readonly minLength: 1;
1821
+ };
1822
+ readonly resolvedKindVersion: {
1823
+ readonly type: readonly ["string", "null"];
1824
+ readonly minLength: 1;
1825
+ };
1826
+ readonly params: {
1827
+ readonly type: "object";
1828
+ readonly additionalProperties: true;
1829
+ };
1830
+ readonly instancePorts: {
1831
+ readonly type: "array";
1832
+ readonly items: {
1833
+ readonly $ref: "#/$defs/port";
1834
+ };
1835
+ };
1836
+ readonly displayText: {
1837
+ readonly type: "string";
1838
+ readonly minLength: 1;
1839
+ };
1840
+ readonly diagnostics: {
1841
+ readonly type: "array";
1842
+ readonly items: {
1843
+ readonly $ref: "#/$defs/diagnostic";
1844
+ };
1845
+ };
1846
+ };
1847
+ readonly additionalProperties: false;
1848
+ readonly $defs: {
1849
+ readonly atom: {
1850
+ readonly type: "object";
1851
+ readonly required: readonly ["type", "value"];
1852
+ readonly properties: {
1853
+ readonly type: {
1854
+ readonly enum: readonly ["float", "int", "uint", "bool", "symbol", "string"];
1855
+ };
1856
+ readonly value: {
1857
+ readonly anyOf: readonly [{
1858
+ readonly type: "number";
1859
+ }, {
1860
+ readonly type: "boolean";
1861
+ }, {
1862
+ readonly type: "string";
1863
+ }];
1864
+ };
1865
+ readonly representation: {
1866
+ readonly type: "string";
1867
+ readonly minLength: 1;
1868
+ };
1869
+ };
1870
+ readonly additionalProperties: false;
1871
+ };
1872
+ readonly port: {
1873
+ readonly type: "object";
1874
+ readonly required: readonly ["id", "direction", "type"];
1875
+ readonly properties: {
1876
+ readonly id: {
1877
+ readonly type: "string";
1878
+ readonly minLength: 1;
1879
+ };
1880
+ readonly direction: {
1881
+ readonly enum: readonly ["input", "output"];
1882
+ };
1883
+ readonly type: {
1884
+ readonly type: "string";
1885
+ readonly minLength: 1;
1886
+ };
1887
+ readonly rate: {
1888
+ readonly enum: readonly ["event", "control", "audio", "render", "gpu", "resource", "io"];
1889
+ };
1890
+ readonly activation: {
1891
+ readonly enum: readonly ["trigger", "latched", "passive"];
1892
+ };
1893
+ readonly defaultValue: true;
1894
+ readonly description: {
1895
+ readonly type: "string";
1896
+ };
1897
+ };
1898
+ readonly additionalProperties: false;
1899
+ };
1900
+ readonly diagnostic: {
1901
+ readonly type: "object";
1902
+ readonly required: readonly ["severity", "code", "message"];
1903
+ readonly properties: {
1904
+ readonly severity: {
1905
+ readonly enum: readonly ["error", "warning", "info"];
1906
+ };
1907
+ readonly code: {
1908
+ readonly type: "string";
1909
+ readonly minLength: 1;
1910
+ };
1911
+ readonly message: {
1912
+ readonly type: "string";
1913
+ readonly minLength: 1;
1914
+ };
1915
+ };
1916
+ readonly additionalProperties: false;
1917
+ };
1918
+ };
1919
+ };
1920
+ export declare const extensionManifestV01Schema: {
1921
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1922
+ readonly $id: "https://skenion.dev/schemas/extension/v0.1/extension-manifest.schema.json";
1923
+ readonly title: "Skenion Native Extension Manifest v0.1";
1924
+ readonly type: "object";
1925
+ readonly required: readonly ["schema", "schemaVersion", "id", "version", "runtimeAbiVersion", "kind", "provides", "permissions"];
1926
+ readonly properties: {
1927
+ readonly schema: {
1928
+ readonly const: "skenion.extension.manifest";
1929
+ };
1930
+ readonly schemaVersion: {
1931
+ readonly const: "0.1.0";
1932
+ };
1933
+ readonly id: {
1934
+ readonly type: "string";
1935
+ readonly pattern: "^[a-z0-9][a-z0-9._-]*(/[a-z0-9][a-z0-9._-]*)*$";
1936
+ };
1937
+ readonly version: {
1938
+ readonly type: "string";
1939
+ readonly minLength: 1;
1940
+ };
1941
+ readonly sdkVersion: {
1942
+ readonly type: "string";
1943
+ readonly minLength: 1;
1944
+ };
1945
+ readonly runtimeAbiVersion: {
1946
+ readonly type: "string";
1947
+ readonly minLength: 1;
1948
+ };
1949
+ readonly kind: {
1950
+ readonly enum: readonly ["core-package", "native-runtime", "codec", "node-pack"];
1951
+ };
1952
+ readonly native: {
1953
+ readonly $ref: "#/$defs/nativeBinding";
1954
+ };
1955
+ readonly provides: {
1956
+ readonly $ref: "#/$defs/provides";
1957
+ };
1958
+ readonly permissions: {
1959
+ readonly type: "array";
1960
+ readonly items: {
1961
+ readonly type: "string";
1962
+ readonly minLength: 1;
1963
+ };
1964
+ readonly uniqueItems: true;
1965
+ };
1966
+ readonly frontend: {
1967
+ readonly $ref: "#/$defs/frontendMetadata";
1968
+ };
1969
+ readonly tests: {
1970
+ readonly type: "array";
1971
+ readonly items: {
1972
+ readonly $ref: "#/$defs/test";
1973
+ };
1974
+ readonly default: readonly [];
1975
+ };
1976
+ };
1977
+ readonly allOf: readonly [{
1978
+ readonly if: {
1979
+ readonly properties: {
1980
+ readonly kind: {
1981
+ readonly const: "native-runtime";
1982
+ };
1983
+ };
1984
+ readonly required: readonly ["kind"];
1985
+ };
1986
+ readonly then: {
1987
+ readonly required: readonly ["native"];
1988
+ };
1989
+ }];
1990
+ readonly additionalProperties: false;
1991
+ readonly $defs: {
1992
+ readonly nativeBinding: {
1993
+ readonly type: "object";
1994
+ readonly required: readonly ["entrypoint", "artifacts"];
1995
+ readonly properties: {
1996
+ readonly entrypoint: {
1997
+ readonly type: "string";
1998
+ readonly minLength: 1;
1999
+ readonly default: "skenion_extension_init";
2000
+ };
2001
+ readonly artifacts: {
2002
+ readonly type: "array";
2003
+ readonly minItems: 1;
2004
+ readonly items: {
2005
+ readonly $ref: "#/$defs/nativeArtifact";
2006
+ };
2007
+ };
2008
+ };
2009
+ readonly additionalProperties: false;
2010
+ };
2011
+ readonly nativeArtifact: {
2012
+ readonly type: "object";
2013
+ readonly required: readonly ["os", "arch", "abi", "path"];
2014
+ readonly properties: {
2015
+ readonly os: {
2016
+ readonly type: "string";
2017
+ readonly minLength: 1;
2018
+ };
2019
+ readonly arch: {
2020
+ readonly type: "string";
2021
+ readonly minLength: 1;
2022
+ };
2023
+ readonly abi: {
2024
+ readonly const: "c";
2025
+ };
2026
+ readonly path: {
2027
+ readonly type: "string";
2028
+ readonly minLength: 1;
2029
+ };
2030
+ readonly sha256: {
2031
+ readonly type: "string";
2032
+ readonly pattern: "^[a-fA-F0-9]{64}$";
2033
+ };
2034
+ };
2035
+ readonly additionalProperties: false;
2036
+ };
2037
+ readonly provides: {
2038
+ readonly type: "object";
2039
+ readonly properties: {
2040
+ readonly nodes: {
2041
+ readonly type: "array";
2042
+ readonly items: {
2043
+ readonly $ref: "https://skenion.dev/schemas/node/v0.1/node-definition.schema.json";
2044
+ };
2045
+ readonly default: readonly [];
2046
+ };
2047
+ readonly codecs: {
2048
+ readonly type: "array";
2049
+ readonly items: {
2050
+ readonly $ref: "#/$defs/codec";
2051
+ };
2052
+ readonly default: readonly [];
2053
+ };
2054
+ readonly transports: {
2055
+ readonly type: "array";
2056
+ readonly items: {
2057
+ readonly $ref: "#/$defs/transport";
2058
+ };
2059
+ readonly default: readonly [];
2060
+ };
2061
+ readonly help: {
2062
+ readonly type: "array";
2063
+ readonly items: {
2064
+ readonly $ref: "#/$defs/helpEntry";
2065
+ };
2066
+ readonly default: readonly [];
2067
+ };
2068
+ };
2069
+ readonly additionalProperties: false;
2070
+ };
2071
+ readonly codec: {
2072
+ readonly type: "object";
2073
+ readonly required: readonly ["id", "version", "transportKinds", "direction"];
2074
+ readonly properties: {
2075
+ readonly id: {
2076
+ readonly type: "string";
2077
+ readonly minLength: 1;
2078
+ };
2079
+ readonly version: {
2080
+ readonly type: "string";
2081
+ readonly minLength: 1;
2082
+ };
2083
+ readonly transportKinds: {
2084
+ readonly type: "array";
2085
+ readonly items: {
2086
+ readonly enum: readonly ["midi", "hid", "serial", "inline"];
2087
+ };
2088
+ readonly minItems: 1;
2089
+ readonly uniqueItems: true;
2090
+ };
2091
+ readonly direction: {
2092
+ readonly enum: readonly ["decode", "encode", "duplex"];
2093
+ };
2094
+ };
2095
+ readonly additionalProperties: false;
2096
+ };
2097
+ readonly transport: {
2098
+ readonly type: "object";
2099
+ readonly required: readonly ["id", "version", "kind"];
2100
+ readonly properties: {
2101
+ readonly id: {
2102
+ readonly type: "string";
2103
+ readonly minLength: 1;
2104
+ };
2105
+ readonly version: {
2106
+ readonly type: "string";
2107
+ readonly minLength: 1;
2108
+ };
2109
+ readonly kind: {
2110
+ readonly type: "string";
2111
+ readonly minLength: 1;
2112
+ };
2113
+ };
2114
+ readonly additionalProperties: false;
2115
+ };
2116
+ readonly helpEntry: {
2117
+ readonly type: "object";
2118
+ readonly required: readonly ["nodeId"];
2119
+ readonly properties: {
2120
+ readonly nodeId: {
2121
+ readonly type: "string";
2122
+ readonly minLength: 1;
2123
+ };
2124
+ readonly nodeVersion: {
2125
+ readonly type: "string";
2126
+ readonly minLength: 1;
2127
+ };
2128
+ readonly title: {
2129
+ readonly type: "string";
2130
+ };
2131
+ readonly markdownPath: {
2132
+ readonly type: "string";
2133
+ readonly minLength: 1;
2134
+ };
2135
+ readonly graphPath: {
2136
+ readonly type: "string";
2137
+ readonly minLength: 1;
2138
+ };
2139
+ };
2140
+ readonly additionalProperties: false;
2141
+ };
2142
+ readonly test: {
2143
+ readonly type: "object";
2144
+ readonly required: readonly ["id", "kind", "target"];
2145
+ readonly properties: {
2146
+ readonly id: {
2147
+ readonly type: "string";
2148
+ readonly minLength: 1;
2149
+ };
2150
+ readonly kind: {
2151
+ readonly enum: readonly ["node", "codec", "extension"];
2152
+ };
2153
+ readonly target: {
2154
+ readonly type: "string";
2155
+ readonly minLength: 1;
2156
+ };
2157
+ readonly fixturePath: {
2158
+ readonly type: "string";
2159
+ readonly minLength: 1;
2160
+ };
2161
+ readonly expectedPath: {
2162
+ readonly type: "string";
2163
+ readonly minLength: 1;
2164
+ };
2165
+ };
2166
+ readonly additionalProperties: false;
2167
+ };
2168
+ readonly frontendMetadata: {
2169
+ readonly type: "object";
2170
+ readonly properties: {
2171
+ readonly displayName: {
2172
+ readonly type: "string";
2173
+ };
2174
+ readonly description: {
2175
+ readonly type: "string";
2176
+ };
2177
+ readonly tags: {
2178
+ readonly type: "array";
2179
+ readonly items: {
2180
+ readonly type: "string";
2181
+ };
2182
+ readonly uniqueItems: true;
2183
+ };
2184
+ };
2185
+ readonly additionalProperties: false;
2186
+ };
2187
+ };
2188
+ };
2189
+ //# sourceMappingURL=schemas.d.ts.map