@stinkycomputing/sesame-api-client 1.4.1-beta.11 → 1.4.1-beta.12

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.
@@ -0,0 +1,869 @@
1
+ export interface BaseNodeProperties {
2
+ 'position': {
3
+ vec4Value: {
4
+ x?: number;
5
+ y?: number;
6
+ z?: number;
7
+ w?: number;
8
+ };
9
+ };
10
+ 'position.x': {
11
+ floatValue: number;
12
+ };
13
+ 'position.y': {
14
+ floatValue: number;
15
+ };
16
+ 'position.z': {
17
+ floatValue: number;
18
+ };
19
+ 'scale': {
20
+ vec4Value: {
21
+ x?: number;
22
+ y?: number;
23
+ z?: number;
24
+ w?: number;
25
+ };
26
+ };
27
+ 'scale.x': {
28
+ floatValue: number;
29
+ };
30
+ 'scale.y': {
31
+ floatValue: number;
32
+ };
33
+ 'scale.z': {
34
+ floatValue: number;
35
+ };
36
+ 'rotation': {
37
+ vec4Value: {
38
+ x?: number;
39
+ y?: number;
40
+ z?: number;
41
+ w?: number;
42
+ };
43
+ };
44
+ 'rotation.x': {
45
+ floatValue: number;
46
+ };
47
+ 'rotation.y': {
48
+ floatValue: number;
49
+ };
50
+ 'rotation.z': {
51
+ floatValue: number;
52
+ };
53
+ 'opacity': {
54
+ floatValue: number;
55
+ };
56
+ 'priority': {
57
+ floatValue: number;
58
+ };
59
+ 'visible': {
60
+ boolValue: boolean;
61
+ };
62
+ 'alpha_map': {
63
+ stringValue: string;
64
+ };
65
+ }
66
+ export interface MeshNodeProperties {
67
+ 'position': {
68
+ vec4Value: {
69
+ x?: number;
70
+ y?: number;
71
+ z?: number;
72
+ w?: number;
73
+ };
74
+ };
75
+ 'position.x': {
76
+ floatValue: number;
77
+ };
78
+ 'position.y': {
79
+ floatValue: number;
80
+ };
81
+ 'position.z': {
82
+ floatValue: number;
83
+ };
84
+ 'scale': {
85
+ vec4Value: {
86
+ x?: number;
87
+ y?: number;
88
+ z?: number;
89
+ w?: number;
90
+ };
91
+ };
92
+ 'scale.x': {
93
+ floatValue: number;
94
+ };
95
+ 'scale.y': {
96
+ floatValue: number;
97
+ };
98
+ 'scale.z': {
99
+ floatValue: number;
100
+ };
101
+ 'rotation': {
102
+ vec4Value: {
103
+ x?: number;
104
+ y?: number;
105
+ z?: number;
106
+ w?: number;
107
+ };
108
+ };
109
+ 'rotation.x': {
110
+ floatValue: number;
111
+ };
112
+ 'rotation.y': {
113
+ floatValue: number;
114
+ };
115
+ 'rotation.z': {
116
+ floatValue: number;
117
+ };
118
+ 'opacity': {
119
+ floatValue: number;
120
+ };
121
+ 'priority': {
122
+ floatValue: number;
123
+ };
124
+ 'visible': {
125
+ boolValue: boolean;
126
+ };
127
+ 'alpha_map': {
128
+ stringValue: string;
129
+ };
130
+ 'size': {
131
+ vec4Value: {
132
+ x?: number;
133
+ y?: number;
134
+ z?: number;
135
+ w?: number;
136
+ };
137
+ };
138
+ 'size.x': {
139
+ floatValue: number;
140
+ };
141
+ 'size.y': {
142
+ floatValue: number;
143
+ };
144
+ 'origin': {
145
+ vec4Value: {
146
+ x?: number;
147
+ y?: number;
148
+ z?: number;
149
+ w?: number;
150
+ };
151
+ };
152
+ 'origin.x': {
153
+ floatValue: number;
154
+ };
155
+ 'origin.y': {
156
+ floatValue: number;
157
+ };
158
+ 'color': {
159
+ vec4Value: {
160
+ x?: number;
161
+ y?: number;
162
+ z?: number;
163
+ w?: number;
164
+ };
165
+ };
166
+ 'color.r': {
167
+ floatValue: number;
168
+ };
169
+ 'color.g': {
170
+ floatValue: number;
171
+ };
172
+ 'color.b': {
173
+ floatValue: number;
174
+ };
175
+ 'color.a': {
176
+ floatValue: number;
177
+ };
178
+ }
179
+ export interface TextNodeProperties {
180
+ 'position': {
181
+ vec4Value: {
182
+ x?: number;
183
+ y?: number;
184
+ z?: number;
185
+ w?: number;
186
+ };
187
+ };
188
+ 'position.x': {
189
+ floatValue: number;
190
+ };
191
+ 'position.y': {
192
+ floatValue: number;
193
+ };
194
+ 'position.z': {
195
+ floatValue: number;
196
+ };
197
+ 'scale': {
198
+ vec4Value: {
199
+ x?: number;
200
+ y?: number;
201
+ z?: number;
202
+ w?: number;
203
+ };
204
+ };
205
+ 'scale.x': {
206
+ floatValue: number;
207
+ };
208
+ 'scale.y': {
209
+ floatValue: number;
210
+ };
211
+ 'scale.z': {
212
+ floatValue: number;
213
+ };
214
+ 'rotation': {
215
+ vec4Value: {
216
+ x?: number;
217
+ y?: number;
218
+ z?: number;
219
+ w?: number;
220
+ };
221
+ };
222
+ 'rotation.x': {
223
+ floatValue: number;
224
+ };
225
+ 'rotation.y': {
226
+ floatValue: number;
227
+ };
228
+ 'rotation.z': {
229
+ floatValue: number;
230
+ };
231
+ 'opacity': {
232
+ floatValue: number;
233
+ };
234
+ 'priority': {
235
+ floatValue: number;
236
+ };
237
+ 'visible': {
238
+ boolValue: boolean;
239
+ };
240
+ 'alpha_map': {
241
+ stringValue: string;
242
+ };
243
+ 'size': {
244
+ vec4Value: {
245
+ x?: number;
246
+ y?: number;
247
+ z?: number;
248
+ w?: number;
249
+ };
250
+ };
251
+ 'size.x': {
252
+ floatValue: number;
253
+ };
254
+ 'size.y': {
255
+ floatValue: number;
256
+ };
257
+ 'origin': {
258
+ vec4Value: {
259
+ x?: number;
260
+ y?: number;
261
+ z?: number;
262
+ w?: number;
263
+ };
264
+ };
265
+ 'origin.x': {
266
+ floatValue: number;
267
+ };
268
+ 'origin.y': {
269
+ floatValue: number;
270
+ };
271
+ 'color': {
272
+ vec4Value: {
273
+ x?: number;
274
+ y?: number;
275
+ z?: number;
276
+ w?: number;
277
+ };
278
+ };
279
+ 'color.r': {
280
+ floatValue: number;
281
+ };
282
+ 'color.g': {
283
+ floatValue: number;
284
+ };
285
+ 'color.b': {
286
+ floatValue: number;
287
+ };
288
+ 'color.a': {
289
+ floatValue: number;
290
+ };
291
+ 'text': {
292
+ stringValue: string;
293
+ };
294
+ 'justify': {
295
+ stringValue: string;
296
+ };
297
+ 'font_size': {
298
+ floatValue: number;
299
+ };
300
+ 'outline_color': {
301
+ vec4Value: {
302
+ x?: number;
303
+ y?: number;
304
+ z?: number;
305
+ w?: number;
306
+ };
307
+ };
308
+ 'outline_size': {
309
+ floatValue: number;
310
+ };
311
+ 'spacing': {
312
+ floatValue: number;
313
+ };
314
+ }
315
+ export interface VideoBoxNodeProperties {
316
+ 'position': {
317
+ vec4Value: {
318
+ x?: number;
319
+ y?: number;
320
+ z?: number;
321
+ w?: number;
322
+ };
323
+ };
324
+ 'position.x': {
325
+ floatValue: number;
326
+ };
327
+ 'position.y': {
328
+ floatValue: number;
329
+ };
330
+ 'position.z': {
331
+ floatValue: number;
332
+ };
333
+ 'scale': {
334
+ vec4Value: {
335
+ x?: number;
336
+ y?: number;
337
+ z?: number;
338
+ w?: number;
339
+ };
340
+ };
341
+ 'scale.x': {
342
+ floatValue: number;
343
+ };
344
+ 'scale.y': {
345
+ floatValue: number;
346
+ };
347
+ 'scale.z': {
348
+ floatValue: number;
349
+ };
350
+ 'rotation': {
351
+ vec4Value: {
352
+ x?: number;
353
+ y?: number;
354
+ z?: number;
355
+ w?: number;
356
+ };
357
+ };
358
+ 'rotation.x': {
359
+ floatValue: number;
360
+ };
361
+ 'rotation.y': {
362
+ floatValue: number;
363
+ };
364
+ 'rotation.z': {
365
+ floatValue: number;
366
+ };
367
+ 'opacity': {
368
+ floatValue: number;
369
+ };
370
+ 'priority': {
371
+ floatValue: number;
372
+ };
373
+ 'visible': {
374
+ boolValue: boolean;
375
+ };
376
+ 'alpha_map': {
377
+ stringValue: string;
378
+ };
379
+ 'size': {
380
+ vec4Value: {
381
+ x?: number;
382
+ y?: number;
383
+ z?: number;
384
+ w?: number;
385
+ };
386
+ };
387
+ 'size.x': {
388
+ floatValue: number;
389
+ };
390
+ 'size.y': {
391
+ floatValue: number;
392
+ };
393
+ 'origin': {
394
+ vec4Value: {
395
+ x?: number;
396
+ y?: number;
397
+ z?: number;
398
+ w?: number;
399
+ };
400
+ };
401
+ 'origin.x': {
402
+ floatValue: number;
403
+ };
404
+ 'origin.y': {
405
+ floatValue: number;
406
+ };
407
+ 'color': {
408
+ vec4Value: {
409
+ x?: number;
410
+ y?: number;
411
+ z?: number;
412
+ w?: number;
413
+ };
414
+ };
415
+ 'color.r': {
416
+ floatValue: number;
417
+ };
418
+ 'color.g': {
419
+ floatValue: number;
420
+ };
421
+ 'color.b': {
422
+ floatValue: number;
423
+ };
424
+ 'color.a': {
425
+ floatValue: number;
426
+ };
427
+ 'source': {
428
+ stringValue: string;
429
+ };
430
+ 'audio_meter_source': {
431
+ stringValue: string;
432
+ };
433
+ 'show_audio_meter': {
434
+ boolValue: boolean;
435
+ };
436
+ 'show_border': {
437
+ boolValue: boolean;
438
+ };
439
+ 'show_label_bg': {
440
+ boolValue: boolean;
441
+ };
442
+ 'tex_filter': {
443
+ boolValue: boolean;
444
+ };
445
+ }
446
+ export interface ImageNodeProperties {
447
+ 'position': {
448
+ vec4Value: {
449
+ x?: number;
450
+ y?: number;
451
+ z?: number;
452
+ w?: number;
453
+ };
454
+ };
455
+ 'position.x': {
456
+ floatValue: number;
457
+ };
458
+ 'position.y': {
459
+ floatValue: number;
460
+ };
461
+ 'position.z': {
462
+ floatValue: number;
463
+ };
464
+ 'scale': {
465
+ vec4Value: {
466
+ x?: number;
467
+ y?: number;
468
+ z?: number;
469
+ w?: number;
470
+ };
471
+ };
472
+ 'scale.x': {
473
+ floatValue: number;
474
+ };
475
+ 'scale.y': {
476
+ floatValue: number;
477
+ };
478
+ 'scale.z': {
479
+ floatValue: number;
480
+ };
481
+ 'rotation': {
482
+ vec4Value: {
483
+ x?: number;
484
+ y?: number;
485
+ z?: number;
486
+ w?: number;
487
+ };
488
+ };
489
+ 'rotation.x': {
490
+ floatValue: number;
491
+ };
492
+ 'rotation.y': {
493
+ floatValue: number;
494
+ };
495
+ 'rotation.z': {
496
+ floatValue: number;
497
+ };
498
+ 'opacity': {
499
+ floatValue: number;
500
+ };
501
+ 'priority': {
502
+ floatValue: number;
503
+ };
504
+ 'visible': {
505
+ boolValue: boolean;
506
+ };
507
+ 'alpha_map': {
508
+ stringValue: string;
509
+ };
510
+ 'size': {
511
+ vec4Value: {
512
+ x?: number;
513
+ y?: number;
514
+ z?: number;
515
+ w?: number;
516
+ };
517
+ };
518
+ 'size.x': {
519
+ floatValue: number;
520
+ };
521
+ 'size.y': {
522
+ floatValue: number;
523
+ };
524
+ 'origin': {
525
+ vec4Value: {
526
+ x?: number;
527
+ y?: number;
528
+ z?: number;
529
+ w?: number;
530
+ };
531
+ };
532
+ 'origin.x': {
533
+ floatValue: number;
534
+ };
535
+ 'origin.y': {
536
+ floatValue: number;
537
+ };
538
+ 'color': {
539
+ vec4Value: {
540
+ x?: number;
541
+ y?: number;
542
+ z?: number;
543
+ w?: number;
544
+ };
545
+ };
546
+ 'color.r': {
547
+ floatValue: number;
548
+ };
549
+ 'color.g': {
550
+ floatValue: number;
551
+ };
552
+ 'color.b': {
553
+ floatValue: number;
554
+ };
555
+ 'color.a': {
556
+ floatValue: number;
557
+ };
558
+ 'filename': {
559
+ stringValue: string;
560
+ };
561
+ 'tex_filter': {
562
+ boolValue: boolean;
563
+ };
564
+ 'premultiply': {
565
+ boolValue: boolean;
566
+ };
567
+ }
568
+ export interface EffectBaseProperties {
569
+ 'enabled': {
570
+ boolValue: boolean;
571
+ };
572
+ }
573
+ export interface EffectRttProperties {
574
+ 'enabled': {
575
+ boolValue: boolean;
576
+ };
577
+ 'rtt-id': {
578
+ stringValue: string;
579
+ };
580
+ }
581
+ export interface EffectTimecodeProperties {
582
+ 'enabled': {
583
+ boolValue: boolean;
584
+ };
585
+ 'timecode_type': {
586
+ stringValue: string;
587
+ };
588
+ 'timecode_src': {
589
+ stringValue: string;
590
+ };
591
+ }
592
+ export interface EffectClipPlaneProperties {
593
+ 'enabled': {
594
+ boolValue: boolean;
595
+ };
596
+ 'clip-plane': {
597
+ vec4Value: {
598
+ x?: number;
599
+ y?: number;
600
+ z?: number;
601
+ w?: number;
602
+ };
603
+ };
604
+ 'clip-plane.r': {
605
+ floatValue: number;
606
+ };
607
+ 'clip-plane.x': {
608
+ floatValue: number;
609
+ };
610
+ 'clip-plane.g': {
611
+ floatValue: number;
612
+ };
613
+ 'clip-plane.y': {
614
+ floatValue: number;
615
+ };
616
+ 'clip-plane.b': {
617
+ floatValue: number;
618
+ };
619
+ 'clip-plane.z': {
620
+ floatValue: number;
621
+ };
622
+ 'clip-plane.a': {
623
+ floatValue: number;
624
+ };
625
+ 'clip-plane.w': {
626
+ floatValue: number;
627
+ };
628
+ 'feather': {
629
+ floatValue: number;
630
+ };
631
+ }
632
+ /** All valid compositor domain property names. */
633
+ export type CompositorProperty = 'position' | 'position.x' | 'position.y' | 'position.z' | 'scale' | 'scale.x' | 'scale.y' | 'scale.z' | 'rotation' | 'rotation.x' | 'rotation.y' | 'rotation.z' | 'opacity' | 'priority' | 'visible' | 'alpha_map' | 'size' | 'size.x' | 'size.y' | 'origin' | 'origin.x' | 'origin.y' | 'color' | 'color.r' | 'color.g' | 'color.b' | 'color.a' | 'text' | 'justify' | 'font_size' | 'outline_color' | 'outline_size' | 'spacing' | 'source' | 'audio_meter_source' | 'show_audio_meter' | 'show_border' | 'show_label_bg' | 'tex_filter' | 'filename' | 'premultiply' | 'enabled' | 'rtt-id' | 'timecode_type' | 'timecode_src' | 'clip-plane' | 'clip-plane.r' | 'clip-plane.x' | 'clip-plane.g' | 'clip-plane.y' | 'clip-plane.b' | 'clip-plane.z' | 'clip-plane.a' | 'clip-plane.w' | 'feather';
634
+ /** Known audio mixer channel property names. Plugin params use numeric string IDs. */
635
+ export type AudioMixerProperty = 'level' | 'pan' | 'mute' | 'source_channels' | 'source_id' | (string & {});
636
+ /** Known source domain property names. Preprocessor params use numeric string IDs. */
637
+ export type SourceProperty = 'audio_level' | (string & {});
638
+ /** Maps every known property name to its expected IPropValue shape. */
639
+ export interface PropertyValueMap {
640
+ 'position': {
641
+ vec4Value: {
642
+ x?: number;
643
+ y?: number;
644
+ z?: number;
645
+ w?: number;
646
+ };
647
+ };
648
+ 'position.x': {
649
+ floatValue: number;
650
+ };
651
+ 'position.y': {
652
+ floatValue: number;
653
+ };
654
+ 'position.z': {
655
+ floatValue: number;
656
+ };
657
+ 'scale': {
658
+ vec4Value: {
659
+ x?: number;
660
+ y?: number;
661
+ z?: number;
662
+ w?: number;
663
+ };
664
+ };
665
+ 'scale.x': {
666
+ floatValue: number;
667
+ };
668
+ 'scale.y': {
669
+ floatValue: number;
670
+ };
671
+ 'scale.z': {
672
+ floatValue: number;
673
+ };
674
+ 'rotation': {
675
+ vec4Value: {
676
+ x?: number;
677
+ y?: number;
678
+ z?: number;
679
+ w?: number;
680
+ };
681
+ };
682
+ 'rotation.x': {
683
+ floatValue: number;
684
+ };
685
+ 'rotation.y': {
686
+ floatValue: number;
687
+ };
688
+ 'rotation.z': {
689
+ floatValue: number;
690
+ };
691
+ 'opacity': {
692
+ floatValue: number;
693
+ };
694
+ 'priority': {
695
+ floatValue: number;
696
+ };
697
+ 'visible': {
698
+ boolValue: boolean;
699
+ };
700
+ 'alpha_map': {
701
+ stringValue: string;
702
+ };
703
+ 'size': {
704
+ vec4Value: {
705
+ x?: number;
706
+ y?: number;
707
+ z?: number;
708
+ w?: number;
709
+ };
710
+ };
711
+ 'size.x': {
712
+ floatValue: number;
713
+ };
714
+ 'size.y': {
715
+ floatValue: number;
716
+ };
717
+ 'origin': {
718
+ vec4Value: {
719
+ x?: number;
720
+ y?: number;
721
+ z?: number;
722
+ w?: number;
723
+ };
724
+ };
725
+ 'origin.x': {
726
+ floatValue: number;
727
+ };
728
+ 'origin.y': {
729
+ floatValue: number;
730
+ };
731
+ 'color': {
732
+ vec4Value: {
733
+ x?: number;
734
+ y?: number;
735
+ z?: number;
736
+ w?: number;
737
+ };
738
+ };
739
+ 'color.r': {
740
+ floatValue: number;
741
+ };
742
+ 'color.g': {
743
+ floatValue: number;
744
+ };
745
+ 'color.b': {
746
+ floatValue: number;
747
+ };
748
+ 'color.a': {
749
+ floatValue: number;
750
+ };
751
+ 'text': {
752
+ stringValue: string;
753
+ };
754
+ 'justify': {
755
+ stringValue: string;
756
+ };
757
+ 'font_size': {
758
+ floatValue: number;
759
+ };
760
+ 'outline_color': {
761
+ vec4Value: {
762
+ x?: number;
763
+ y?: number;
764
+ z?: number;
765
+ w?: number;
766
+ };
767
+ };
768
+ 'outline_size': {
769
+ floatValue: number;
770
+ };
771
+ 'spacing': {
772
+ floatValue: number;
773
+ };
774
+ 'source': {
775
+ stringValue: string;
776
+ };
777
+ 'audio_meter_source': {
778
+ stringValue: string;
779
+ };
780
+ 'show_audio_meter': {
781
+ boolValue: boolean;
782
+ };
783
+ 'show_border': {
784
+ boolValue: boolean;
785
+ };
786
+ 'show_label_bg': {
787
+ boolValue: boolean;
788
+ };
789
+ 'tex_filter': {
790
+ boolValue: boolean;
791
+ };
792
+ 'filename': {
793
+ stringValue: string;
794
+ };
795
+ 'premultiply': {
796
+ boolValue: boolean;
797
+ };
798
+ 'enabled': {
799
+ boolValue: boolean;
800
+ };
801
+ 'rtt-id': {
802
+ stringValue: string;
803
+ };
804
+ 'timecode_type': {
805
+ stringValue: string;
806
+ };
807
+ 'timecode_src': {
808
+ stringValue: string;
809
+ };
810
+ 'clip-plane': {
811
+ vec4Value: {
812
+ x?: number;
813
+ y?: number;
814
+ z?: number;
815
+ w?: number;
816
+ };
817
+ };
818
+ 'clip-plane.r': {
819
+ floatValue: number;
820
+ };
821
+ 'clip-plane.x': {
822
+ floatValue: number;
823
+ };
824
+ 'clip-plane.g': {
825
+ floatValue: number;
826
+ };
827
+ 'clip-plane.y': {
828
+ floatValue: number;
829
+ };
830
+ 'clip-plane.b': {
831
+ floatValue: number;
832
+ };
833
+ 'clip-plane.z': {
834
+ floatValue: number;
835
+ };
836
+ 'clip-plane.a': {
837
+ floatValue: number;
838
+ };
839
+ 'clip-plane.w': {
840
+ floatValue: number;
841
+ };
842
+ 'feather': {
843
+ floatValue: number;
844
+ };
845
+ 'level': {
846
+ floatValue: number;
847
+ };
848
+ 'pan': {
849
+ floatValue: number;
850
+ };
851
+ 'mute': {
852
+ boolValue: boolean;
853
+ };
854
+ 'source_channels': {
855
+ vec4Value: {
856
+ x?: number;
857
+ y?: number;
858
+ z?: number;
859
+ w?: number;
860
+ };
861
+ };
862
+ 'source_id': {
863
+ stringValue: string;
864
+ };
865
+ 'audio_level': {
866
+ floatValue: number;
867
+ };
868
+ }
869
+ //# sourceMappingURL=property-types.d.ts.map