@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,2689 @@
1
+ import type { GraphDocumentV01, NodeDefinitionManifestV01 } from "./types.js";
2
+ export interface BuiltinManifestV01 {
3
+ schema: "skenion.builtins.manifest";
4
+ schemaVersion: "0.1.0";
5
+ version: "0.1";
6
+ nodes: string[];
7
+ canonicalDataKinds: string[];
8
+ representations: Record<string, string[]>;
9
+ }
10
+ export interface BuiltinNodeHelpItemV01 {
11
+ id: string;
12
+ description: string;
13
+ }
14
+ export interface BuiltinNodeHelpExampleV01 {
15
+ title: string;
16
+ description?: string;
17
+ graph?: string;
18
+ }
19
+ export interface BuiltinNodeHelpV01 {
20
+ schema: "skenion.node.help";
21
+ schemaVersion: "0.1.0";
22
+ id: string;
23
+ summary: string;
24
+ description: string;
25
+ docsPath?: string;
26
+ helpGraph: string;
27
+ tags: string[];
28
+ runtimeBehavior?: string;
29
+ relatedNodes?: string[];
30
+ ports?: BuiltinNodeHelpItemV01[];
31
+ params?: BuiltinNodeHelpItemV01[];
32
+ example?: BuiltinNodeHelpExampleV01;
33
+ }
34
+ export interface BuiltinNodeHelpGraphV01 {
35
+ id: string;
36
+ graph: GraphDocumentV01;
37
+ }
38
+ export declare const builtinManifestV01: {
39
+ schema: "skenion.builtins.manifest";
40
+ schemaVersion: "0.1.0";
41
+ version: "0.1";
42
+ nodes: string[];
43
+ canonicalDataKinds: string[];
44
+ representations: {
45
+ "number.float": string[];
46
+ "number.int": string[];
47
+ "number.uint": string[];
48
+ color: string[];
49
+ };
50
+ };
51
+ export declare const builtinNodeDefinitionsV01: ({
52
+ schema: "skenion.node.definition";
53
+ schemaVersion: "0.1.0";
54
+ id: string;
55
+ version: string;
56
+ displayName: string;
57
+ category: string;
58
+ ports: ({
59
+ id: string;
60
+ direction: "input";
61
+ label: string;
62
+ type: {
63
+ flow: "signal";
64
+ dataKind: string;
65
+ };
66
+ required: false;
67
+ activation: "latched";
68
+ } | {
69
+ id: string;
70
+ direction: "output";
71
+ label: string;
72
+ type: {
73
+ flow: "signal";
74
+ dataKind: string;
75
+ };
76
+ required?: undefined;
77
+ activation?: undefined;
78
+ })[];
79
+ execution: {
80
+ model: "audio_block";
81
+ clock: "audio";
82
+ };
83
+ state: {
84
+ persistent: false;
85
+ };
86
+ permissions: never[];
87
+ capabilities: string[];
88
+ surface: {
89
+ palette: "direct";
90
+ };
91
+ } | {
92
+ schema: "skenion.node.definition";
93
+ schemaVersion: "0.1.0";
94
+ id: string;
95
+ version: string;
96
+ displayName: string;
97
+ category: string;
98
+ ports: ({
99
+ id: string;
100
+ direction: "input";
101
+ label: string;
102
+ type: {
103
+ flow: "event";
104
+ dataKind: string;
105
+ };
106
+ required: false;
107
+ activation: "trigger";
108
+ } | {
109
+ id: string;
110
+ direction: "output";
111
+ label: string;
112
+ type: {
113
+ flow: "signal";
114
+ dataKind: string;
115
+ };
116
+ required?: undefined;
117
+ activation?: undefined;
118
+ })[];
119
+ execution: {
120
+ model: "audio_block";
121
+ clock: "audio";
122
+ };
123
+ state: {
124
+ persistent: false;
125
+ };
126
+ permissions: never[];
127
+ capabilities: string[];
128
+ surface: {
129
+ palette: "direct";
130
+ };
131
+ } | {
132
+ schema: "skenion.node.definition";
133
+ schemaVersion: "0.1.0";
134
+ id: string;
135
+ version: string;
136
+ displayName: string;
137
+ category: string;
138
+ ports: ({
139
+ id: string;
140
+ direction: "input";
141
+ label: string;
142
+ type: {
143
+ flow: "signal";
144
+ dataKind: string;
145
+ };
146
+ required: false;
147
+ activation: "latched";
148
+ } | {
149
+ id: string;
150
+ direction: "output";
151
+ label: string;
152
+ type: {
153
+ flow: "signal";
154
+ dataKind: string;
155
+ };
156
+ required?: undefined;
157
+ activation?: undefined;
158
+ })[];
159
+ execution: {
160
+ model: "audio_block";
161
+ clock: "audio";
162
+ };
163
+ state: {
164
+ persistent: false;
165
+ };
166
+ permissions: never[];
167
+ capabilities: string[];
168
+ surface?: undefined;
169
+ } | {
170
+ schema: "skenion.node.definition";
171
+ schemaVersion: "0.1.0";
172
+ id: string;
173
+ version: string;
174
+ displayName: string;
175
+ category: string;
176
+ ports: ({
177
+ id: string;
178
+ direction: "input";
179
+ label: string;
180
+ type: {
181
+ flow: "value";
182
+ dataKind: string;
183
+ format: string;
184
+ };
185
+ required: false;
186
+ activation: "latched";
187
+ } | {
188
+ id: string;
189
+ direction: "output";
190
+ label: string;
191
+ type: {
192
+ flow: "signal";
193
+ dataKind: string;
194
+ format?: undefined;
195
+ };
196
+ required?: undefined;
197
+ activation?: undefined;
198
+ })[];
199
+ execution: {
200
+ model: "audio_block";
201
+ clock: "audio";
202
+ };
203
+ state: {
204
+ persistent: false;
205
+ };
206
+ permissions: never[];
207
+ capabilities: string[];
208
+ surface: {
209
+ palette: "direct";
210
+ };
211
+ } | {
212
+ schema: "skenion.node.definition";
213
+ schemaVersion: "0.1.0";
214
+ id: string;
215
+ version: string;
216
+ displayName: string;
217
+ category: string;
218
+ ports: ({
219
+ id: string;
220
+ direction: "input";
221
+ label: string;
222
+ type: {
223
+ flow: "signal";
224
+ dataKind: string;
225
+ format?: undefined;
226
+ };
227
+ required: false;
228
+ activation: "latched";
229
+ } | {
230
+ id: string;
231
+ direction: "input";
232
+ label: string;
233
+ type: {
234
+ flow: "event";
235
+ dataKind: string;
236
+ format?: undefined;
237
+ };
238
+ required: false;
239
+ activation: "trigger";
240
+ } | {
241
+ id: string;
242
+ direction: "output";
243
+ label: string;
244
+ type: {
245
+ flow: "value";
246
+ dataKind: string;
247
+ format: string;
248
+ };
249
+ required?: undefined;
250
+ activation?: undefined;
251
+ })[];
252
+ execution: {
253
+ model: "audio_block";
254
+ clock: "audio";
255
+ };
256
+ state: {
257
+ persistent: false;
258
+ };
259
+ permissions: never[];
260
+ capabilities: string[];
261
+ surface: {
262
+ palette: "direct";
263
+ };
264
+ } | {
265
+ schema: "skenion.node.definition";
266
+ schemaVersion: "0.1.0";
267
+ id: string;
268
+ version: string;
269
+ displayName: string;
270
+ category: string;
271
+ ports: ({
272
+ id: string;
273
+ direction: "input";
274
+ label: string;
275
+ type: {
276
+ flow: "value";
277
+ dataKind: string;
278
+ format?: undefined;
279
+ range?: undefined;
280
+ unit?: undefined;
281
+ };
282
+ required: false;
283
+ activation: "latched";
284
+ } | {
285
+ id: string;
286
+ direction: "input";
287
+ label: string;
288
+ type: {
289
+ flow: "event";
290
+ dataKind: string;
291
+ format?: undefined;
292
+ range?: undefined;
293
+ unit?: undefined;
294
+ };
295
+ required: false;
296
+ activation: "trigger";
297
+ } | {
298
+ id: string;
299
+ direction: "output";
300
+ label: string;
301
+ type: {
302
+ flow: "value";
303
+ dataKind: string;
304
+ format?: undefined;
305
+ range?: undefined;
306
+ unit?: undefined;
307
+ };
308
+ required?: undefined;
309
+ activation?: undefined;
310
+ } | {
311
+ id: string;
312
+ direction: "output";
313
+ label: string;
314
+ type: {
315
+ flow: "event";
316
+ dataKind: string;
317
+ format?: undefined;
318
+ range?: undefined;
319
+ unit?: undefined;
320
+ };
321
+ required?: undefined;
322
+ activation?: undefined;
323
+ } | {
324
+ id: string;
325
+ direction: "output";
326
+ label: string;
327
+ type: {
328
+ flow: "value";
329
+ dataKind: string;
330
+ format: string;
331
+ range: {
332
+ min: number;
333
+ max: number;
334
+ };
335
+ unit?: undefined;
336
+ };
337
+ required?: undefined;
338
+ activation?: undefined;
339
+ } | {
340
+ id: string;
341
+ direction: "output";
342
+ label: string;
343
+ type: {
344
+ flow: "value";
345
+ dataKind: string;
346
+ unit: string;
347
+ format: string;
348
+ range?: undefined;
349
+ };
350
+ required?: undefined;
351
+ activation?: undefined;
352
+ })[];
353
+ execution: {
354
+ model: "value";
355
+ clock: "beat";
356
+ };
357
+ state: {
358
+ persistent: false;
359
+ };
360
+ permissions: never[];
361
+ capabilities: string[];
362
+ surface: {
363
+ palette: "direct";
364
+ };
365
+ } | {
366
+ schema: "skenion.node.definition";
367
+ schemaVersion: "0.1.0";
368
+ id: string;
369
+ version: string;
370
+ displayName: string;
371
+ category: string;
372
+ ports: ({
373
+ id: string;
374
+ direction: "output";
375
+ label: string;
376
+ type: {
377
+ flow: "value";
378
+ dataKind: string;
379
+ };
380
+ } | {
381
+ id: string;
382
+ direction: "output";
383
+ label: string;
384
+ type: {
385
+ flow: "event";
386
+ dataKind: string;
387
+ };
388
+ })[];
389
+ execution: {
390
+ model: "value";
391
+ clock: "external";
392
+ };
393
+ state: {
394
+ persistent: false;
395
+ };
396
+ permissions: never[];
397
+ capabilities: string[];
398
+ surface: {
399
+ palette: "direct";
400
+ };
401
+ } | {
402
+ schema: "skenion.node.definition";
403
+ schemaVersion: "0.1.0";
404
+ id: string;
405
+ version: string;
406
+ displayName: string;
407
+ category: string;
408
+ ports: {
409
+ id: string;
410
+ direction: "input";
411
+ label: string;
412
+ type: {
413
+ flow: "value";
414
+ dataKind: string;
415
+ };
416
+ required: false;
417
+ activation: "latched";
418
+ }[];
419
+ execution: {
420
+ model: "value";
421
+ clock: "external";
422
+ };
423
+ state: {
424
+ persistent: false;
425
+ };
426
+ permissions: never[];
427
+ capabilities: string[];
428
+ surface: {
429
+ palette: "direct";
430
+ };
431
+ } | {
432
+ schema: "skenion.node.definition";
433
+ schemaVersion: "0.1.0";
434
+ id: string;
435
+ version: string;
436
+ displayName: string;
437
+ category: string;
438
+ ports: ({
439
+ id: string;
440
+ direction: "input";
441
+ label: string;
442
+ type: {
443
+ flow: "event";
444
+ dataKind: string;
445
+ };
446
+ required: false;
447
+ activation: "trigger";
448
+ } | {
449
+ id: string;
450
+ direction: "output";
451
+ label: string;
452
+ type: {
453
+ flow: "event";
454
+ dataKind: string;
455
+ };
456
+ required?: undefined;
457
+ activation?: undefined;
458
+ })[];
459
+ execution: {
460
+ model: "event";
461
+ clock?: undefined;
462
+ };
463
+ state: {
464
+ persistent: false;
465
+ };
466
+ permissions: never[];
467
+ capabilities: never[];
468
+ surface: {
469
+ palette: "direct";
470
+ };
471
+ } | {
472
+ schema: "skenion.node.definition";
473
+ schemaVersion: "0.1.0";
474
+ id: string;
475
+ version: string;
476
+ displayName: string;
477
+ category: string;
478
+ ports: ({
479
+ id: string;
480
+ direction: "input";
481
+ label: string;
482
+ type: {
483
+ flow: "event";
484
+ dataKind: string;
485
+ };
486
+ required: false;
487
+ activation: "trigger";
488
+ } | {
489
+ id: string;
490
+ direction: "input";
491
+ label: string;
492
+ type: {
493
+ flow: "value";
494
+ dataKind: string;
495
+ };
496
+ required: false;
497
+ activation: "latched";
498
+ } | {
499
+ id: string;
500
+ direction: "output";
501
+ label: string;
502
+ type: {
503
+ flow: "value";
504
+ dataKind: string;
505
+ };
506
+ required?: undefined;
507
+ activation?: undefined;
508
+ })[];
509
+ execution: {
510
+ model: "value";
511
+ clock?: undefined;
512
+ };
513
+ state: {
514
+ persistent: false;
515
+ };
516
+ permissions: never[];
517
+ capabilities: never[];
518
+ surface: {
519
+ palette: "direct";
520
+ };
521
+ } | {
522
+ schema: "skenion.node.definition";
523
+ schemaVersion: "0.1.0";
524
+ id: string;
525
+ version: string;
526
+ displayName: string;
527
+ category: string;
528
+ ports: ({
529
+ id: string;
530
+ direction: "input";
531
+ label: string;
532
+ type: {
533
+ flow: "event";
534
+ dataKind: string;
535
+ format?: undefined;
536
+ colorSpace?: undefined;
537
+ };
538
+ required: false;
539
+ activation: "trigger";
540
+ } | {
541
+ id: string;
542
+ direction: "input";
543
+ label: string;
544
+ type: {
545
+ flow: "value";
546
+ dataKind: string;
547
+ format: string;
548
+ colorSpace: string;
549
+ };
550
+ required: false;
551
+ activation: "latched";
552
+ } | {
553
+ id: string;
554
+ direction: "output";
555
+ label: string;
556
+ type: {
557
+ flow: "value";
558
+ dataKind: string;
559
+ format: string;
560
+ colorSpace: string;
561
+ };
562
+ required?: undefined;
563
+ activation?: undefined;
564
+ })[];
565
+ execution: {
566
+ model: "value";
567
+ clock?: undefined;
568
+ };
569
+ state: {
570
+ persistent: false;
571
+ };
572
+ permissions: never[];
573
+ capabilities: never[];
574
+ surface: {
575
+ palette: "direct";
576
+ };
577
+ } | {
578
+ schema: "skenion.node.definition";
579
+ schemaVersion: "0.1.0";
580
+ id: string;
581
+ version: string;
582
+ displayName: string;
583
+ category: string;
584
+ ports: ({
585
+ id: string;
586
+ direction: "input";
587
+ label: string;
588
+ type: {
589
+ flow: "event";
590
+ dataKind: string;
591
+ format?: undefined;
592
+ };
593
+ required: false;
594
+ activation: "trigger";
595
+ } | {
596
+ id: string;
597
+ direction: "input";
598
+ label: string;
599
+ type: {
600
+ flow: "value";
601
+ dataKind: string;
602
+ format: string;
603
+ };
604
+ required: false;
605
+ activation: "latched";
606
+ } | {
607
+ id: string;
608
+ direction: "output";
609
+ label: string;
610
+ type: {
611
+ flow: "value";
612
+ dataKind: string;
613
+ format: string;
614
+ };
615
+ required?: undefined;
616
+ activation?: undefined;
617
+ })[];
618
+ execution: {
619
+ model: "value";
620
+ clock?: undefined;
621
+ };
622
+ state: {
623
+ persistent: false;
624
+ };
625
+ permissions: never[];
626
+ capabilities: never[];
627
+ surface: {
628
+ palette: "direct";
629
+ };
630
+ } | {
631
+ schema: "skenion.node.definition";
632
+ schemaVersion: "0.1.0";
633
+ id: string;
634
+ version: string;
635
+ displayName: string;
636
+ category: string;
637
+ ports: ({
638
+ id: string;
639
+ direction: "input";
640
+ label: string;
641
+ type: {
642
+ flow: "stream";
643
+ dataKind: string;
644
+ frameRate: number;
645
+ colorSpace: string;
646
+ alphaPolicy: "black";
647
+ format?: undefined;
648
+ };
649
+ required: true;
650
+ activation: "latched";
651
+ } | {
652
+ id: string;
653
+ direction: "output";
654
+ label: string;
655
+ type: {
656
+ flow: "resource";
657
+ dataKind: string;
658
+ format: string;
659
+ colorSpace: string;
660
+ frameRate?: undefined;
661
+ alphaPolicy?: undefined;
662
+ };
663
+ required?: undefined;
664
+ activation?: undefined;
665
+ })[];
666
+ execution: {
667
+ model: "gpu_pass";
668
+ clock?: undefined;
669
+ };
670
+ state: {
671
+ persistent: false;
672
+ };
673
+ permissions: never[];
674
+ capabilities: never[];
675
+ surface: {
676
+ palette: "direct";
677
+ };
678
+ } | {
679
+ schema: "skenion.node.definition";
680
+ schemaVersion: "0.1.0";
681
+ id: string;
682
+ version: string;
683
+ displayName: string;
684
+ category: string;
685
+ ports: ({
686
+ id: string;
687
+ direction: "input";
688
+ label: string;
689
+ type: {
690
+ flow: "event";
691
+ dataKind: string;
692
+ format?: undefined;
693
+ };
694
+ required: false;
695
+ activation: "trigger";
696
+ default?: undefined;
697
+ } | {
698
+ id: string;
699
+ direction: "input";
700
+ label: string;
701
+ type: {
702
+ flow: "value";
703
+ dataKind: string;
704
+ format: string;
705
+ };
706
+ required: false;
707
+ activation: "latched";
708
+ default: number;
709
+ } | {
710
+ id: string;
711
+ direction: "output";
712
+ label: string;
713
+ type: {
714
+ flow: "value";
715
+ dataKind: string;
716
+ format: string;
717
+ };
718
+ required?: undefined;
719
+ activation?: undefined;
720
+ default?: undefined;
721
+ })[];
722
+ execution: {
723
+ model: "value";
724
+ clock?: undefined;
725
+ };
726
+ state: {
727
+ persistent: false;
728
+ };
729
+ permissions: never[];
730
+ capabilities: string[];
731
+ surface?: undefined;
732
+ } | {
733
+ schema: "skenion.node.definition";
734
+ schemaVersion: "0.1.0";
735
+ id: string;
736
+ version: string;
737
+ displayName: string;
738
+ category: string;
739
+ ports: {
740
+ id: string;
741
+ direction: "input";
742
+ label: string;
743
+ type: {
744
+ flow: "resource";
745
+ dataKind: string;
746
+ format: string;
747
+ colorSpace: string;
748
+ };
749
+ required: true;
750
+ activation: "latched";
751
+ }[];
752
+ execution: {
753
+ model: "frame";
754
+ clock?: undefined;
755
+ };
756
+ state: {
757
+ persistent: false;
758
+ };
759
+ permissions: never[];
760
+ capabilities: never[];
761
+ surface: {
762
+ palette: "direct";
763
+ };
764
+ } | {
765
+ schema: "skenion.node.definition";
766
+ schemaVersion: "0.1.0";
767
+ id: string;
768
+ version: string;
769
+ displayName: string;
770
+ category: string;
771
+ ports: never[];
772
+ execution: {
773
+ model: "event";
774
+ clock?: undefined;
775
+ };
776
+ state: {
777
+ persistent: false;
778
+ };
779
+ permissions: never[];
780
+ capabilities: string[];
781
+ surface?: undefined;
782
+ } | {
783
+ schema: "skenion.node.definition";
784
+ schemaVersion: "0.1.0";
785
+ id: string;
786
+ version: string;
787
+ displayName: string;
788
+ category: string;
789
+ ports: {
790
+ id: string;
791
+ direction: "output";
792
+ label: string;
793
+ type: {
794
+ flow: "resource";
795
+ dataKind: string;
796
+ };
797
+ }[];
798
+ execution: {
799
+ model: "async_resource";
800
+ clock?: undefined;
801
+ };
802
+ state: {
803
+ persistent: false;
804
+ };
805
+ permissions: never[];
806
+ capabilities: never[];
807
+ surface: {
808
+ palette: "direct";
809
+ };
810
+ } | {
811
+ schema: "skenion.node.definition";
812
+ schemaVersion: "0.1.0";
813
+ id: string;
814
+ version: string;
815
+ displayName: string;
816
+ category: string;
817
+ ports: ({
818
+ id: string;
819
+ direction: "input";
820
+ label: string;
821
+ type: {
822
+ flow: "resource";
823
+ dataKind: string;
824
+ frameRate?: undefined;
825
+ colorSpace?: undefined;
826
+ alphaPolicy?: undefined;
827
+ };
828
+ required: true;
829
+ activation: "latched";
830
+ } | {
831
+ id: string;
832
+ direction: "output";
833
+ label: string;
834
+ type: {
835
+ flow: "stream";
836
+ dataKind: string;
837
+ frameRate: number;
838
+ colorSpace: string;
839
+ alphaPolicy: "black";
840
+ };
841
+ required?: undefined;
842
+ activation?: undefined;
843
+ })[];
844
+ execution: {
845
+ model: "video_frame";
846
+ clock?: undefined;
847
+ };
848
+ state: {
849
+ persistent: false;
850
+ };
851
+ permissions: never[];
852
+ capabilities: never[];
853
+ surface: {
854
+ palette: "direct";
855
+ };
856
+ } | {
857
+ schema: "skenion.node.definition";
858
+ schemaVersion: "0.1.0";
859
+ id: string;
860
+ version: string;
861
+ displayName: string;
862
+ category: string;
863
+ ports: {
864
+ id: string;
865
+ direction: "output";
866
+ label: string;
867
+ type: {
868
+ flow: "resource";
869
+ dataKind: string;
870
+ format: string;
871
+ colorSpace: string;
872
+ };
873
+ }[];
874
+ execution: {
875
+ model: "gpu_pass";
876
+ clock: "frame";
877
+ };
878
+ state: {
879
+ persistent: false;
880
+ };
881
+ permissions: never[];
882
+ capabilities: string[];
883
+ surface: {
884
+ palette: "direct";
885
+ };
886
+ } | {
887
+ schema: "skenion.node.definition";
888
+ schemaVersion: "0.1.0";
889
+ id: string;
890
+ version: string;
891
+ displayName: string;
892
+ category: string;
893
+ ports: {
894
+ id: string;
895
+ direction: "input";
896
+ label: string;
897
+ type: {
898
+ flow: "resource";
899
+ dataKind: string;
900
+ format: string;
901
+ colorSpace: string;
902
+ };
903
+ required: true;
904
+ activation: "latched";
905
+ }[];
906
+ execution: {
907
+ model: "frame";
908
+ clock: "frame";
909
+ };
910
+ state: {
911
+ persistent: false;
912
+ };
913
+ permissions: never[];
914
+ capabilities: string[];
915
+ surface: {
916
+ palette: "direct";
917
+ };
918
+ })[];
919
+ export declare const builtinNodeHelpV01: ({
920
+ schema: "skenion.node.help";
921
+ schemaVersion: "0.1.0";
922
+ id: string;
923
+ summary: string;
924
+ description: string;
925
+ helpGraph: string;
926
+ tags: string[];
927
+ runtimeBehavior: string;
928
+ relatedNodes?: undefined;
929
+ ports?: undefined;
930
+ params?: undefined;
931
+ example?: undefined;
932
+ docsPath?: undefined;
933
+ } | {
934
+ schema: "skenion.node.help";
935
+ schemaVersion: "0.1.0";
936
+ id: string;
937
+ summary: string;
938
+ description: string;
939
+ helpGraph: string;
940
+ tags: string[];
941
+ runtimeBehavior: string;
942
+ relatedNodes: string[];
943
+ ports: {
944
+ id: string;
945
+ description: string;
946
+ }[];
947
+ params: {
948
+ id: string;
949
+ description: string;
950
+ }[];
951
+ example: {
952
+ title: string;
953
+ description: string;
954
+ graph: string;
955
+ };
956
+ docsPath?: undefined;
957
+ } | {
958
+ schema: "skenion.node.help";
959
+ schemaVersion: "0.1.0";
960
+ id: string;
961
+ summary: string;
962
+ description: string;
963
+ helpGraph: string;
964
+ tags: string[];
965
+ runtimeBehavior: string;
966
+ relatedNodes: string[];
967
+ ports: {
968
+ id: string;
969
+ description: string;
970
+ }[];
971
+ example: {
972
+ title: string;
973
+ description: string;
974
+ graph: string;
975
+ };
976
+ params?: undefined;
977
+ docsPath?: undefined;
978
+ } | {
979
+ schema: "skenion.node.help";
980
+ schemaVersion: "0.1.0";
981
+ id: string;
982
+ summary: string;
983
+ description: string;
984
+ docsPath: string;
985
+ helpGraph: string;
986
+ tags: string[];
987
+ runtimeBehavior: string;
988
+ relatedNodes: string[];
989
+ ports: {
990
+ id: string;
991
+ description: string;
992
+ }[];
993
+ params: {
994
+ id: string;
995
+ description: string;
996
+ }[];
997
+ example: {
998
+ title: string;
999
+ description: string;
1000
+ graph: string;
1001
+ };
1002
+ } | {
1003
+ schema: "skenion.node.help";
1004
+ schemaVersion: "0.1.0";
1005
+ id: string;
1006
+ summary: string;
1007
+ description: string;
1008
+ helpGraph: string;
1009
+ tags: string[];
1010
+ runtimeBehavior: string;
1011
+ relatedNodes: string[];
1012
+ params: {
1013
+ id: string;
1014
+ description: string;
1015
+ }[];
1016
+ example: {
1017
+ title: string;
1018
+ description: string;
1019
+ graph: string;
1020
+ };
1021
+ ports?: undefined;
1022
+ docsPath?: undefined;
1023
+ })[];
1024
+ export declare const builtinNodeHelpGraphsV01: ({
1025
+ id: string;
1026
+ graph: {
1027
+ schema: "skenion.graph";
1028
+ schemaVersion: "0.1.0";
1029
+ id: string;
1030
+ revision: string;
1031
+ nodes: ({
1032
+ id: string;
1033
+ kind: string;
1034
+ kindVersion: string;
1035
+ params: {
1036
+ clockDomain: string;
1037
+ };
1038
+ ports: {
1039
+ id: string;
1040
+ direction: "output";
1041
+ type: {
1042
+ flow: "signal";
1043
+ dataKind: string;
1044
+ };
1045
+ }[];
1046
+ } | {
1047
+ id: string;
1048
+ kind: string;
1049
+ kindVersion: string;
1050
+ params: {
1051
+ clockDomain?: undefined;
1052
+ };
1053
+ ports: ({
1054
+ id: string;
1055
+ direction: "input";
1056
+ type: {
1057
+ flow: "signal";
1058
+ dataKind: string;
1059
+ };
1060
+ activation: "latched";
1061
+ } | {
1062
+ id: string;
1063
+ direction: "output";
1064
+ type: {
1065
+ flow: "signal";
1066
+ dataKind: string;
1067
+ };
1068
+ activation?: undefined;
1069
+ })[];
1070
+ } | {
1071
+ id: string;
1072
+ kind: string;
1073
+ kindVersion: string;
1074
+ params: {
1075
+ clockDomain: string;
1076
+ };
1077
+ ports: {
1078
+ id: string;
1079
+ direction: "input";
1080
+ type: {
1081
+ flow: "signal";
1082
+ dataKind: string;
1083
+ };
1084
+ activation: "latched";
1085
+ }[];
1086
+ })[];
1087
+ edges: {
1088
+ from: {
1089
+ node: string;
1090
+ port: string;
1091
+ };
1092
+ to: {
1093
+ node: string;
1094
+ port: string;
1095
+ };
1096
+ }[];
1097
+ };
1098
+ } | {
1099
+ id: string;
1100
+ graph: {
1101
+ schema: "skenion.graph";
1102
+ schemaVersion: "0.1.0";
1103
+ id: string;
1104
+ revision: string;
1105
+ nodes: ({
1106
+ id: string;
1107
+ kind: string;
1108
+ kindVersion: string;
1109
+ params: {
1110
+ frequency: number;
1111
+ };
1112
+ ports: ({
1113
+ id: string;
1114
+ direction: "input";
1115
+ type: {
1116
+ flow: "value";
1117
+ dataKind: string;
1118
+ format: string;
1119
+ };
1120
+ activation: "latched";
1121
+ } | {
1122
+ id: string;
1123
+ direction: "output";
1124
+ type: {
1125
+ flow: "signal";
1126
+ dataKind: string;
1127
+ format?: undefined;
1128
+ };
1129
+ activation?: undefined;
1130
+ })[];
1131
+ } | {
1132
+ id: string;
1133
+ kind: string;
1134
+ kindVersion: string;
1135
+ params: {
1136
+ frequency?: undefined;
1137
+ };
1138
+ ports: {
1139
+ id: string;
1140
+ direction: "input";
1141
+ type: {
1142
+ flow: "signal";
1143
+ dataKind: string;
1144
+ };
1145
+ activation: "latched";
1146
+ }[];
1147
+ })[];
1148
+ edges: {
1149
+ from: {
1150
+ node: string;
1151
+ port: string;
1152
+ };
1153
+ to: {
1154
+ node: string;
1155
+ port: string;
1156
+ };
1157
+ }[];
1158
+ };
1159
+ } | {
1160
+ id: string;
1161
+ graph: {
1162
+ schema: "skenion.graph";
1163
+ schemaVersion: "0.1.0";
1164
+ id: string;
1165
+ revision: string;
1166
+ nodes: ({
1167
+ id: string;
1168
+ kind: string;
1169
+ kindVersion: string;
1170
+ params: {
1171
+ clockDomain: string;
1172
+ quality?: undefined;
1173
+ };
1174
+ ports: {
1175
+ id: string;
1176
+ direction: "output";
1177
+ type: {
1178
+ flow: "signal";
1179
+ dataKind: string;
1180
+ };
1181
+ }[];
1182
+ } | {
1183
+ id: string;
1184
+ kind: string;
1185
+ kindVersion: string;
1186
+ params: {
1187
+ quality: string;
1188
+ clockDomain?: undefined;
1189
+ };
1190
+ ports: ({
1191
+ id: string;
1192
+ direction: "input";
1193
+ type: {
1194
+ flow: "signal";
1195
+ dataKind: string;
1196
+ };
1197
+ activation: "latched";
1198
+ } | {
1199
+ id: string;
1200
+ direction: "output";
1201
+ type: {
1202
+ flow: "signal";
1203
+ dataKind: string;
1204
+ };
1205
+ activation?: undefined;
1206
+ })[];
1207
+ } | {
1208
+ id: string;
1209
+ kind: string;
1210
+ kindVersion: string;
1211
+ params: {
1212
+ clockDomain: string;
1213
+ quality?: undefined;
1214
+ };
1215
+ ports: {
1216
+ id: string;
1217
+ direction: "input";
1218
+ type: {
1219
+ flow: "signal";
1220
+ dataKind: string;
1221
+ };
1222
+ activation: "latched";
1223
+ }[];
1224
+ })[];
1225
+ edges: {
1226
+ from: {
1227
+ node: string;
1228
+ port: string;
1229
+ };
1230
+ to: {
1231
+ node: string;
1232
+ port: string;
1233
+ };
1234
+ }[];
1235
+ };
1236
+ } | {
1237
+ id: string;
1238
+ graph: {
1239
+ schema: "skenion.graph";
1240
+ schemaVersion: "0.1.0";
1241
+ id: string;
1242
+ revision: string;
1243
+ nodes: ({
1244
+ id: string;
1245
+ kind: string;
1246
+ kindVersion: string;
1247
+ params: {
1248
+ tempoBpm: number;
1249
+ running: boolean;
1250
+ };
1251
+ ports: ({
1252
+ id: string;
1253
+ direction: "input";
1254
+ label: string;
1255
+ type: {
1256
+ flow: "value";
1257
+ dataKind: string;
1258
+ format?: undefined;
1259
+ range?: undefined;
1260
+ unit?: undefined;
1261
+ };
1262
+ required: false;
1263
+ activation: "latched";
1264
+ } | {
1265
+ id: string;
1266
+ direction: "input";
1267
+ label: string;
1268
+ type: {
1269
+ flow: "event";
1270
+ dataKind: string;
1271
+ format?: undefined;
1272
+ range?: undefined;
1273
+ unit?: undefined;
1274
+ };
1275
+ required: false;
1276
+ activation: "trigger";
1277
+ } | {
1278
+ id: string;
1279
+ direction: "output";
1280
+ label: string;
1281
+ type: {
1282
+ flow: "value";
1283
+ dataKind: string;
1284
+ format?: undefined;
1285
+ range?: undefined;
1286
+ unit?: undefined;
1287
+ };
1288
+ required?: undefined;
1289
+ activation?: undefined;
1290
+ } | {
1291
+ id: string;
1292
+ direction: "output";
1293
+ label: string;
1294
+ type: {
1295
+ flow: "event";
1296
+ dataKind: string;
1297
+ format?: undefined;
1298
+ range?: undefined;
1299
+ unit?: undefined;
1300
+ };
1301
+ required?: undefined;
1302
+ activation?: undefined;
1303
+ } | {
1304
+ id: string;
1305
+ direction: "output";
1306
+ label: string;
1307
+ type: {
1308
+ flow: "value";
1309
+ dataKind: string;
1310
+ format: string;
1311
+ range: {
1312
+ min: number;
1313
+ max: number;
1314
+ };
1315
+ unit?: undefined;
1316
+ };
1317
+ required?: undefined;
1318
+ activation?: undefined;
1319
+ } | {
1320
+ id: string;
1321
+ direction: "output";
1322
+ label: string;
1323
+ type: {
1324
+ flow: "value";
1325
+ dataKind: string;
1326
+ unit: string;
1327
+ format: string;
1328
+ range?: undefined;
1329
+ };
1330
+ required?: undefined;
1331
+ activation?: undefined;
1332
+ })[];
1333
+ } | {
1334
+ id: string;
1335
+ kind: string;
1336
+ kindVersion: string;
1337
+ params: {
1338
+ tempoBpm?: undefined;
1339
+ running?: undefined;
1340
+ };
1341
+ ports: {
1342
+ id: string;
1343
+ direction: "input";
1344
+ label: string;
1345
+ type: {
1346
+ flow: "value";
1347
+ dataKind: string;
1348
+ };
1349
+ required: false;
1350
+ activation: "latched";
1351
+ }[];
1352
+ })[];
1353
+ edges: {
1354
+ from: {
1355
+ node: string;
1356
+ port: string;
1357
+ };
1358
+ to: {
1359
+ node: string;
1360
+ port: string;
1361
+ };
1362
+ }[];
1363
+ };
1364
+ } | {
1365
+ id: string;
1366
+ graph: {
1367
+ schema: "skenion.graph";
1368
+ schemaVersion: "0.1.0";
1369
+ id: string;
1370
+ revision: string;
1371
+ nodes: ({
1372
+ id: string;
1373
+ kind: string;
1374
+ kindVersion: string;
1375
+ params: {
1376
+ sourceId: string;
1377
+ timeSignatureNumerator: number;
1378
+ timeSignatureDenominator: number;
1379
+ };
1380
+ ports: ({
1381
+ id: string;
1382
+ direction: "output";
1383
+ label: string;
1384
+ type: {
1385
+ flow: "value";
1386
+ dataKind: string;
1387
+ };
1388
+ } | {
1389
+ id: string;
1390
+ direction: "output";
1391
+ label: string;
1392
+ type: {
1393
+ flow: "event";
1394
+ dataKind: string;
1395
+ };
1396
+ })[];
1397
+ } | {
1398
+ id: string;
1399
+ kind: string;
1400
+ kindVersion: string;
1401
+ params: {
1402
+ sourceId?: undefined;
1403
+ timeSignatureNumerator?: undefined;
1404
+ timeSignatureDenominator?: undefined;
1405
+ };
1406
+ ports: {
1407
+ id: string;
1408
+ direction: "input";
1409
+ label: string;
1410
+ type: {
1411
+ flow: "value";
1412
+ dataKind: string;
1413
+ };
1414
+ required: false;
1415
+ activation: "latched";
1416
+ }[];
1417
+ })[];
1418
+ edges: {
1419
+ from: {
1420
+ node: string;
1421
+ port: string;
1422
+ };
1423
+ to: {
1424
+ node: string;
1425
+ port: string;
1426
+ };
1427
+ }[];
1428
+ };
1429
+ } | {
1430
+ id: string;
1431
+ graph: {
1432
+ schema: "skenion.graph";
1433
+ schemaVersion: "0.1.0";
1434
+ id: string;
1435
+ revision: string;
1436
+ nodes: ({
1437
+ id: string;
1438
+ kind: string;
1439
+ kindVersion: string;
1440
+ params: {
1441
+ tempoBpm: number;
1442
+ running: boolean;
1443
+ fields?: undefined;
1444
+ };
1445
+ ports: {
1446
+ id: string;
1447
+ direction: "output";
1448
+ label: string;
1449
+ type: {
1450
+ flow: "value";
1451
+ dataKind: string;
1452
+ };
1453
+ }[];
1454
+ } | {
1455
+ id: string;
1456
+ kind: string;
1457
+ kindVersion: string;
1458
+ params: {
1459
+ fields: string[];
1460
+ tempoBpm?: undefined;
1461
+ running?: undefined;
1462
+ };
1463
+ ports: {
1464
+ id: string;
1465
+ direction: "input";
1466
+ label: string;
1467
+ type: {
1468
+ flow: "value";
1469
+ dataKind: string;
1470
+ };
1471
+ required: false;
1472
+ activation: "latched";
1473
+ }[];
1474
+ })[];
1475
+ edges: {
1476
+ from: {
1477
+ node: string;
1478
+ port: string;
1479
+ };
1480
+ to: {
1481
+ node: string;
1482
+ port: string;
1483
+ };
1484
+ }[];
1485
+ };
1486
+ } | {
1487
+ id: string;
1488
+ graph: {
1489
+ schema: "skenion.graph";
1490
+ schemaVersion: "0.1.0";
1491
+ id: string;
1492
+ revision: string;
1493
+ nodes: ({
1494
+ id: string;
1495
+ kind: string;
1496
+ kindVersion: string;
1497
+ params: {
1498
+ value?: undefined;
1499
+ representation?: undefined;
1500
+ widget?: undefined;
1501
+ };
1502
+ ports: ({
1503
+ id: string;
1504
+ direction: "input";
1505
+ label: string;
1506
+ type: {
1507
+ flow: "event";
1508
+ dataKind: string;
1509
+ };
1510
+ required: false;
1511
+ activation: "trigger";
1512
+ } | {
1513
+ id: string;
1514
+ direction: "output";
1515
+ label: string;
1516
+ type: {
1517
+ flow: "event";
1518
+ dataKind: string;
1519
+ };
1520
+ required?: undefined;
1521
+ activation?: undefined;
1522
+ })[];
1523
+ } | {
1524
+ id: string;
1525
+ kind: string;
1526
+ kindVersion: string;
1527
+ params: {
1528
+ value: number;
1529
+ representation: string;
1530
+ widget: string;
1531
+ };
1532
+ ports: ({
1533
+ id: string;
1534
+ direction: "input";
1535
+ label: string;
1536
+ type: {
1537
+ flow: "event";
1538
+ dataKind: string;
1539
+ format?: undefined;
1540
+ };
1541
+ required: false;
1542
+ activation: "trigger";
1543
+ } | {
1544
+ id: string;
1545
+ direction: "input";
1546
+ label: string;
1547
+ type: {
1548
+ flow: "value";
1549
+ dataKind: string;
1550
+ format: string;
1551
+ };
1552
+ required: false;
1553
+ activation: "latched";
1554
+ } | {
1555
+ id: string;
1556
+ direction: "output";
1557
+ label: string;
1558
+ type: {
1559
+ flow: "value";
1560
+ dataKind: string;
1561
+ format: string;
1562
+ };
1563
+ required?: undefined;
1564
+ activation?: undefined;
1565
+ })[];
1566
+ })[];
1567
+ edges: {
1568
+ from: {
1569
+ node: string;
1570
+ port: string;
1571
+ };
1572
+ to: {
1573
+ node: string;
1574
+ port: string;
1575
+ };
1576
+ }[];
1577
+ };
1578
+ } | {
1579
+ id: string;
1580
+ graph: {
1581
+ schema: "skenion.graph";
1582
+ schemaVersion: "0.1.0";
1583
+ id: string;
1584
+ revision: string;
1585
+ nodes: ({
1586
+ id: string;
1587
+ kind: string;
1588
+ kindVersion: string;
1589
+ params: {
1590
+ text: string;
1591
+ value?: undefined;
1592
+ widget?: undefined;
1593
+ };
1594
+ ports: never[];
1595
+ } | {
1596
+ id: string;
1597
+ kindVersion: string;
1598
+ params: {
1599
+ text?: undefined;
1600
+ value?: undefined;
1601
+ widget?: undefined;
1602
+ };
1603
+ ports: ({
1604
+ id: string;
1605
+ direction: "input";
1606
+ label: string;
1607
+ type: {
1608
+ flow: "event";
1609
+ dataKind: string;
1610
+ };
1611
+ required: false;
1612
+ activation: "trigger";
1613
+ } | {
1614
+ id: string;
1615
+ direction: "output";
1616
+ label: string;
1617
+ type: {
1618
+ flow: "event";
1619
+ dataKind: string;
1620
+ };
1621
+ required?: undefined;
1622
+ activation?: undefined;
1623
+ })[];
1624
+ kind: string;
1625
+ } | {
1626
+ id: string;
1627
+ kind: string;
1628
+ kindVersion: string;
1629
+ params: {
1630
+ value: boolean;
1631
+ text?: undefined;
1632
+ widget?: undefined;
1633
+ };
1634
+ ports: ({
1635
+ id: string;
1636
+ direction: "input";
1637
+ label: string;
1638
+ type: {
1639
+ flow: "event";
1640
+ dataKind: string;
1641
+ };
1642
+ required: false;
1643
+ activation: "trigger";
1644
+ } | {
1645
+ id: string;
1646
+ direction: "input";
1647
+ label: string;
1648
+ type: {
1649
+ flow: "value";
1650
+ dataKind: string;
1651
+ };
1652
+ required: false;
1653
+ activation: "latched";
1654
+ } | {
1655
+ id: string;
1656
+ direction: "output";
1657
+ label: string;
1658
+ type: {
1659
+ flow: "value";
1660
+ dataKind: string;
1661
+ };
1662
+ required?: undefined;
1663
+ activation?: undefined;
1664
+ })[];
1665
+ } | {
1666
+ id: string;
1667
+ kindVersion: string;
1668
+ params: {
1669
+ value: boolean;
1670
+ widget: string;
1671
+ text?: undefined;
1672
+ };
1673
+ ports: ({
1674
+ id: string;
1675
+ direction: "input";
1676
+ label: string;
1677
+ type: {
1678
+ flow: "event";
1679
+ dataKind: string;
1680
+ };
1681
+ required: false;
1682
+ activation: "trigger";
1683
+ } | {
1684
+ id: string;
1685
+ direction: "input";
1686
+ label: string;
1687
+ type: {
1688
+ flow: "value";
1689
+ dataKind: string;
1690
+ };
1691
+ required: false;
1692
+ activation: "latched";
1693
+ } | {
1694
+ id: string;
1695
+ direction: "output";
1696
+ label: string;
1697
+ type: {
1698
+ flow: "value";
1699
+ dataKind: string;
1700
+ };
1701
+ required?: undefined;
1702
+ activation?: undefined;
1703
+ })[];
1704
+ kind: string;
1705
+ })[];
1706
+ edges: {
1707
+ from: {
1708
+ node: string;
1709
+ port: string;
1710
+ };
1711
+ to: {
1712
+ node: string;
1713
+ port: string;
1714
+ };
1715
+ }[];
1716
+ };
1717
+ } | {
1718
+ id: string;
1719
+ graph: {
1720
+ schema: "skenion.graph";
1721
+ schemaVersion: "0.1.0";
1722
+ id: string;
1723
+ revision: string;
1724
+ nodes: ({
1725
+ id: string;
1726
+ kind: string;
1727
+ kindVersion: string;
1728
+ params: {
1729
+ text: string;
1730
+ value?: undefined;
1731
+ representation?: undefined;
1732
+ colorSpace?: undefined;
1733
+ language?: undefined;
1734
+ source?: undefined;
1735
+ };
1736
+ ports: never[];
1737
+ } | {
1738
+ id: string;
1739
+ kind: string;
1740
+ kindVersion: string;
1741
+ params: {
1742
+ value: number[];
1743
+ representation: string;
1744
+ colorSpace: string;
1745
+ text?: undefined;
1746
+ language?: undefined;
1747
+ source?: undefined;
1748
+ };
1749
+ ports: ({
1750
+ id: string;
1751
+ direction: "input";
1752
+ label: string;
1753
+ type: {
1754
+ flow: "event";
1755
+ dataKind: string;
1756
+ format?: undefined;
1757
+ colorSpace?: undefined;
1758
+ };
1759
+ required: false;
1760
+ activation: "trigger";
1761
+ } | {
1762
+ id: string;
1763
+ direction: "input";
1764
+ label: string;
1765
+ type: {
1766
+ flow: "value";
1767
+ dataKind: string;
1768
+ format: string;
1769
+ colorSpace: string;
1770
+ };
1771
+ required: false;
1772
+ activation: "latched";
1773
+ } | {
1774
+ id: string;
1775
+ direction: "output";
1776
+ label: string;
1777
+ type: {
1778
+ flow: "value";
1779
+ dataKind: string;
1780
+ format: string;
1781
+ colorSpace: string;
1782
+ };
1783
+ required?: undefined;
1784
+ activation?: undefined;
1785
+ })[];
1786
+ } | {
1787
+ id: string;
1788
+ kind: string;
1789
+ kindVersion: string;
1790
+ params: {
1791
+ language: string;
1792
+ source: string;
1793
+ text?: undefined;
1794
+ value?: undefined;
1795
+ representation?: undefined;
1796
+ colorSpace?: undefined;
1797
+ };
1798
+ ports: ({
1799
+ id: string;
1800
+ direction: "input";
1801
+ label: string;
1802
+ type: {
1803
+ flow: "value";
1804
+ dataKind: string;
1805
+ format: string;
1806
+ colorSpace: string;
1807
+ };
1808
+ activation: "latched";
1809
+ } | {
1810
+ id: string;
1811
+ direction: "output";
1812
+ label: string;
1813
+ type: {
1814
+ flow: "resource";
1815
+ dataKind: string;
1816
+ format: string;
1817
+ colorSpace: string;
1818
+ };
1819
+ activation?: undefined;
1820
+ })[];
1821
+ } | {
1822
+ id: string;
1823
+ kind: string;
1824
+ kindVersion: string;
1825
+ params: {
1826
+ text?: undefined;
1827
+ value?: undefined;
1828
+ representation?: undefined;
1829
+ colorSpace?: undefined;
1830
+ language?: undefined;
1831
+ source?: undefined;
1832
+ };
1833
+ ports: {
1834
+ id: string;
1835
+ direction: "input";
1836
+ label: string;
1837
+ type: {
1838
+ flow: "resource";
1839
+ dataKind: string;
1840
+ format: string;
1841
+ colorSpace: string;
1842
+ };
1843
+ activation: "latched";
1844
+ }[];
1845
+ })[];
1846
+ edges: {
1847
+ from: {
1848
+ node: string;
1849
+ port: string;
1850
+ };
1851
+ to: {
1852
+ node: string;
1853
+ port: string;
1854
+ };
1855
+ }[];
1856
+ };
1857
+ } | {
1858
+ id: string;
1859
+ graph: {
1860
+ schema: "skenion.graph";
1861
+ schemaVersion: "0.1.0";
1862
+ id: string;
1863
+ revision: string;
1864
+ nodes: ({
1865
+ id: string;
1866
+ kind: string;
1867
+ kindVersion: string;
1868
+ params: {
1869
+ text: string;
1870
+ value?: undefined;
1871
+ representation?: undefined;
1872
+ };
1873
+ ports: never[];
1874
+ } | {
1875
+ id: string;
1876
+ kindVersion: string;
1877
+ params: {
1878
+ text?: undefined;
1879
+ value?: undefined;
1880
+ representation?: undefined;
1881
+ };
1882
+ ports: ({
1883
+ id: string;
1884
+ direction: "input";
1885
+ label: string;
1886
+ type: {
1887
+ flow: "event";
1888
+ dataKind: string;
1889
+ };
1890
+ required: false;
1891
+ activation: "trigger";
1892
+ } | {
1893
+ id: string;
1894
+ direction: "output";
1895
+ label: string;
1896
+ type: {
1897
+ flow: "event";
1898
+ dataKind: string;
1899
+ };
1900
+ required?: undefined;
1901
+ activation?: undefined;
1902
+ })[];
1903
+ kind: string;
1904
+ } | {
1905
+ id: string;
1906
+ kind: string;
1907
+ kindVersion: string;
1908
+ params: {
1909
+ value: number;
1910
+ representation: string;
1911
+ text?: undefined;
1912
+ };
1913
+ ports: ({
1914
+ id: string;
1915
+ direction: "input";
1916
+ label: string;
1917
+ type: {
1918
+ flow: "event";
1919
+ dataKind: string;
1920
+ format?: undefined;
1921
+ };
1922
+ required: false;
1923
+ activation: "trigger";
1924
+ } | {
1925
+ id: string;
1926
+ direction: "input";
1927
+ label: string;
1928
+ type: {
1929
+ flow: "value";
1930
+ dataKind: string;
1931
+ format: string;
1932
+ };
1933
+ required: false;
1934
+ activation: "latched";
1935
+ } | {
1936
+ id: string;
1937
+ direction: "output";
1938
+ label: string;
1939
+ type: {
1940
+ flow: "value";
1941
+ dataKind: string;
1942
+ format: string;
1943
+ };
1944
+ required?: undefined;
1945
+ activation?: undefined;
1946
+ })[];
1947
+ } | {
1948
+ id: string;
1949
+ kindVersion: string;
1950
+ params: {
1951
+ text?: undefined;
1952
+ value?: undefined;
1953
+ representation?: undefined;
1954
+ };
1955
+ ports: ({
1956
+ id: string;
1957
+ direction: "input";
1958
+ label: string;
1959
+ type: {
1960
+ flow: "event";
1961
+ dataKind: string;
1962
+ format?: undefined;
1963
+ };
1964
+ required: false;
1965
+ activation: "trigger";
1966
+ } | {
1967
+ id: string;
1968
+ direction: "input";
1969
+ label: string;
1970
+ type: {
1971
+ flow: "value";
1972
+ dataKind: string;
1973
+ format: string;
1974
+ };
1975
+ required: false;
1976
+ activation: "latched";
1977
+ } | {
1978
+ id: string;
1979
+ direction: "output";
1980
+ label: string;
1981
+ type: {
1982
+ flow: "value";
1983
+ dataKind: string;
1984
+ format: string;
1985
+ };
1986
+ required?: undefined;
1987
+ activation?: undefined;
1988
+ })[];
1989
+ kind: string;
1990
+ })[];
1991
+ edges: {
1992
+ from: {
1993
+ node: string;
1994
+ port: string;
1995
+ };
1996
+ to: {
1997
+ node: string;
1998
+ port: string;
1999
+ };
2000
+ }[];
2001
+ };
2002
+ } | {
2003
+ id: string;
2004
+ graph: {
2005
+ schema: "skenion.graph";
2006
+ schemaVersion: "0.1.0";
2007
+ id: string;
2008
+ revision: string;
2009
+ nodes: ({
2010
+ id: string;
2011
+ kind: string;
2012
+ kindVersion: string;
2013
+ params: {
2014
+ src: string;
2015
+ };
2016
+ ports: {
2017
+ id: string;
2018
+ direction: "output";
2019
+ label: string;
2020
+ type: {
2021
+ flow: "resource";
2022
+ dataKind: string;
2023
+ };
2024
+ }[];
2025
+ } | {
2026
+ id: string;
2027
+ kind: string;
2028
+ kindVersion: string;
2029
+ params: {
2030
+ src?: undefined;
2031
+ };
2032
+ ports: ({
2033
+ id: string;
2034
+ direction: "input";
2035
+ label: string;
2036
+ type: {
2037
+ flow: "resource";
2038
+ dataKind: string;
2039
+ frameRate?: undefined;
2040
+ colorSpace?: undefined;
2041
+ alphaPolicy?: undefined;
2042
+ };
2043
+ activation: "latched";
2044
+ } | {
2045
+ id: string;
2046
+ direction: "output";
2047
+ label: string;
2048
+ type: {
2049
+ flow: "stream";
2050
+ dataKind: string;
2051
+ frameRate: number;
2052
+ colorSpace: string;
2053
+ alphaPolicy: "black";
2054
+ };
2055
+ activation?: undefined;
2056
+ })[];
2057
+ } | {
2058
+ id: string;
2059
+ kind: string;
2060
+ kindVersion: string;
2061
+ params: {
2062
+ src?: undefined;
2063
+ };
2064
+ ports: ({
2065
+ id: string;
2066
+ direction: "input";
2067
+ label: string;
2068
+ type: {
2069
+ flow: "stream";
2070
+ dataKind: string;
2071
+ frameRate: number;
2072
+ colorSpace: string;
2073
+ alphaPolicy: "black";
2074
+ format?: undefined;
2075
+ };
2076
+ activation: "latched";
2077
+ } | {
2078
+ id: string;
2079
+ direction: "output";
2080
+ label: string;
2081
+ type: {
2082
+ flow: "resource";
2083
+ dataKind: string;
2084
+ format: string;
2085
+ colorSpace: string;
2086
+ frameRate?: undefined;
2087
+ alphaPolicy?: undefined;
2088
+ };
2089
+ activation?: undefined;
2090
+ })[];
2091
+ } | {
2092
+ id: string;
2093
+ kind: string;
2094
+ kindVersion: string;
2095
+ params: {
2096
+ src?: undefined;
2097
+ };
2098
+ ports: {
2099
+ id: string;
2100
+ direction: "input";
2101
+ label: string;
2102
+ type: {
2103
+ flow: "resource";
2104
+ dataKind: string;
2105
+ format: string;
2106
+ colorSpace: string;
2107
+ };
2108
+ activation: "latched";
2109
+ }[];
2110
+ })[];
2111
+ edges: {
2112
+ from: {
2113
+ node: string;
2114
+ port: string;
2115
+ };
2116
+ to: {
2117
+ node: string;
2118
+ port: string;
2119
+ };
2120
+ }[];
2121
+ };
2122
+ } | {
2123
+ id: string;
2124
+ graph: {
2125
+ schema: "skenion.graph";
2126
+ schemaVersion: "0.1.0";
2127
+ id: string;
2128
+ revision: string;
2129
+ nodes: ({
2130
+ id: string;
2131
+ kind: string;
2132
+ kindVersion: string;
2133
+ params: {
2134
+ text: string;
2135
+ value?: undefined;
2136
+ };
2137
+ ports: never[];
2138
+ } | {
2139
+ id: string;
2140
+ kindVersion: string;
2141
+ params: {
2142
+ text?: undefined;
2143
+ value?: undefined;
2144
+ };
2145
+ ports: ({
2146
+ id: string;
2147
+ direction: "input";
2148
+ label: string;
2149
+ type: {
2150
+ flow: "event";
2151
+ dataKind: string;
2152
+ };
2153
+ required: false;
2154
+ activation: "trigger";
2155
+ } | {
2156
+ id: string;
2157
+ direction: "output";
2158
+ label: string;
2159
+ type: {
2160
+ flow: "event";
2161
+ dataKind: string;
2162
+ };
2163
+ required?: undefined;
2164
+ activation?: undefined;
2165
+ })[];
2166
+ kind: string;
2167
+ } | {
2168
+ id: string;
2169
+ kind: string;
2170
+ kindVersion: string;
2171
+ params: {
2172
+ value: string;
2173
+ text?: undefined;
2174
+ };
2175
+ ports: ({
2176
+ id: string;
2177
+ direction: "input";
2178
+ label: string;
2179
+ type: {
2180
+ flow: "event";
2181
+ dataKind: string;
2182
+ };
2183
+ required: false;
2184
+ activation: "trigger";
2185
+ } | {
2186
+ id: string;
2187
+ direction: "output";
2188
+ label: string;
2189
+ type: {
2190
+ flow: "event";
2191
+ dataKind: string;
2192
+ };
2193
+ required?: undefined;
2194
+ activation?: undefined;
2195
+ })[];
2196
+ })[];
2197
+ edges: {
2198
+ from: {
2199
+ node: string;
2200
+ port: string;
2201
+ };
2202
+ to: {
2203
+ node: string;
2204
+ port: string;
2205
+ };
2206
+ }[];
2207
+ };
2208
+ } | {
2209
+ id: string;
2210
+ graph: {
2211
+ schema: "skenion.graph";
2212
+ schemaVersion: "0.1.0";
2213
+ id: string;
2214
+ revision: string;
2215
+ nodes: ({
2216
+ id: string;
2217
+ kind: string;
2218
+ kindVersion: string;
2219
+ params: {
2220
+ label: string;
2221
+ color: string;
2222
+ text?: undefined;
2223
+ };
2224
+ ports: {
2225
+ id: string;
2226
+ direction: "input";
2227
+ label: string;
2228
+ type: {
2229
+ flow: "event";
2230
+ dataKind: string;
2231
+ };
2232
+ required: false;
2233
+ activation: "trigger";
2234
+ }[];
2235
+ } | {
2236
+ id: string;
2237
+ kind: string;
2238
+ kindVersion: string;
2239
+ params: {
2240
+ text: string;
2241
+ label?: undefined;
2242
+ color?: undefined;
2243
+ };
2244
+ ports: {
2245
+ id: string;
2246
+ direction: "input";
2247
+ label: string;
2248
+ type: {
2249
+ flow: "event";
2250
+ dataKind: string;
2251
+ };
2252
+ required: false;
2253
+ activation: "trigger";
2254
+ }[];
2255
+ })[];
2256
+ edges: never[];
2257
+ };
2258
+ } | {
2259
+ id: string;
2260
+ graph: {
2261
+ schema: "skenion.graph";
2262
+ schemaVersion: "0.1.0";
2263
+ id: string;
2264
+ revision: string;
2265
+ nodes: ({
2266
+ id: string;
2267
+ kind: string;
2268
+ kindVersion: string;
2269
+ params: {
2270
+ color: number[];
2271
+ };
2272
+ ports: {
2273
+ id: string;
2274
+ direction: "output";
2275
+ label: string;
2276
+ type: {
2277
+ flow: "resource";
2278
+ dataKind: string;
2279
+ format: string;
2280
+ colorSpace: string;
2281
+ };
2282
+ }[];
2283
+ } | {
2284
+ id: string;
2285
+ kind: string;
2286
+ kindVersion: string;
2287
+ params: {
2288
+ color?: undefined;
2289
+ };
2290
+ ports: {
2291
+ id: string;
2292
+ direction: "input";
2293
+ label: string;
2294
+ type: {
2295
+ flow: "resource";
2296
+ dataKind: string;
2297
+ format: string;
2298
+ colorSpace: string;
2299
+ };
2300
+ activation: "latched";
2301
+ }[];
2302
+ })[];
2303
+ edges: {
2304
+ from: {
2305
+ node: string;
2306
+ port: string;
2307
+ };
2308
+ to: {
2309
+ node: string;
2310
+ port: string;
2311
+ };
2312
+ }[];
2313
+ };
2314
+ } | {
2315
+ id: string;
2316
+ graph: {
2317
+ schema: "skenion.graph";
2318
+ schemaVersion: "0.1.0";
2319
+ id: string;
2320
+ revision: string;
2321
+ nodes: ({
2322
+ id: string;
2323
+ kind: string;
2324
+ kindVersion: string;
2325
+ params: {
2326
+ text: string;
2327
+ value?: undefined;
2328
+ };
2329
+ ports: never[];
2330
+ } | {
2331
+ id: string;
2332
+ kindVersion: string;
2333
+ params: {
2334
+ text?: undefined;
2335
+ value?: undefined;
2336
+ };
2337
+ ports: ({
2338
+ id: string;
2339
+ direction: "input";
2340
+ label: string;
2341
+ type: {
2342
+ flow: "event";
2343
+ dataKind: string;
2344
+ };
2345
+ required: false;
2346
+ activation: "trigger";
2347
+ } | {
2348
+ id: string;
2349
+ direction: "output";
2350
+ label: string;
2351
+ type: {
2352
+ flow: "event";
2353
+ dataKind: string;
2354
+ };
2355
+ required?: undefined;
2356
+ activation?: undefined;
2357
+ })[];
2358
+ kind: string;
2359
+ } | {
2360
+ id: string;
2361
+ kind: string;
2362
+ kindVersion: string;
2363
+ params: {
2364
+ value: string;
2365
+ text?: undefined;
2366
+ };
2367
+ ports: ({
2368
+ id: string;
2369
+ direction: "input";
2370
+ label: string;
2371
+ type: {
2372
+ flow: "event";
2373
+ dataKind: string;
2374
+ };
2375
+ required: false;
2376
+ activation: "trigger";
2377
+ } | {
2378
+ id: string;
2379
+ direction: "input";
2380
+ label: string;
2381
+ type: {
2382
+ flow: "value";
2383
+ dataKind: string;
2384
+ };
2385
+ required: false;
2386
+ activation: "latched";
2387
+ } | {
2388
+ id: string;
2389
+ direction: "output";
2390
+ label: string;
2391
+ type: {
2392
+ flow: "value";
2393
+ dataKind: string;
2394
+ };
2395
+ required?: undefined;
2396
+ activation?: undefined;
2397
+ })[];
2398
+ })[];
2399
+ edges: {
2400
+ from: {
2401
+ node: string;
2402
+ port: string;
2403
+ };
2404
+ to: {
2405
+ node: string;
2406
+ port: string;
2407
+ };
2408
+ }[];
2409
+ };
2410
+ } | {
2411
+ id: string;
2412
+ graph: {
2413
+ schema: "skenion.graph";
2414
+ schemaVersion: "0.1.0";
2415
+ id: string;
2416
+ revision: string;
2417
+ nodes: ({
2418
+ id: string;
2419
+ kind: string;
2420
+ kindVersion: string;
2421
+ params: {
2422
+ text: string;
2423
+ objectText?: undefined;
2424
+ diagnosticMessage?: undefined;
2425
+ requestedKind?: undefined;
2426
+ };
2427
+ ports: never[];
2428
+ } | {
2429
+ id: string;
2430
+ kind: string;
2431
+ kindVersion: string;
2432
+ params: {
2433
+ objectText: string;
2434
+ diagnosticMessage: string;
2435
+ requestedKind: string;
2436
+ text?: undefined;
2437
+ };
2438
+ ports: never[];
2439
+ })[];
2440
+ edges: never[];
2441
+ };
2442
+ } | {
2443
+ id: string;
2444
+ graph: {
2445
+ schema: "skenion.graph";
2446
+ schemaVersion: "0.1.0";
2447
+ id: string;
2448
+ revision: string;
2449
+ nodes: ({
2450
+ id: string;
2451
+ kind: string;
2452
+ kindVersion: string;
2453
+ params: {
2454
+ text: string;
2455
+ src?: undefined;
2456
+ };
2457
+ ports: never[];
2458
+ } | {
2459
+ id: string;
2460
+ kind: string;
2461
+ kindVersion: string;
2462
+ params: {
2463
+ src: string;
2464
+ text?: undefined;
2465
+ };
2466
+ ports: {
2467
+ id: string;
2468
+ direction: "output";
2469
+ label: string;
2470
+ type: {
2471
+ flow: "resource";
2472
+ dataKind: string;
2473
+ };
2474
+ }[];
2475
+ } | {
2476
+ id: string;
2477
+ kind: string;
2478
+ kindVersion: string;
2479
+ params: {
2480
+ text?: undefined;
2481
+ src?: undefined;
2482
+ };
2483
+ ports: {
2484
+ id: string;
2485
+ direction: "input";
2486
+ label: string;
2487
+ type: {
2488
+ flow: "resource";
2489
+ dataKind: string;
2490
+ };
2491
+ activation: "latched";
2492
+ }[];
2493
+ })[];
2494
+ edges: {
2495
+ from: {
2496
+ node: string;
2497
+ port: string;
2498
+ };
2499
+ to: {
2500
+ node: string;
2501
+ port: string;
2502
+ };
2503
+ }[];
2504
+ };
2505
+ } | {
2506
+ id: string;
2507
+ graph: {
2508
+ schema: "skenion.graph";
2509
+ schemaVersion: "0.1.0";
2510
+ id: string;
2511
+ revision: string;
2512
+ nodes: ({
2513
+ id: string;
2514
+ kind: string;
2515
+ kindVersion: string;
2516
+ params: {
2517
+ value: number;
2518
+ representation: string;
2519
+ colorSpace?: undefined;
2520
+ language?: undefined;
2521
+ source?: undefined;
2522
+ };
2523
+ ports: ({
2524
+ id: string;
2525
+ direction: "input";
2526
+ label: string;
2527
+ type: {
2528
+ flow: "event";
2529
+ dataKind: string;
2530
+ format?: undefined;
2531
+ };
2532
+ required: false;
2533
+ activation: "trigger";
2534
+ } | {
2535
+ id: string;
2536
+ direction: "input";
2537
+ label: string;
2538
+ type: {
2539
+ flow: "value";
2540
+ dataKind: string;
2541
+ format: string;
2542
+ };
2543
+ required: false;
2544
+ activation: "latched";
2545
+ } | {
2546
+ id: string;
2547
+ direction: "output";
2548
+ label: string;
2549
+ type: {
2550
+ flow: "value";
2551
+ dataKind: string;
2552
+ format: string;
2553
+ };
2554
+ required?: undefined;
2555
+ activation?: undefined;
2556
+ })[];
2557
+ } | {
2558
+ id: string;
2559
+ kind: string;
2560
+ kindVersion: string;
2561
+ params: {
2562
+ value: number[];
2563
+ representation: string;
2564
+ colorSpace: string;
2565
+ language?: undefined;
2566
+ source?: undefined;
2567
+ };
2568
+ ports: ({
2569
+ id: string;
2570
+ direction: "input";
2571
+ label: string;
2572
+ type: {
2573
+ flow: "event";
2574
+ dataKind: string;
2575
+ format?: undefined;
2576
+ colorSpace?: undefined;
2577
+ };
2578
+ required: false;
2579
+ activation: "trigger";
2580
+ } | {
2581
+ id: string;
2582
+ direction: "input";
2583
+ label: string;
2584
+ type: {
2585
+ flow: "value";
2586
+ dataKind: string;
2587
+ format: string;
2588
+ colorSpace: string;
2589
+ };
2590
+ required: false;
2591
+ activation: "latched";
2592
+ } | {
2593
+ id: string;
2594
+ direction: "output";
2595
+ label: string;
2596
+ type: {
2597
+ flow: "value";
2598
+ dataKind: string;
2599
+ format: string;
2600
+ colorSpace: string;
2601
+ };
2602
+ required?: undefined;
2603
+ activation?: undefined;
2604
+ })[];
2605
+ } | {
2606
+ id: string;
2607
+ kind: string;
2608
+ kindVersion: string;
2609
+ params: {
2610
+ language: string;
2611
+ source: string;
2612
+ value?: undefined;
2613
+ representation?: undefined;
2614
+ colorSpace?: undefined;
2615
+ };
2616
+ ports: ({
2617
+ id: string;
2618
+ direction: "input";
2619
+ label: string;
2620
+ type: {
2621
+ flow: "value";
2622
+ dataKind: string;
2623
+ format: string;
2624
+ colorSpace?: undefined;
2625
+ };
2626
+ activation: "latched";
2627
+ } | {
2628
+ id: string;
2629
+ direction: "input";
2630
+ label: string;
2631
+ type: {
2632
+ flow: "value";
2633
+ dataKind: string;
2634
+ format: string;
2635
+ colorSpace: string;
2636
+ };
2637
+ activation: "latched";
2638
+ } | {
2639
+ id: string;
2640
+ direction: "output";
2641
+ label: string;
2642
+ type: {
2643
+ flow: "resource";
2644
+ dataKind: string;
2645
+ format: string;
2646
+ colorSpace: string;
2647
+ };
2648
+ activation?: undefined;
2649
+ })[];
2650
+ } | {
2651
+ id: string;
2652
+ kind: string;
2653
+ kindVersion: string;
2654
+ params: {
2655
+ value?: undefined;
2656
+ representation?: undefined;
2657
+ colorSpace?: undefined;
2658
+ language?: undefined;
2659
+ source?: undefined;
2660
+ };
2661
+ ports: {
2662
+ id: string;
2663
+ direction: "input";
2664
+ label: string;
2665
+ type: {
2666
+ flow: "resource";
2667
+ dataKind: string;
2668
+ format: string;
2669
+ colorSpace: string;
2670
+ };
2671
+ activation: "latched";
2672
+ }[];
2673
+ })[];
2674
+ edges: {
2675
+ from: {
2676
+ node: string;
2677
+ port: string;
2678
+ };
2679
+ to: {
2680
+ node: string;
2681
+ port: string;
2682
+ };
2683
+ }[];
2684
+ };
2685
+ })[];
2686
+ export declare function getBuiltinNodeDefinition(id: string): NodeDefinitionManifestV01 | undefined;
2687
+ export declare function getBuiltinNodeHelp(id: string): BuiltinNodeHelpV01 | undefined;
2688
+ export declare function getBuiltinNodeHelpGraph(id: string): GraphDocumentV01 | undefined;
2689
+ //# sourceMappingURL=builtins.generated.d.ts.map