@stinkycomputing/sesame-api-client 1.5.2 → 1.5.5

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.
@@ -372,6 +372,15 @@ export namespace sesame {
372
372
 
373
373
  /** AudioMixerChannel plugins */
374
374
  plugins?: (sesame.v1.audio.IAudioPlugin[]|null);
375
+
376
+ /** AudioMixerChannel mute */
377
+ mute?: (boolean|null);
378
+
379
+ /** AudioMixerChannel automationLevel */
380
+ automationLevel?: (number|null);
381
+
382
+ /** AudioMixerChannel automationMute */
383
+ automationMute?: (boolean|null);
375
384
  }
376
385
 
377
386
  /** Represents an AudioMixerChannel. */
@@ -404,6 +413,15 @@ export namespace sesame {
404
413
  /** AudioMixerChannel plugins. */
405
414
  public plugins: sesame.v1.audio.IAudioPlugin[];
406
415
 
416
+ /** AudioMixerChannel mute. */
417
+ public mute: boolean;
418
+
419
+ /** AudioMixerChannel automationLevel. */
420
+ public automationLevel?: (number|null);
421
+
422
+ /** AudioMixerChannel automationMute. */
423
+ public automationMute: boolean;
424
+
407
425
  /**
408
426
  * Creates a new AudioMixerChannel instance using the specified properties.
409
427
  * @param [properties] Properties to set
@@ -482,6 +500,115 @@ export namespace sesame {
482
500
  public static getTypeUrl(typeUrlPrefix?: string): string;
483
501
  }
484
502
 
503
+ /** Properties of an AudioMixerOutput. */
504
+ interface IAudioMixerOutput {
505
+
506
+ /** AudioMixerOutput id */
507
+ id?: (string|null);
508
+
509
+ /** AudioMixerOutput excludedChannelIds */
510
+ excludedChannelIds?: (string[]|null);
511
+
512
+ /** AudioMixerOutput includeMasterPlugins */
513
+ includeMasterPlugins?: (boolean|null);
514
+ }
515
+
516
+ /** Represents an AudioMixerOutput. */
517
+ class AudioMixerOutput implements IAudioMixerOutput {
518
+
519
+ /**
520
+ * Constructs a new AudioMixerOutput.
521
+ * @param [properties] Properties to set
522
+ */
523
+ constructor(properties?: sesame.v1.audio.IAudioMixerOutput);
524
+
525
+ /** AudioMixerOutput id. */
526
+ public id: string;
527
+
528
+ /** AudioMixerOutput excludedChannelIds. */
529
+ public excludedChannelIds: string[];
530
+
531
+ /** AudioMixerOutput includeMasterPlugins. */
532
+ public includeMasterPlugins?: (boolean|null);
533
+
534
+ /**
535
+ * Creates a new AudioMixerOutput instance using the specified properties.
536
+ * @param [properties] Properties to set
537
+ * @returns AudioMixerOutput instance
538
+ */
539
+ public static create(properties?: sesame.v1.audio.IAudioMixerOutput): sesame.v1.audio.AudioMixerOutput;
540
+
541
+ /**
542
+ * Encodes the specified AudioMixerOutput message. Does not implicitly {@link sesame.v1.audio.AudioMixerOutput.verify|verify} messages.
543
+ * @param message AudioMixerOutput message or plain object to encode
544
+ * @param [writer] Writer to encode to
545
+ * @returns Writer
546
+ */
547
+ public static encode(message: sesame.v1.audio.IAudioMixerOutput, writer?: $protobuf.Writer): $protobuf.Writer;
548
+
549
+ /**
550
+ * Encodes the specified AudioMixerOutput message, length delimited. Does not implicitly {@link sesame.v1.audio.AudioMixerOutput.verify|verify} messages.
551
+ * @param message AudioMixerOutput message or plain object to encode
552
+ * @param [writer] Writer to encode to
553
+ * @returns Writer
554
+ */
555
+ public static encodeDelimited(message: sesame.v1.audio.IAudioMixerOutput, writer?: $protobuf.Writer): $protobuf.Writer;
556
+
557
+ /**
558
+ * Decodes an AudioMixerOutput message from the specified reader or buffer.
559
+ * @param reader Reader or buffer to decode from
560
+ * @param [length] Message length if known beforehand
561
+ * @returns AudioMixerOutput
562
+ * @throws {Error} If the payload is not a reader or valid buffer
563
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
564
+ */
565
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.audio.AudioMixerOutput;
566
+
567
+ /**
568
+ * Decodes an AudioMixerOutput message from the specified reader or buffer, length delimited.
569
+ * @param reader Reader or buffer to decode from
570
+ * @returns AudioMixerOutput
571
+ * @throws {Error} If the payload is not a reader or valid buffer
572
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
573
+ */
574
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.audio.AudioMixerOutput;
575
+
576
+ /**
577
+ * Verifies an AudioMixerOutput message.
578
+ * @param message Plain object to verify
579
+ * @returns `null` if valid, otherwise the reason why it is not
580
+ */
581
+ public static verify(message: { [k: string]: any }): (string|null);
582
+
583
+ /**
584
+ * Creates an AudioMixerOutput message from a plain object. Also converts values to their respective internal types.
585
+ * @param object Plain object
586
+ * @returns AudioMixerOutput
587
+ */
588
+ public static fromObject(object: { [k: string]: any }): sesame.v1.audio.AudioMixerOutput;
589
+
590
+ /**
591
+ * Creates a plain object from an AudioMixerOutput message. Also converts values to other types if specified.
592
+ * @param message AudioMixerOutput
593
+ * @param [options] Conversion options
594
+ * @returns Plain object
595
+ */
596
+ public static toObject(message: sesame.v1.audio.AudioMixerOutput, options?: $protobuf.IConversionOptions): { [k: string]: any };
597
+
598
+ /**
599
+ * Converts this AudioMixerOutput to JSON.
600
+ * @returns JSON object
601
+ */
602
+ public toJSON(): { [k: string]: any };
603
+
604
+ /**
605
+ * Gets the default type url for AudioMixerOutput
606
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
607
+ * @returns The default type url
608
+ */
609
+ public static getTypeUrl(typeUrlPrefix?: string): string;
610
+ }
611
+
485
612
  /** Properties of an AudioMixerConfig. */
486
613
  interface IAudioMixerConfig {
487
614
 
@@ -493,6 +620,18 @@ export namespace sesame {
493
620
 
494
621
  /** AudioMixerConfig order */
495
622
  order?: (number|null);
623
+
624
+ /** AudioMixerConfig outputs */
625
+ outputs?: (sesame.v1.audio.IAudioMixerOutput[]|null);
626
+
627
+ /** AudioMixerConfig masterLevel */
628
+ masterLevel?: (number|null);
629
+
630
+ /** AudioMixerConfig masterAutomationLevel */
631
+ masterAutomationLevel?: (number|null);
632
+
633
+ /** AudioMixerConfig masterPlugins */
634
+ masterPlugins?: (sesame.v1.audio.IAudioPlugin[]|null);
496
635
  }
497
636
 
498
637
  /** Represents an AudioMixerConfig. */
@@ -513,6 +652,18 @@ export namespace sesame {
513
652
  /** AudioMixerConfig order. */
514
653
  public order: number;
515
654
 
655
+ /** AudioMixerConfig outputs. */
656
+ public outputs: sesame.v1.audio.IAudioMixerOutput[];
657
+
658
+ /** AudioMixerConfig masterLevel. */
659
+ public masterLevel?: (number|null);
660
+
661
+ /** AudioMixerConfig masterAutomationLevel. */
662
+ public masterAutomationLevel?: (number|null);
663
+
664
+ /** AudioMixerConfig masterPlugins. */
665
+ public masterPlugins: sesame.v1.audio.IAudioPlugin[];
666
+
516
667
  /**
517
668
  * Creates a new AudioMixerConfig instance using the specified properties.
518
669
  * @param [properties] Properties to set
@@ -1235,6 +1386,21 @@ export namespace sesame {
1235
1386
 
1236
1387
  /** AudioChannelStatus plugins */
1237
1388
  plugins?: (sesame.v1.audio.IAudioChannelPluginStatus[]|null);
1389
+
1390
+ /** AudioChannelStatus mute */
1391
+ mute?: (boolean|null);
1392
+
1393
+ /** AudioChannelStatus automationLevel */
1394
+ automationLevel?: (number|null);
1395
+
1396
+ /** AudioChannelStatus automationMute */
1397
+ automationMute?: (boolean|null);
1398
+
1399
+ /** AudioChannelStatus effectiveLevel */
1400
+ effectiveLevel?: (number|null);
1401
+
1402
+ /** AudioChannelStatus effectiveMute */
1403
+ effectiveMute?: (boolean|null);
1238
1404
  }
1239
1405
 
1240
1406
  /** Represents an AudioChannelStatus. */
@@ -1270,6 +1436,21 @@ export namespace sesame {
1270
1436
  /** AudioChannelStatus plugins. */
1271
1437
  public plugins: sesame.v1.audio.IAudioChannelPluginStatus[];
1272
1438
 
1439
+ /** AudioChannelStatus mute. */
1440
+ public mute: boolean;
1441
+
1442
+ /** AudioChannelStatus automationLevel. */
1443
+ public automationLevel: number;
1444
+
1445
+ /** AudioChannelStatus automationMute. */
1446
+ public automationMute: boolean;
1447
+
1448
+ /** AudioChannelStatus effectiveLevel. */
1449
+ public effectiveLevel: number;
1450
+
1451
+ /** AudioChannelStatus effectiveMute. */
1452
+ public effectiveMute: boolean;
1453
+
1273
1454
  /**
1274
1455
  * Creates a new AudioChannelStatus instance using the specified properties.
1275
1456
  * @param [properties] Properties to set
@@ -1348,6 +1529,127 @@ export namespace sesame {
1348
1529
  public static getTypeUrl(typeUrlPrefix?: string): string;
1349
1530
  }
1350
1531
 
1532
+ /** Properties of an AudioMixerOutputStatus. */
1533
+ interface IAudioMixerOutputStatus {
1534
+
1535
+ /** AudioMixerOutputStatus id */
1536
+ id?: (string|null);
1537
+
1538
+ /** AudioMixerOutputStatus outputType */
1539
+ outputType?: (sesame.v1.audio.AudioMixerChannelType|null);
1540
+
1541
+ /** AudioMixerOutputStatus vu */
1542
+ vu?: (number[]|null);
1543
+
1544
+ /** AudioMixerOutputStatus excludedChannelIds */
1545
+ excludedChannelIds?: (string[]|null);
1546
+
1547
+ /** AudioMixerOutputStatus includeMasterPlugins */
1548
+ includeMasterPlugins?: (boolean|null);
1549
+ }
1550
+
1551
+ /** Represents an AudioMixerOutputStatus. */
1552
+ class AudioMixerOutputStatus implements IAudioMixerOutputStatus {
1553
+
1554
+ /**
1555
+ * Constructs a new AudioMixerOutputStatus.
1556
+ * @param [properties] Properties to set
1557
+ */
1558
+ constructor(properties?: sesame.v1.audio.IAudioMixerOutputStatus);
1559
+
1560
+ /** AudioMixerOutputStatus id. */
1561
+ public id: string;
1562
+
1563
+ /** AudioMixerOutputStatus outputType. */
1564
+ public outputType: sesame.v1.audio.AudioMixerChannelType;
1565
+
1566
+ /** AudioMixerOutputStatus vu. */
1567
+ public vu: number[];
1568
+
1569
+ /** AudioMixerOutputStatus excludedChannelIds. */
1570
+ public excludedChannelIds: string[];
1571
+
1572
+ /** AudioMixerOutputStatus includeMasterPlugins. */
1573
+ public includeMasterPlugins: boolean;
1574
+
1575
+ /**
1576
+ * Creates a new AudioMixerOutputStatus instance using the specified properties.
1577
+ * @param [properties] Properties to set
1578
+ * @returns AudioMixerOutputStatus instance
1579
+ */
1580
+ public static create(properties?: sesame.v1.audio.IAudioMixerOutputStatus): sesame.v1.audio.AudioMixerOutputStatus;
1581
+
1582
+ /**
1583
+ * Encodes the specified AudioMixerOutputStatus message. Does not implicitly {@link sesame.v1.audio.AudioMixerOutputStatus.verify|verify} messages.
1584
+ * @param message AudioMixerOutputStatus message or plain object to encode
1585
+ * @param [writer] Writer to encode to
1586
+ * @returns Writer
1587
+ */
1588
+ public static encode(message: sesame.v1.audio.IAudioMixerOutputStatus, writer?: $protobuf.Writer): $protobuf.Writer;
1589
+
1590
+ /**
1591
+ * Encodes the specified AudioMixerOutputStatus message, length delimited. Does not implicitly {@link sesame.v1.audio.AudioMixerOutputStatus.verify|verify} messages.
1592
+ * @param message AudioMixerOutputStatus message or plain object to encode
1593
+ * @param [writer] Writer to encode to
1594
+ * @returns Writer
1595
+ */
1596
+ public static encodeDelimited(message: sesame.v1.audio.IAudioMixerOutputStatus, writer?: $protobuf.Writer): $protobuf.Writer;
1597
+
1598
+ /**
1599
+ * Decodes an AudioMixerOutputStatus message from the specified reader or buffer.
1600
+ * @param reader Reader or buffer to decode from
1601
+ * @param [length] Message length if known beforehand
1602
+ * @returns AudioMixerOutputStatus
1603
+ * @throws {Error} If the payload is not a reader or valid buffer
1604
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1605
+ */
1606
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.audio.AudioMixerOutputStatus;
1607
+
1608
+ /**
1609
+ * Decodes an AudioMixerOutputStatus message from the specified reader or buffer, length delimited.
1610
+ * @param reader Reader or buffer to decode from
1611
+ * @returns AudioMixerOutputStatus
1612
+ * @throws {Error} If the payload is not a reader or valid buffer
1613
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1614
+ */
1615
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.audio.AudioMixerOutputStatus;
1616
+
1617
+ /**
1618
+ * Verifies an AudioMixerOutputStatus message.
1619
+ * @param message Plain object to verify
1620
+ * @returns `null` if valid, otherwise the reason why it is not
1621
+ */
1622
+ public static verify(message: { [k: string]: any }): (string|null);
1623
+
1624
+ /**
1625
+ * Creates an AudioMixerOutputStatus message from a plain object. Also converts values to their respective internal types.
1626
+ * @param object Plain object
1627
+ * @returns AudioMixerOutputStatus
1628
+ */
1629
+ public static fromObject(object: { [k: string]: any }): sesame.v1.audio.AudioMixerOutputStatus;
1630
+
1631
+ /**
1632
+ * Creates a plain object from an AudioMixerOutputStatus message. Also converts values to other types if specified.
1633
+ * @param message AudioMixerOutputStatus
1634
+ * @param [options] Conversion options
1635
+ * @returns Plain object
1636
+ */
1637
+ public static toObject(message: sesame.v1.audio.AudioMixerOutputStatus, options?: $protobuf.IConversionOptions): { [k: string]: any };
1638
+
1639
+ /**
1640
+ * Converts this AudioMixerOutputStatus to JSON.
1641
+ * @returns JSON object
1642
+ */
1643
+ public toJSON(): { [k: string]: any };
1644
+
1645
+ /**
1646
+ * Gets the default type url for AudioMixerOutputStatus
1647
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1648
+ * @returns The default type url
1649
+ */
1650
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1651
+ }
1652
+
1351
1653
  /** Properties of an AudioMixerStatus. */
1352
1654
  interface IAudioMixerStatus {
1353
1655
 
@@ -1362,6 +1664,21 @@ export namespace sesame {
1362
1664
 
1363
1665
  /** AudioMixerStatus channels */
1364
1666
  channels?: (sesame.v1.audio.IAudioChannelStatus[]|null);
1667
+
1668
+ /** AudioMixerStatus masterLevel */
1669
+ masterLevel?: (number|null);
1670
+
1671
+ /** AudioMixerStatus masterAutomationLevel */
1672
+ masterAutomationLevel?: (number|null);
1673
+
1674
+ /** AudioMixerStatus masterEffectiveLevel */
1675
+ masterEffectiveLevel?: (number|null);
1676
+
1677
+ /** AudioMixerStatus masterPlugins */
1678
+ masterPlugins?: (sesame.v1.audio.IAudioChannelPluginStatus[]|null);
1679
+
1680
+ /** AudioMixerStatus outputs */
1681
+ outputs?: (sesame.v1.audio.IAudioMixerOutputStatus[]|null);
1365
1682
  }
1366
1683
 
1367
1684
  /** Represents an AudioMixerStatus. */
@@ -1385,6 +1702,21 @@ export namespace sesame {
1385
1702
  /** AudioMixerStatus channels. */
1386
1703
  public channels: sesame.v1.audio.IAudioChannelStatus[];
1387
1704
 
1705
+ /** AudioMixerStatus masterLevel. */
1706
+ public masterLevel: number;
1707
+
1708
+ /** AudioMixerStatus masterAutomationLevel. */
1709
+ public masterAutomationLevel: number;
1710
+
1711
+ /** AudioMixerStatus masterEffectiveLevel. */
1712
+ public masterEffectiveLevel: number;
1713
+
1714
+ /** AudioMixerStatus masterPlugins. */
1715
+ public masterPlugins: sesame.v1.audio.IAudioChannelPluginStatus[];
1716
+
1717
+ /** AudioMixerStatus outputs. */
1718
+ public outputs: sesame.v1.audio.IAudioMixerOutputStatus[];
1719
+
1388
1720
  /**
1389
1721
  * Creates a new AudioMixerStatus instance using the specified properties.
1390
1722
  * @param [properties] Properties to set
@@ -1580,6 +1912,15 @@ export namespace sesame {
1580
1912
 
1581
1913
  /** AudioChannelControlRequest plugins */
1582
1914
  plugins?: (sesame.v1.audio.IAudioPluginControlRequest[]|null);
1915
+
1916
+ /** AudioChannelControlRequest mute */
1917
+ mute?: (boolean|null);
1918
+
1919
+ /** AudioChannelControlRequest automationLevel */
1920
+ automationLevel?: (number|null);
1921
+
1922
+ /** AudioChannelControlRequest automationMute */
1923
+ automationMute?: (boolean|null);
1583
1924
  }
1584
1925
 
1585
1926
  /** Represents an AudioChannelControlRequest. */
@@ -1603,6 +1944,15 @@ export namespace sesame {
1603
1944
  /** AudioChannelControlRequest plugins. */
1604
1945
  public plugins: sesame.v1.audio.IAudioPluginControlRequest[];
1605
1946
 
1947
+ /** AudioChannelControlRequest mute. */
1948
+ public mute?: (boolean|null);
1949
+
1950
+ /** AudioChannelControlRequest automationLevel. */
1951
+ public automationLevel?: (number|null);
1952
+
1953
+ /** AudioChannelControlRequest automationMute. */
1954
+ public automationMute?: (boolean|null);
1955
+
1606
1956
  /**
1607
1957
  * Creates a new AudioChannelControlRequest instance using the specified properties.
1608
1958
  * @param [properties] Properties to set
@@ -1686,6 +2036,15 @@ export namespace sesame {
1686
2036
 
1687
2037
  /** AudioControlRequest channels */
1688
2038
  channels?: (sesame.v1.audio.IAudioChannelControlRequest[]|null);
2039
+
2040
+ /** AudioControlRequest masterLevel */
2041
+ masterLevel?: (number|null);
2042
+
2043
+ /** AudioControlRequest masterAutomationLevel */
2044
+ masterAutomationLevel?: (number|null);
2045
+
2046
+ /** AudioControlRequest masterPlugins */
2047
+ masterPlugins?: (sesame.v1.audio.IAudioPluginControlRequest[]|null);
1689
2048
  }
1690
2049
 
1691
2050
  /** Represents an AudioControlRequest. */
@@ -1700,6 +2059,15 @@ export namespace sesame {
1700
2059
  /** AudioControlRequest channels. */
1701
2060
  public channels: sesame.v1.audio.IAudioChannelControlRequest[];
1702
2061
 
2062
+ /** AudioControlRequest masterLevel. */
2063
+ public masterLevel?: (number|null);
2064
+
2065
+ /** AudioControlRequest masterAutomationLevel. */
2066
+ public masterAutomationLevel?: (number|null);
2067
+
2068
+ /** AudioControlRequest masterPlugins. */
2069
+ public masterPlugins: sesame.v1.audio.IAudioPluginControlRequest[];
2070
+
1703
2071
  /**
1704
2072
  * Creates a new AudioControlRequest instance using the specified properties.
1705
2073
  * @param [properties] Properties to set