@stinkycomputing/sesame-api-client 1.6.0 → 1.9.0-alpha.1
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.
- package/README.md +14 -2
- package/dist/command-list.d.ts +25 -1
- package/dist/command-list.d.ts.map +1 -1
- package/dist/index.browser.mjs +2652 -568
- package/dist/index.browser.mjs.map +3 -3
- package/dist/index.cjs +2655 -568
- package/dist/index.cjs.map +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2652 -568
- package/dist/index.mjs.map +3 -3
- package/dist/proto/api.d.ts +1167 -59
- package/dist/proto/api.js +3311 -64
- package/dist/sesame-wire-protocol.d.ts +34 -0
- package/dist/sesame-wire-protocol.d.ts.map +1 -1
- package/docs/protocol-reference.md +259 -7
- package/package.json +1 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -2240,6 +2240,15 @@ export namespace sesame {
|
|
|
2240
2240
|
/** CommandListItem takePlaylist */
|
|
2241
2241
|
takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
|
|
2242
2242
|
|
|
2243
|
+
/** CommandListItem outputControl */
|
|
2244
|
+
outputControl?: (sesame.v1.outputs.IOutputControlRequest|null);
|
|
2245
|
+
|
|
2246
|
+
/** CommandListItem setSideData */
|
|
2247
|
+
setSideData?: (sesame.v1.compositor.ISideDataSetRequest|null);
|
|
2248
|
+
|
|
2249
|
+
/** CommandListItem removeSideData */
|
|
2250
|
+
removeSideData?: (sesame.v1.compositor.ISideDataRemoveRequest|null);
|
|
2251
|
+
|
|
2243
2252
|
/** CommandListItem transactionId */
|
|
2244
2253
|
transactionId?: (number|null);
|
|
2245
2254
|
|
|
@@ -2343,6 +2352,15 @@ export namespace sesame {
|
|
|
2343
2352
|
/** CommandListItem takePlaylist. */
|
|
2344
2353
|
public takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
|
|
2345
2354
|
|
|
2355
|
+
/** CommandListItem outputControl. */
|
|
2356
|
+
public outputControl?: (sesame.v1.outputs.IOutputControlRequest|null);
|
|
2357
|
+
|
|
2358
|
+
/** CommandListItem setSideData. */
|
|
2359
|
+
public setSideData?: (sesame.v1.compositor.ISideDataSetRequest|null);
|
|
2360
|
+
|
|
2361
|
+
/** CommandListItem removeSideData. */
|
|
2362
|
+
public removeSideData?: (sesame.v1.compositor.ISideDataRemoveRequest|null);
|
|
2363
|
+
|
|
2346
2364
|
/** CommandListItem transactionId. */
|
|
2347
2365
|
public transactionId?: (number|null);
|
|
2348
2366
|
|
|
@@ -2350,7 +2368,7 @@ export namespace sesame {
|
|
|
2350
2368
|
public transactionDeps: number[];
|
|
2351
2369
|
|
|
2352
2370
|
/** CommandListItem item. */
|
|
2353
|
-
public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings"|"addEncoder"|"updateEncoder"|"removeEncoder"|"takePlaylist");
|
|
2371
|
+
public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings"|"addEncoder"|"updateEncoder"|"removeEncoder"|"takePlaylist"|"outputControl"|"setSideData"|"removeSideData");
|
|
2354
2372
|
|
|
2355
2373
|
/**
|
|
2356
2374
|
* Creates a new CommandListItem instance using the specified properties.
|
|
@@ -2848,7 +2866,8 @@ export namespace sesame {
|
|
|
2848
2866
|
CONNECTION_STATE_ONLINE = 3,
|
|
2849
2867
|
CONNECTION_STATE_DEGRADED = 4,
|
|
2850
2868
|
CONNECTION_STATE_OFFLINE = 5,
|
|
2851
|
-
CONNECTION_STATE_ERROR = 6
|
|
2869
|
+
CONNECTION_STATE_ERROR = 6,
|
|
2870
|
+
CONNECTION_STATE_DISABLED = 7
|
|
2852
2871
|
}
|
|
2853
2872
|
|
|
2854
2873
|
/** VideoFormat enum. */
|
|
@@ -4616,6 +4635,13 @@ export namespace sesame {
|
|
|
4616
4635
|
SIGNAL_GENERATOR_AUDIO_MODE_SILENCE = 3
|
|
4617
4636
|
}
|
|
4618
4637
|
|
|
4638
|
+
/** SignalGeneratorTimecodeMode enum. */
|
|
4639
|
+
enum SignalGeneratorTimecodeMode {
|
|
4640
|
+
SIGNAL_GENERATOR_TIMECODE_MODE_NONE = 0,
|
|
4641
|
+
SIGNAL_GENERATOR_TIMECODE_MODE_FREE_RUN = 1,
|
|
4642
|
+
SIGNAL_GENERATOR_TIMECODE_MODE_TIME_OF_DAY = 2
|
|
4643
|
+
}
|
|
4644
|
+
|
|
4619
4645
|
/** Properties of a SignalGeneratorSourceConfig. */
|
|
4620
4646
|
interface ISignalGeneratorSourceConfig {
|
|
4621
4647
|
|
|
@@ -4627,6 +4653,12 @@ export namespace sesame {
|
|
|
4627
4653
|
|
|
4628
4654
|
/** SignalGeneratorSourceConfig audioMode */
|
|
4629
4655
|
audioMode?: (sesame.v1.sources.SignalGeneratorAudioMode|null);
|
|
4656
|
+
|
|
4657
|
+
/** SignalGeneratorSourceConfig timecodeMode */
|
|
4658
|
+
timecodeMode?: (sesame.v1.sources.SignalGeneratorTimecodeMode|null);
|
|
4659
|
+
|
|
4660
|
+
/** SignalGeneratorSourceConfig timecodeStartFrame */
|
|
4661
|
+
timecodeStartFrame?: (number|null);
|
|
4630
4662
|
}
|
|
4631
4663
|
|
|
4632
4664
|
/** Represents a SignalGeneratorSourceConfig. */
|
|
@@ -4647,6 +4679,12 @@ export namespace sesame {
|
|
|
4647
4679
|
/** SignalGeneratorSourceConfig audioMode. */
|
|
4648
4680
|
public audioMode: sesame.v1.sources.SignalGeneratorAudioMode;
|
|
4649
4681
|
|
|
4682
|
+
/** SignalGeneratorSourceConfig timecodeMode. */
|
|
4683
|
+
public timecodeMode: sesame.v1.sources.SignalGeneratorTimecodeMode;
|
|
4684
|
+
|
|
4685
|
+
/** SignalGeneratorSourceConfig timecodeStartFrame. */
|
|
4686
|
+
public timecodeStartFrame: number;
|
|
4687
|
+
|
|
4650
4688
|
/**
|
|
4651
4689
|
* Creates a new SignalGeneratorSourceConfig instance using the specified properties.
|
|
4652
4690
|
* @param [properties] Properties to set
|
|
@@ -9267,6 +9305,12 @@ export namespace sesame {
|
|
|
9267
9305
|
|
|
9268
9306
|
/** SystemStatus version */
|
|
9269
9307
|
version?: (string|null);
|
|
9308
|
+
|
|
9309
|
+
/** SystemStatus nvencSessions */
|
|
9310
|
+
nvencSessions?: (number|null);
|
|
9311
|
+
|
|
9312
|
+
/** SystemStatus nvdecSessions */
|
|
9313
|
+
nvdecSessions?: (number|null);
|
|
9270
9314
|
}
|
|
9271
9315
|
|
|
9272
9316
|
/** Represents a SystemStatus. */
|
|
@@ -9332,6 +9376,12 @@ export namespace sesame {
|
|
|
9332
9376
|
/** SystemStatus version. */
|
|
9333
9377
|
public version: string;
|
|
9334
9378
|
|
|
9379
|
+
/** SystemStatus nvencSessions. */
|
|
9380
|
+
public nvencSessions: number;
|
|
9381
|
+
|
|
9382
|
+
/** SystemStatus nvdecSessions. */
|
|
9383
|
+
public nvdecSessions: number;
|
|
9384
|
+
|
|
9335
9385
|
/**
|
|
9336
9386
|
* Creates a new SystemStatus instance using the specified properties.
|
|
9337
9387
|
* @param [properties] Properties to set
|
|
@@ -10545,12 +10595,222 @@ export namespace sesame {
|
|
|
10545
10595
|
ENCODER_TYPE_VIDEO = 1
|
|
10546
10596
|
}
|
|
10547
10597
|
|
|
10548
|
-
/**
|
|
10549
|
-
enum
|
|
10550
|
-
|
|
10551
|
-
|
|
10552
|
-
|
|
10553
|
-
|
|
10598
|
+
/** EncoderTuning enum. */
|
|
10599
|
+
enum EncoderTuning {
|
|
10600
|
+
ENCODER_TUNING_UNSPECIFIED = 0,
|
|
10601
|
+
ENCODER_TUNING_ULTRA_LOW_LATENCY = 1,
|
|
10602
|
+
ENCODER_TUNING_LOW_LATENCY = 2,
|
|
10603
|
+
ENCODER_TUNING_HIGH_QUALITY = 3
|
|
10604
|
+
}
|
|
10605
|
+
|
|
10606
|
+
/** EncoderRateControl enum. */
|
|
10607
|
+
enum EncoderRateControl {
|
|
10608
|
+
ENCODER_RATE_CONTROL_UNSPECIFIED = 0,
|
|
10609
|
+
ENCODER_RATE_CONTROL_CBR = 1,
|
|
10610
|
+
ENCODER_RATE_CONTROL_VBR = 2
|
|
10611
|
+
}
|
|
10612
|
+
|
|
10613
|
+
/** EncoderProfile enum. */
|
|
10614
|
+
enum EncoderProfile {
|
|
10615
|
+
ENCODER_PROFILE_AUTO = 0,
|
|
10616
|
+
ENCODER_PROFILE_BASELINE = 1,
|
|
10617
|
+
ENCODER_PROFILE_MAIN = 2,
|
|
10618
|
+
ENCODER_PROFILE_MAIN10 = 3,
|
|
10619
|
+
ENCODER_PROFILE_HIGH = 4
|
|
10620
|
+
}
|
|
10621
|
+
|
|
10622
|
+
/** EncoderMultipass enum. */
|
|
10623
|
+
enum EncoderMultipass {
|
|
10624
|
+
ENCODER_MULTIPASS_DISABLED = 0,
|
|
10625
|
+
ENCODER_MULTIPASS_QUARTER_RESOLUTION = 1,
|
|
10626
|
+
ENCODER_MULTIPASS_FULL_RESOLUTION = 2
|
|
10627
|
+
}
|
|
10628
|
+
|
|
10629
|
+
/** EncoderChromaFormat enum. */
|
|
10630
|
+
enum EncoderChromaFormat {
|
|
10631
|
+
ENCODER_CHROMA_FORMAT_420 = 0,
|
|
10632
|
+
ENCODER_CHROMA_FORMAT_444 = 1
|
|
10633
|
+
}
|
|
10634
|
+
|
|
10635
|
+
/** Properties of an EncoderSettings. */
|
|
10636
|
+
interface IEncoderSettings {
|
|
10637
|
+
|
|
10638
|
+
/** EncoderSettings tuning */
|
|
10639
|
+
tuning?: (sesame.v1.outputs.EncoderTuning|null);
|
|
10640
|
+
|
|
10641
|
+
/** EncoderSettings effort */
|
|
10642
|
+
effort?: (number|null);
|
|
10643
|
+
|
|
10644
|
+
/** EncoderSettings rateControl */
|
|
10645
|
+
rateControl?: (sesame.v1.outputs.EncoderRateControl|null);
|
|
10646
|
+
|
|
10647
|
+
/** EncoderSettings maxBitrateKbps */
|
|
10648
|
+
maxBitrateKbps?: (number|null);
|
|
10649
|
+
|
|
10650
|
+
/** EncoderSettings profile */
|
|
10651
|
+
profile?: (sesame.v1.outputs.EncoderProfile|null);
|
|
10652
|
+
|
|
10653
|
+
/** EncoderSettings bframes */
|
|
10654
|
+
bframes?: (number|null);
|
|
10655
|
+
|
|
10656
|
+
/** EncoderSettings idrOnly */
|
|
10657
|
+
idrOnly?: (boolean|null);
|
|
10658
|
+
|
|
10659
|
+
/** EncoderSettings spatialAq */
|
|
10660
|
+
spatialAq?: (boolean|null);
|
|
10661
|
+
|
|
10662
|
+
/** EncoderSettings multipass */
|
|
10663
|
+
multipass?: (sesame.v1.outputs.EncoderMultipass|null);
|
|
10664
|
+
|
|
10665
|
+
/** EncoderSettings lookaheadDepth */
|
|
10666
|
+
lookaheadDepth?: (number|null);
|
|
10667
|
+
|
|
10668
|
+
/** EncoderSettings zeroReorderDelay */
|
|
10669
|
+
zeroReorderDelay?: (boolean|null);
|
|
10670
|
+
|
|
10671
|
+
/** EncoderSettings bitDepth */
|
|
10672
|
+
bitDepth?: (number|null);
|
|
10673
|
+
|
|
10674
|
+
/** EncoderSettings chromaFormat */
|
|
10675
|
+
chromaFormat?: (sesame.v1.outputs.EncoderChromaFormat|null);
|
|
10676
|
+
|
|
10677
|
+
/** EncoderSettings outputAud */
|
|
10678
|
+
outputAud?: (boolean|null);
|
|
10679
|
+
|
|
10680
|
+
/** EncoderSettings level */
|
|
10681
|
+
level?: (string|null);
|
|
10682
|
+
}
|
|
10683
|
+
|
|
10684
|
+
/** Represents an EncoderSettings. */
|
|
10685
|
+
class EncoderSettings implements IEncoderSettings {
|
|
10686
|
+
|
|
10687
|
+
/**
|
|
10688
|
+
* Constructs a new EncoderSettings.
|
|
10689
|
+
* @param [properties] Properties to set
|
|
10690
|
+
*/
|
|
10691
|
+
constructor(properties?: sesame.v1.outputs.IEncoderSettings);
|
|
10692
|
+
|
|
10693
|
+
/** EncoderSettings tuning. */
|
|
10694
|
+
public tuning: sesame.v1.outputs.EncoderTuning;
|
|
10695
|
+
|
|
10696
|
+
/** EncoderSettings effort. */
|
|
10697
|
+
public effort: number;
|
|
10698
|
+
|
|
10699
|
+
/** EncoderSettings rateControl. */
|
|
10700
|
+
public rateControl: sesame.v1.outputs.EncoderRateControl;
|
|
10701
|
+
|
|
10702
|
+
/** EncoderSettings maxBitrateKbps. */
|
|
10703
|
+
public maxBitrateKbps: number;
|
|
10704
|
+
|
|
10705
|
+
/** EncoderSettings profile. */
|
|
10706
|
+
public profile: sesame.v1.outputs.EncoderProfile;
|
|
10707
|
+
|
|
10708
|
+
/** EncoderSettings bframes. */
|
|
10709
|
+
public bframes: number;
|
|
10710
|
+
|
|
10711
|
+
/** EncoderSettings idrOnly. */
|
|
10712
|
+
public idrOnly: boolean;
|
|
10713
|
+
|
|
10714
|
+
/** EncoderSettings spatialAq. */
|
|
10715
|
+
public spatialAq: boolean;
|
|
10716
|
+
|
|
10717
|
+
/** EncoderSettings multipass. */
|
|
10718
|
+
public multipass: sesame.v1.outputs.EncoderMultipass;
|
|
10719
|
+
|
|
10720
|
+
/** EncoderSettings lookaheadDepth. */
|
|
10721
|
+
public lookaheadDepth: number;
|
|
10722
|
+
|
|
10723
|
+
/** EncoderSettings zeroReorderDelay. */
|
|
10724
|
+
public zeroReorderDelay: boolean;
|
|
10725
|
+
|
|
10726
|
+
/** EncoderSettings bitDepth. */
|
|
10727
|
+
public bitDepth: number;
|
|
10728
|
+
|
|
10729
|
+
/** EncoderSettings chromaFormat. */
|
|
10730
|
+
public chromaFormat: sesame.v1.outputs.EncoderChromaFormat;
|
|
10731
|
+
|
|
10732
|
+
/** EncoderSettings outputAud. */
|
|
10733
|
+
public outputAud: boolean;
|
|
10734
|
+
|
|
10735
|
+
/** EncoderSettings level. */
|
|
10736
|
+
public level: string;
|
|
10737
|
+
|
|
10738
|
+
/**
|
|
10739
|
+
* Creates a new EncoderSettings instance using the specified properties.
|
|
10740
|
+
* @param [properties] Properties to set
|
|
10741
|
+
* @returns EncoderSettings instance
|
|
10742
|
+
*/
|
|
10743
|
+
public static create(properties?: sesame.v1.outputs.IEncoderSettings): sesame.v1.outputs.EncoderSettings;
|
|
10744
|
+
|
|
10745
|
+
/**
|
|
10746
|
+
* Encodes the specified EncoderSettings message. Does not implicitly {@link sesame.v1.outputs.EncoderSettings.verify|verify} messages.
|
|
10747
|
+
* @param message EncoderSettings message or plain object to encode
|
|
10748
|
+
* @param [writer] Writer to encode to
|
|
10749
|
+
* @returns Writer
|
|
10750
|
+
*/
|
|
10751
|
+
public static encode(message: sesame.v1.outputs.IEncoderSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10752
|
+
|
|
10753
|
+
/**
|
|
10754
|
+
* Encodes the specified EncoderSettings message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderSettings.verify|verify} messages.
|
|
10755
|
+
* @param message EncoderSettings message or plain object to encode
|
|
10756
|
+
* @param [writer] Writer to encode to
|
|
10757
|
+
* @returns Writer
|
|
10758
|
+
*/
|
|
10759
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10760
|
+
|
|
10761
|
+
/**
|
|
10762
|
+
* Decodes an EncoderSettings message from the specified reader or buffer.
|
|
10763
|
+
* @param reader Reader or buffer to decode from
|
|
10764
|
+
* @param [length] Message length if known beforehand
|
|
10765
|
+
* @returns EncoderSettings
|
|
10766
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10767
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10768
|
+
*/
|
|
10769
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderSettings;
|
|
10770
|
+
|
|
10771
|
+
/**
|
|
10772
|
+
* Decodes an EncoderSettings message from the specified reader or buffer, length delimited.
|
|
10773
|
+
* @param reader Reader or buffer to decode from
|
|
10774
|
+
* @returns EncoderSettings
|
|
10775
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10776
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10777
|
+
*/
|
|
10778
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderSettings;
|
|
10779
|
+
|
|
10780
|
+
/**
|
|
10781
|
+
* Verifies an EncoderSettings message.
|
|
10782
|
+
* @param message Plain object to verify
|
|
10783
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10784
|
+
*/
|
|
10785
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10786
|
+
|
|
10787
|
+
/**
|
|
10788
|
+
* Creates an EncoderSettings message from a plain object. Also converts values to their respective internal types.
|
|
10789
|
+
* @param object Plain object
|
|
10790
|
+
* @returns EncoderSettings
|
|
10791
|
+
*/
|
|
10792
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderSettings;
|
|
10793
|
+
|
|
10794
|
+
/**
|
|
10795
|
+
* Creates a plain object from an EncoderSettings message. Also converts values to other types if specified.
|
|
10796
|
+
* @param message EncoderSettings
|
|
10797
|
+
* @param [options] Conversion options
|
|
10798
|
+
* @returns Plain object
|
|
10799
|
+
*/
|
|
10800
|
+
public static toObject(message: sesame.v1.outputs.EncoderSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10801
|
+
|
|
10802
|
+
/**
|
|
10803
|
+
* Converts this EncoderSettings to JSON.
|
|
10804
|
+
* @returns JSON object
|
|
10805
|
+
*/
|
|
10806
|
+
public toJSON(): { [k: string]: any };
|
|
10807
|
+
|
|
10808
|
+
/**
|
|
10809
|
+
* Gets the default type url for EncoderSettings
|
|
10810
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10811
|
+
* @returns The default type url
|
|
10812
|
+
*/
|
|
10813
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10554
10814
|
}
|
|
10555
10815
|
|
|
10556
10816
|
/** RecorderType enum. */
|
|
@@ -10560,15 +10820,19 @@ export namespace sesame {
|
|
|
10560
10820
|
RECORDER_TYPE_CLIPS = 2
|
|
10561
10821
|
}
|
|
10562
10822
|
|
|
10823
|
+
/** TimecodeMode enum. */
|
|
10824
|
+
enum TimecodeMode {
|
|
10825
|
+
TIMECODE_MODE_UNSPECIFIED = 0,
|
|
10826
|
+
TIMECODE_MODE_WALLCLOCK = 1,
|
|
10827
|
+
TIMECODE_MODE_SOURCE = 2
|
|
10828
|
+
}
|
|
10829
|
+
|
|
10563
10830
|
/** Properties of an EncoderConfig. */
|
|
10564
10831
|
interface IEncoderConfig {
|
|
10565
10832
|
|
|
10566
10833
|
/** EncoderConfig codec */
|
|
10567
10834
|
codec?: (sesame.v1.common.CodecType|null);
|
|
10568
10835
|
|
|
10569
|
-
/** EncoderConfig preset */
|
|
10570
|
-
preset?: (sesame.v1.outputs.EncoderPreset|null);
|
|
10571
|
-
|
|
10572
10836
|
/** EncoderConfig bitrateKbps */
|
|
10573
10837
|
bitrateKbps?: (number|null);
|
|
10574
10838
|
|
|
@@ -10583,6 +10847,15 @@ export namespace sesame {
|
|
|
10583
10847
|
|
|
10584
10848
|
/** EncoderConfig fps */
|
|
10585
10849
|
fps?: (number|null);
|
|
10850
|
+
|
|
10851
|
+
/** EncoderConfig timecodeMode */
|
|
10852
|
+
timecodeMode?: (sesame.v1.outputs.TimecodeMode|null);
|
|
10853
|
+
|
|
10854
|
+
/** EncoderConfig timecodeSourceId */
|
|
10855
|
+
timecodeSourceId?: (string|null);
|
|
10856
|
+
|
|
10857
|
+
/** EncoderConfig settings */
|
|
10858
|
+
settings?: (sesame.v1.outputs.IEncoderSettings|null);
|
|
10586
10859
|
}
|
|
10587
10860
|
|
|
10588
10861
|
/** Represents an EncoderConfig. */
|
|
@@ -10597,9 +10870,6 @@ export namespace sesame {
|
|
|
10597
10870
|
/** EncoderConfig codec. */
|
|
10598
10871
|
public codec: sesame.v1.common.CodecType;
|
|
10599
10872
|
|
|
10600
|
-
/** EncoderConfig preset. */
|
|
10601
|
-
public preset: sesame.v1.outputs.EncoderPreset;
|
|
10602
|
-
|
|
10603
10873
|
/** EncoderConfig bitrateKbps. */
|
|
10604
10874
|
public bitrateKbps: number;
|
|
10605
10875
|
|
|
@@ -10615,6 +10885,15 @@ export namespace sesame {
|
|
|
10615
10885
|
/** EncoderConfig fps. */
|
|
10616
10886
|
public fps: number;
|
|
10617
10887
|
|
|
10888
|
+
/** EncoderConfig timecodeMode. */
|
|
10889
|
+
public timecodeMode: sesame.v1.outputs.TimecodeMode;
|
|
10890
|
+
|
|
10891
|
+
/** EncoderConfig timecodeSourceId. */
|
|
10892
|
+
public timecodeSourceId: string;
|
|
10893
|
+
|
|
10894
|
+
/** EncoderConfig settings. */
|
|
10895
|
+
public settings?: (sesame.v1.outputs.IEncoderSettings|null);
|
|
10896
|
+
|
|
10618
10897
|
/**
|
|
10619
10898
|
* Creates a new EncoderConfig instance using the specified properties.
|
|
10620
10899
|
* @param [properties] Properties to set
|
|
@@ -11019,6 +11298,12 @@ export namespace sesame {
|
|
|
11019
11298
|
|
|
11020
11299
|
/** DecklinkOutputConfig keyAndFill */
|
|
11021
11300
|
keyAndFill?: (boolean|null);
|
|
11301
|
+
|
|
11302
|
+
/** DecklinkOutputConfig timecodeMode */
|
|
11303
|
+
timecodeMode?: (sesame.v1.outputs.TimecodeMode|null);
|
|
11304
|
+
|
|
11305
|
+
/** DecklinkOutputConfig timecodeSourceId */
|
|
11306
|
+
timecodeSourceId?: (string|null);
|
|
11022
11307
|
}
|
|
11023
11308
|
|
|
11024
11309
|
/** Represents a DecklinkOutputConfig. */
|
|
@@ -11039,6 +11324,12 @@ export namespace sesame {
|
|
|
11039
11324
|
/** DecklinkOutputConfig keyAndFill. */
|
|
11040
11325
|
public keyAndFill: boolean;
|
|
11041
11326
|
|
|
11327
|
+
/** DecklinkOutputConfig timecodeMode. */
|
|
11328
|
+
public timecodeMode: sesame.v1.outputs.TimecodeMode;
|
|
11329
|
+
|
|
11330
|
+
/** DecklinkOutputConfig timecodeSourceId. */
|
|
11331
|
+
public timecodeSourceId: string;
|
|
11332
|
+
|
|
11042
11333
|
/**
|
|
11043
11334
|
* Creates a new DecklinkOutputConfig instance using the specified properties.
|
|
11044
11335
|
* @param [properties] Properties to set
|
|
@@ -11480,6 +11771,13 @@ export namespace sesame {
|
|
|
11480
11771
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11481
11772
|
}
|
|
11482
11773
|
|
|
11774
|
+
/** SrtStreamControl enum. */
|
|
11775
|
+
enum SrtStreamControl {
|
|
11776
|
+
SRT_STREAM_CONTROL_UNSPECIFIED = 0,
|
|
11777
|
+
SRT_STREAM_CONTROL_STARTED = 1,
|
|
11778
|
+
SRT_STREAM_CONTROL_MANUAL = 2
|
|
11779
|
+
}
|
|
11780
|
+
|
|
11483
11781
|
/** Properties of an EncodedSrtOutputConfig. */
|
|
11484
11782
|
interface IEncodedSrtOutputConfig {
|
|
11485
11783
|
|
|
@@ -11488,6 +11786,9 @@ export namespace sesame {
|
|
|
11488
11786
|
|
|
11489
11787
|
/** EncodedSrtOutputConfig encoderId */
|
|
11490
11788
|
encoderId?: (string|null);
|
|
11789
|
+
|
|
11790
|
+
/** EncodedSrtOutputConfig control */
|
|
11791
|
+
control?: (sesame.v1.outputs.SrtStreamControl|null);
|
|
11491
11792
|
}
|
|
11492
11793
|
|
|
11493
11794
|
/** Represents an EncodedSrtOutputConfig. */
|
|
@@ -11505,6 +11806,9 @@ export namespace sesame {
|
|
|
11505
11806
|
/** EncodedSrtOutputConfig encoderId. */
|
|
11506
11807
|
public encoderId: string;
|
|
11507
11808
|
|
|
11809
|
+
/** EncodedSrtOutputConfig control. */
|
|
11810
|
+
public control: sesame.v1.outputs.SrtStreamControl;
|
|
11811
|
+
|
|
11508
11812
|
/**
|
|
11509
11813
|
* Creates a new EncodedSrtOutputConfig instance using the specified properties.
|
|
11510
11814
|
* @param [properties] Properties to set
|
|
@@ -12218,6 +12522,116 @@ export namespace sesame {
|
|
|
12218
12522
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12219
12523
|
}
|
|
12220
12524
|
|
|
12525
|
+
/** OutputControlAction enum. */
|
|
12526
|
+
enum OutputControlAction {
|
|
12527
|
+
OUTPUT_CONTROL_ACTION_UNSPECIFIED = 0,
|
|
12528
|
+
OUTPUT_CONTROL_ACTION_START = 1,
|
|
12529
|
+
OUTPUT_CONTROL_ACTION_STOP = 2
|
|
12530
|
+
}
|
|
12531
|
+
|
|
12532
|
+
/** Properties of an OutputControlRequest. */
|
|
12533
|
+
interface IOutputControlRequest {
|
|
12534
|
+
|
|
12535
|
+
/** OutputControlRequest id */
|
|
12536
|
+
id?: (string|null);
|
|
12537
|
+
|
|
12538
|
+
/** OutputControlRequest action */
|
|
12539
|
+
action?: (sesame.v1.outputs.OutputControlAction|null);
|
|
12540
|
+
}
|
|
12541
|
+
|
|
12542
|
+
/** Represents an OutputControlRequest. */
|
|
12543
|
+
class OutputControlRequest implements IOutputControlRequest {
|
|
12544
|
+
|
|
12545
|
+
/**
|
|
12546
|
+
* Constructs a new OutputControlRequest.
|
|
12547
|
+
* @param [properties] Properties to set
|
|
12548
|
+
*/
|
|
12549
|
+
constructor(properties?: sesame.v1.outputs.IOutputControlRequest);
|
|
12550
|
+
|
|
12551
|
+
/** OutputControlRequest id. */
|
|
12552
|
+
public id: string;
|
|
12553
|
+
|
|
12554
|
+
/** OutputControlRequest action. */
|
|
12555
|
+
public action: sesame.v1.outputs.OutputControlAction;
|
|
12556
|
+
|
|
12557
|
+
/**
|
|
12558
|
+
* Creates a new OutputControlRequest instance using the specified properties.
|
|
12559
|
+
* @param [properties] Properties to set
|
|
12560
|
+
* @returns OutputControlRequest instance
|
|
12561
|
+
*/
|
|
12562
|
+
public static create(properties?: sesame.v1.outputs.IOutputControlRequest): sesame.v1.outputs.OutputControlRequest;
|
|
12563
|
+
|
|
12564
|
+
/**
|
|
12565
|
+
* Encodes the specified OutputControlRequest message. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
|
|
12566
|
+
* @param message OutputControlRequest message or plain object to encode
|
|
12567
|
+
* @param [writer] Writer to encode to
|
|
12568
|
+
* @returns Writer
|
|
12569
|
+
*/
|
|
12570
|
+
public static encode(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12571
|
+
|
|
12572
|
+
/**
|
|
12573
|
+
* Encodes the specified OutputControlRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
|
|
12574
|
+
* @param message OutputControlRequest message or plain object to encode
|
|
12575
|
+
* @param [writer] Writer to encode to
|
|
12576
|
+
* @returns Writer
|
|
12577
|
+
*/
|
|
12578
|
+
public static encodeDelimited(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12579
|
+
|
|
12580
|
+
/**
|
|
12581
|
+
* Decodes an OutputControlRequest message from the specified reader or buffer.
|
|
12582
|
+
* @param reader Reader or buffer to decode from
|
|
12583
|
+
* @param [length] Message length if known beforehand
|
|
12584
|
+
* @returns OutputControlRequest
|
|
12585
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12586
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12587
|
+
*/
|
|
12588
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.OutputControlRequest;
|
|
12589
|
+
|
|
12590
|
+
/**
|
|
12591
|
+
* Decodes an OutputControlRequest message from the specified reader or buffer, length delimited.
|
|
12592
|
+
* @param reader Reader or buffer to decode from
|
|
12593
|
+
* @returns OutputControlRequest
|
|
12594
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12595
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12596
|
+
*/
|
|
12597
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.OutputControlRequest;
|
|
12598
|
+
|
|
12599
|
+
/**
|
|
12600
|
+
* Verifies an OutputControlRequest message.
|
|
12601
|
+
* @param message Plain object to verify
|
|
12602
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12603
|
+
*/
|
|
12604
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12605
|
+
|
|
12606
|
+
/**
|
|
12607
|
+
* Creates an OutputControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
12608
|
+
* @param object Plain object
|
|
12609
|
+
* @returns OutputControlRequest
|
|
12610
|
+
*/
|
|
12611
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.OutputControlRequest;
|
|
12612
|
+
|
|
12613
|
+
/**
|
|
12614
|
+
* Creates a plain object from an OutputControlRequest message. Also converts values to other types if specified.
|
|
12615
|
+
* @param message OutputControlRequest
|
|
12616
|
+
* @param [options] Conversion options
|
|
12617
|
+
* @returns Plain object
|
|
12618
|
+
*/
|
|
12619
|
+
public static toObject(message: sesame.v1.outputs.OutputControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12620
|
+
|
|
12621
|
+
/**
|
|
12622
|
+
* Converts this OutputControlRequest to JSON.
|
|
12623
|
+
* @returns JSON object
|
|
12624
|
+
*/
|
|
12625
|
+
public toJSON(): { [k: string]: any };
|
|
12626
|
+
|
|
12627
|
+
/**
|
|
12628
|
+
* Gets the default type url for OutputControlRequest
|
|
12629
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12630
|
+
* @returns The default type url
|
|
12631
|
+
*/
|
|
12632
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12633
|
+
}
|
|
12634
|
+
|
|
12221
12635
|
/** Properties of a KeyframeRequest. */
|
|
12222
12636
|
interface IKeyframeRequest {
|
|
12223
12637
|
|
|
@@ -12341,6 +12755,9 @@ export namespace sesame {
|
|
|
12341
12755
|
|
|
12342
12756
|
/** OutputStatus encoderId */
|
|
12343
12757
|
encoderId?: (string|null);
|
|
12758
|
+
|
|
12759
|
+
/** OutputStatus control */
|
|
12760
|
+
control?: (sesame.v1.outputs.SrtStreamControl|null);
|
|
12344
12761
|
}
|
|
12345
12762
|
|
|
12346
12763
|
/** Represents an OutputStatus. */
|
|
@@ -12376,6 +12793,9 @@ export namespace sesame {
|
|
|
12376
12793
|
/** OutputStatus encoderId. */
|
|
12377
12794
|
public encoderId: string;
|
|
12378
12795
|
|
|
12796
|
+
/** OutputStatus control. */
|
|
12797
|
+
public control: sesame.v1.outputs.SrtStreamControl;
|
|
12798
|
+
|
|
12379
12799
|
/**
|
|
12380
12800
|
* Creates a new OutputStatus instance using the specified properties.
|
|
12381
12801
|
* @param [properties] Properties to set
|
|
@@ -12471,6 +12891,9 @@ export namespace sesame {
|
|
|
12471
12891
|
|
|
12472
12892
|
/** EncoderStatus compositionId */
|
|
12473
12893
|
compositionId?: (string|null);
|
|
12894
|
+
|
|
12895
|
+
/** EncoderStatus droppedFrames */
|
|
12896
|
+
droppedFrames?: (number|null);
|
|
12474
12897
|
}
|
|
12475
12898
|
|
|
12476
12899
|
/** Represents an EncoderStatus. */
|
|
@@ -12497,6 +12920,9 @@ export namespace sesame {
|
|
|
12497
12920
|
/** EncoderStatus compositionId. */
|
|
12498
12921
|
public compositionId: string;
|
|
12499
12922
|
|
|
12923
|
+
/** EncoderStatus droppedFrames. */
|
|
12924
|
+
public droppedFrames: number;
|
|
12925
|
+
|
|
12500
12926
|
/**
|
|
12501
12927
|
* Creates a new EncoderStatus instance using the specified properties.
|
|
12502
12928
|
* @param [properties] Properties to set
|
|
@@ -13241,96 +13667,302 @@ export namespace sesame {
|
|
|
13241
13667
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13242
13668
|
}
|
|
13243
13669
|
|
|
13244
|
-
/** Properties of a
|
|
13245
|
-
interface
|
|
13246
|
-
|
|
13247
|
-
/** PropertySetRequest domain */
|
|
13248
|
-
domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13249
|
-
|
|
13250
|
-
/** PropertySetRequest address */
|
|
13251
|
-
address?: (string|null);
|
|
13670
|
+
/** Properties of a SideDataSetRequest. */
|
|
13671
|
+
interface ISideDataSetRequest {
|
|
13252
13672
|
|
|
13253
|
-
/**
|
|
13254
|
-
|
|
13673
|
+
/** SideDataSetRequest compositorId */
|
|
13674
|
+
compositorId?: (string|null);
|
|
13255
13675
|
|
|
13256
|
-
/**
|
|
13257
|
-
|
|
13676
|
+
/** SideDataSetRequest sideData */
|
|
13677
|
+
sideData?: (sesame.v1.sidedata.ISideData|null);
|
|
13258
13678
|
}
|
|
13259
13679
|
|
|
13260
|
-
/** Represents a
|
|
13261
|
-
class
|
|
13680
|
+
/** Represents a SideDataSetRequest. */
|
|
13681
|
+
class SideDataSetRequest implements ISideDataSetRequest {
|
|
13262
13682
|
|
|
13263
13683
|
/**
|
|
13264
|
-
* Constructs a new
|
|
13684
|
+
* Constructs a new SideDataSetRequest.
|
|
13265
13685
|
* @param [properties] Properties to set
|
|
13266
13686
|
*/
|
|
13267
|
-
constructor(properties?: sesame.v1.compositor.
|
|
13268
|
-
|
|
13269
|
-
/** PropertySetRequest domain. */
|
|
13270
|
-
public domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13271
|
-
|
|
13272
|
-
/** PropertySetRequest address. */
|
|
13273
|
-
public address: string;
|
|
13687
|
+
constructor(properties?: sesame.v1.compositor.ISideDataSetRequest);
|
|
13274
13688
|
|
|
13275
|
-
/**
|
|
13276
|
-
public
|
|
13689
|
+
/** SideDataSetRequest compositorId. */
|
|
13690
|
+
public compositorId: string;
|
|
13277
13691
|
|
|
13278
|
-
/**
|
|
13279
|
-
public
|
|
13692
|
+
/** SideDataSetRequest sideData. */
|
|
13693
|
+
public sideData?: (sesame.v1.sidedata.ISideData|null);
|
|
13280
13694
|
|
|
13281
13695
|
/**
|
|
13282
|
-
* Creates a new
|
|
13696
|
+
* Creates a new SideDataSetRequest instance using the specified properties.
|
|
13283
13697
|
* @param [properties] Properties to set
|
|
13284
|
-
* @returns
|
|
13698
|
+
* @returns SideDataSetRequest instance
|
|
13285
13699
|
*/
|
|
13286
|
-
public static create(properties?: sesame.v1.compositor.
|
|
13700
|
+
public static create(properties?: sesame.v1.compositor.ISideDataSetRequest): sesame.v1.compositor.SideDataSetRequest;
|
|
13287
13701
|
|
|
13288
13702
|
/**
|
|
13289
|
-
* Encodes the specified
|
|
13290
|
-
* @param message
|
|
13703
|
+
* Encodes the specified SideDataSetRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
|
|
13704
|
+
* @param message SideDataSetRequest message or plain object to encode
|
|
13291
13705
|
* @param [writer] Writer to encode to
|
|
13292
13706
|
* @returns Writer
|
|
13293
13707
|
*/
|
|
13294
|
-
public static encode(message: sesame.v1.compositor.
|
|
13708
|
+
public static encode(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13295
13709
|
|
|
13296
13710
|
/**
|
|
13297
|
-
* Encodes the specified
|
|
13298
|
-
* @param message
|
|
13711
|
+
* Encodes the specified SideDataSetRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
|
|
13712
|
+
* @param message SideDataSetRequest message or plain object to encode
|
|
13299
13713
|
* @param [writer] Writer to encode to
|
|
13300
13714
|
* @returns Writer
|
|
13301
13715
|
*/
|
|
13302
|
-
public static encodeDelimited(message: sesame.v1.compositor.
|
|
13716
|
+
public static encodeDelimited(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13303
13717
|
|
|
13304
13718
|
/**
|
|
13305
|
-
* Decodes a
|
|
13719
|
+
* Decodes a SideDataSetRequest message from the specified reader or buffer.
|
|
13306
13720
|
* @param reader Reader or buffer to decode from
|
|
13307
13721
|
* @param [length] Message length if known beforehand
|
|
13308
|
-
* @returns
|
|
13722
|
+
* @returns SideDataSetRequest
|
|
13309
13723
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13310
13724
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13311
13725
|
*/
|
|
13312
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.
|
|
13726
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataSetRequest;
|
|
13313
13727
|
|
|
13314
13728
|
/**
|
|
13315
|
-
* Decodes a
|
|
13729
|
+
* Decodes a SideDataSetRequest message from the specified reader or buffer, length delimited.
|
|
13316
13730
|
* @param reader Reader or buffer to decode from
|
|
13317
|
-
* @returns
|
|
13731
|
+
* @returns SideDataSetRequest
|
|
13318
13732
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13319
13733
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13320
13734
|
*/
|
|
13321
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.
|
|
13735
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataSetRequest;
|
|
13322
13736
|
|
|
13323
13737
|
/**
|
|
13324
|
-
* Verifies a
|
|
13738
|
+
* Verifies a SideDataSetRequest message.
|
|
13325
13739
|
* @param message Plain object to verify
|
|
13326
13740
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13327
13741
|
*/
|
|
13328
13742
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13329
13743
|
|
|
13330
13744
|
/**
|
|
13331
|
-
* Creates a
|
|
13745
|
+
* Creates a SideDataSetRequest message from a plain object. Also converts values to their respective internal types.
|
|
13332
13746
|
* @param object Plain object
|
|
13333
|
-
* @returns
|
|
13747
|
+
* @returns SideDataSetRequest
|
|
13748
|
+
*/
|
|
13749
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataSetRequest;
|
|
13750
|
+
|
|
13751
|
+
/**
|
|
13752
|
+
* Creates a plain object from a SideDataSetRequest message. Also converts values to other types if specified.
|
|
13753
|
+
* @param message SideDataSetRequest
|
|
13754
|
+
* @param [options] Conversion options
|
|
13755
|
+
* @returns Plain object
|
|
13756
|
+
*/
|
|
13757
|
+
public static toObject(message: sesame.v1.compositor.SideDataSetRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13758
|
+
|
|
13759
|
+
/**
|
|
13760
|
+
* Converts this SideDataSetRequest to JSON.
|
|
13761
|
+
* @returns JSON object
|
|
13762
|
+
*/
|
|
13763
|
+
public toJSON(): { [k: string]: any };
|
|
13764
|
+
|
|
13765
|
+
/**
|
|
13766
|
+
* Gets the default type url for SideDataSetRequest
|
|
13767
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13768
|
+
* @returns The default type url
|
|
13769
|
+
*/
|
|
13770
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13771
|
+
}
|
|
13772
|
+
|
|
13773
|
+
/** Properties of a SideDataRemoveRequest. */
|
|
13774
|
+
interface ISideDataRemoveRequest {
|
|
13775
|
+
|
|
13776
|
+
/** SideDataRemoveRequest compositorId */
|
|
13777
|
+
compositorId?: (string|null);
|
|
13778
|
+
|
|
13779
|
+
/** SideDataRemoveRequest id */
|
|
13780
|
+
id?: (string|null);
|
|
13781
|
+
}
|
|
13782
|
+
|
|
13783
|
+
/** Represents a SideDataRemoveRequest. */
|
|
13784
|
+
class SideDataRemoveRequest implements ISideDataRemoveRequest {
|
|
13785
|
+
|
|
13786
|
+
/**
|
|
13787
|
+
* Constructs a new SideDataRemoveRequest.
|
|
13788
|
+
* @param [properties] Properties to set
|
|
13789
|
+
*/
|
|
13790
|
+
constructor(properties?: sesame.v1.compositor.ISideDataRemoveRequest);
|
|
13791
|
+
|
|
13792
|
+
/** SideDataRemoveRequest compositorId. */
|
|
13793
|
+
public compositorId: string;
|
|
13794
|
+
|
|
13795
|
+
/** SideDataRemoveRequest id. */
|
|
13796
|
+
public id: string;
|
|
13797
|
+
|
|
13798
|
+
/**
|
|
13799
|
+
* Creates a new SideDataRemoveRequest instance using the specified properties.
|
|
13800
|
+
* @param [properties] Properties to set
|
|
13801
|
+
* @returns SideDataRemoveRequest instance
|
|
13802
|
+
*/
|
|
13803
|
+
public static create(properties?: sesame.v1.compositor.ISideDataRemoveRequest): sesame.v1.compositor.SideDataRemoveRequest;
|
|
13804
|
+
|
|
13805
|
+
/**
|
|
13806
|
+
* Encodes the specified SideDataRemoveRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
|
|
13807
|
+
* @param message SideDataRemoveRequest message or plain object to encode
|
|
13808
|
+
* @param [writer] Writer to encode to
|
|
13809
|
+
* @returns Writer
|
|
13810
|
+
*/
|
|
13811
|
+
public static encode(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13812
|
+
|
|
13813
|
+
/**
|
|
13814
|
+
* Encodes the specified SideDataRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
|
|
13815
|
+
* @param message SideDataRemoveRequest message or plain object to encode
|
|
13816
|
+
* @param [writer] Writer to encode to
|
|
13817
|
+
* @returns Writer
|
|
13818
|
+
*/
|
|
13819
|
+
public static encodeDelimited(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13820
|
+
|
|
13821
|
+
/**
|
|
13822
|
+
* Decodes a SideDataRemoveRequest message from the specified reader or buffer.
|
|
13823
|
+
* @param reader Reader or buffer to decode from
|
|
13824
|
+
* @param [length] Message length if known beforehand
|
|
13825
|
+
* @returns SideDataRemoveRequest
|
|
13826
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13827
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13828
|
+
*/
|
|
13829
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataRemoveRequest;
|
|
13830
|
+
|
|
13831
|
+
/**
|
|
13832
|
+
* Decodes a SideDataRemoveRequest message from the specified reader or buffer, length delimited.
|
|
13833
|
+
* @param reader Reader or buffer to decode from
|
|
13834
|
+
* @returns SideDataRemoveRequest
|
|
13835
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13836
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13837
|
+
*/
|
|
13838
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataRemoveRequest;
|
|
13839
|
+
|
|
13840
|
+
/**
|
|
13841
|
+
* Verifies a SideDataRemoveRequest message.
|
|
13842
|
+
* @param message Plain object to verify
|
|
13843
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13844
|
+
*/
|
|
13845
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13846
|
+
|
|
13847
|
+
/**
|
|
13848
|
+
* Creates a SideDataRemoveRequest message from a plain object. Also converts values to their respective internal types.
|
|
13849
|
+
* @param object Plain object
|
|
13850
|
+
* @returns SideDataRemoveRequest
|
|
13851
|
+
*/
|
|
13852
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataRemoveRequest;
|
|
13853
|
+
|
|
13854
|
+
/**
|
|
13855
|
+
* Creates a plain object from a SideDataRemoveRequest message. Also converts values to other types if specified.
|
|
13856
|
+
* @param message SideDataRemoveRequest
|
|
13857
|
+
* @param [options] Conversion options
|
|
13858
|
+
* @returns Plain object
|
|
13859
|
+
*/
|
|
13860
|
+
public static toObject(message: sesame.v1.compositor.SideDataRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13861
|
+
|
|
13862
|
+
/**
|
|
13863
|
+
* Converts this SideDataRemoveRequest to JSON.
|
|
13864
|
+
* @returns JSON object
|
|
13865
|
+
*/
|
|
13866
|
+
public toJSON(): { [k: string]: any };
|
|
13867
|
+
|
|
13868
|
+
/**
|
|
13869
|
+
* Gets the default type url for SideDataRemoveRequest
|
|
13870
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13871
|
+
* @returns The default type url
|
|
13872
|
+
*/
|
|
13873
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13874
|
+
}
|
|
13875
|
+
|
|
13876
|
+
/** Properties of a PropertySetRequest. */
|
|
13877
|
+
interface IPropertySetRequest {
|
|
13878
|
+
|
|
13879
|
+
/** PropertySetRequest domain */
|
|
13880
|
+
domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13881
|
+
|
|
13882
|
+
/** PropertySetRequest address */
|
|
13883
|
+
address?: (string|null);
|
|
13884
|
+
|
|
13885
|
+
/** PropertySetRequest property */
|
|
13886
|
+
property?: (string|null);
|
|
13887
|
+
|
|
13888
|
+
/** PropertySetRequest value */
|
|
13889
|
+
value?: (sesame.v1.common.IPropValue|null);
|
|
13890
|
+
}
|
|
13891
|
+
|
|
13892
|
+
/** Represents a PropertySetRequest. */
|
|
13893
|
+
class PropertySetRequest implements IPropertySetRequest {
|
|
13894
|
+
|
|
13895
|
+
/**
|
|
13896
|
+
* Constructs a new PropertySetRequest.
|
|
13897
|
+
* @param [properties] Properties to set
|
|
13898
|
+
*/
|
|
13899
|
+
constructor(properties?: sesame.v1.compositor.IPropertySetRequest);
|
|
13900
|
+
|
|
13901
|
+
/** PropertySetRequest domain. */
|
|
13902
|
+
public domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13903
|
+
|
|
13904
|
+
/** PropertySetRequest address. */
|
|
13905
|
+
public address: string;
|
|
13906
|
+
|
|
13907
|
+
/** PropertySetRequest property. */
|
|
13908
|
+
public property: string;
|
|
13909
|
+
|
|
13910
|
+
/** PropertySetRequest value. */
|
|
13911
|
+
public value?: (sesame.v1.common.IPropValue|null);
|
|
13912
|
+
|
|
13913
|
+
/**
|
|
13914
|
+
* Creates a new PropertySetRequest instance using the specified properties.
|
|
13915
|
+
* @param [properties] Properties to set
|
|
13916
|
+
* @returns PropertySetRequest instance
|
|
13917
|
+
*/
|
|
13918
|
+
public static create(properties?: sesame.v1.compositor.IPropertySetRequest): sesame.v1.compositor.PropertySetRequest;
|
|
13919
|
+
|
|
13920
|
+
/**
|
|
13921
|
+
* Encodes the specified PropertySetRequest message. Does not implicitly {@link sesame.v1.compositor.PropertySetRequest.verify|verify} messages.
|
|
13922
|
+
* @param message PropertySetRequest message or plain object to encode
|
|
13923
|
+
* @param [writer] Writer to encode to
|
|
13924
|
+
* @returns Writer
|
|
13925
|
+
*/
|
|
13926
|
+
public static encode(message: sesame.v1.compositor.IPropertySetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13927
|
+
|
|
13928
|
+
/**
|
|
13929
|
+
* Encodes the specified PropertySetRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.PropertySetRequest.verify|verify} messages.
|
|
13930
|
+
* @param message PropertySetRequest message or plain object to encode
|
|
13931
|
+
* @param [writer] Writer to encode to
|
|
13932
|
+
* @returns Writer
|
|
13933
|
+
*/
|
|
13934
|
+
public static encodeDelimited(message: sesame.v1.compositor.IPropertySetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13935
|
+
|
|
13936
|
+
/**
|
|
13937
|
+
* Decodes a PropertySetRequest message from the specified reader or buffer.
|
|
13938
|
+
* @param reader Reader or buffer to decode from
|
|
13939
|
+
* @param [length] Message length if known beforehand
|
|
13940
|
+
* @returns PropertySetRequest
|
|
13941
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13942
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13943
|
+
*/
|
|
13944
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.PropertySetRequest;
|
|
13945
|
+
|
|
13946
|
+
/**
|
|
13947
|
+
* Decodes a PropertySetRequest message from the specified reader or buffer, length delimited.
|
|
13948
|
+
* @param reader Reader or buffer to decode from
|
|
13949
|
+
* @returns PropertySetRequest
|
|
13950
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13951
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13952
|
+
*/
|
|
13953
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.PropertySetRequest;
|
|
13954
|
+
|
|
13955
|
+
/**
|
|
13956
|
+
* Verifies a PropertySetRequest message.
|
|
13957
|
+
* @param message Plain object to verify
|
|
13958
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13959
|
+
*/
|
|
13960
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13961
|
+
|
|
13962
|
+
/**
|
|
13963
|
+
* Creates a PropertySetRequest message from a plain object. Also converts values to their respective internal types.
|
|
13964
|
+
* @param object Plain object
|
|
13965
|
+
* @returns PropertySetRequest
|
|
13334
13966
|
*/
|
|
13335
13967
|
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.PropertySetRequest;
|
|
13336
13968
|
|
|
@@ -13484,6 +14116,473 @@ export namespace sesame {
|
|
|
13484
14116
|
}
|
|
13485
14117
|
}
|
|
13486
14118
|
|
|
14119
|
+
/** Namespace sidedata. */
|
|
14120
|
+
namespace sidedata {
|
|
14121
|
+
|
|
14122
|
+
/** Properties of an AtlasEntry. */
|
|
14123
|
+
interface IAtlasEntry {
|
|
14124
|
+
|
|
14125
|
+
/** AtlasEntry sourceId */
|
|
14126
|
+
sourceId?: (string|null);
|
|
14127
|
+
|
|
14128
|
+
/** AtlasEntry x */
|
|
14129
|
+
x?: (number|null);
|
|
14130
|
+
|
|
14131
|
+
/** AtlasEntry y */
|
|
14132
|
+
y?: (number|null);
|
|
14133
|
+
|
|
14134
|
+
/** AtlasEntry width */
|
|
14135
|
+
width?: (number|null);
|
|
14136
|
+
|
|
14137
|
+
/** AtlasEntry height */
|
|
14138
|
+
height?: (number|null);
|
|
14139
|
+
|
|
14140
|
+
/** AtlasEntry sourceWidth */
|
|
14141
|
+
sourceWidth?: (number|null);
|
|
14142
|
+
|
|
14143
|
+
/** AtlasEntry sourceHeight */
|
|
14144
|
+
sourceHeight?: (number|null);
|
|
14145
|
+
}
|
|
14146
|
+
|
|
14147
|
+
/** Represents an AtlasEntry. */
|
|
14148
|
+
class AtlasEntry implements IAtlasEntry {
|
|
14149
|
+
|
|
14150
|
+
/**
|
|
14151
|
+
* Constructs a new AtlasEntry.
|
|
14152
|
+
* @param [properties] Properties to set
|
|
14153
|
+
*/
|
|
14154
|
+
constructor(properties?: sesame.v1.sidedata.IAtlasEntry);
|
|
14155
|
+
|
|
14156
|
+
/** AtlasEntry sourceId. */
|
|
14157
|
+
public sourceId: string;
|
|
14158
|
+
|
|
14159
|
+
/** AtlasEntry x. */
|
|
14160
|
+
public x: number;
|
|
14161
|
+
|
|
14162
|
+
/** AtlasEntry y. */
|
|
14163
|
+
public y: number;
|
|
14164
|
+
|
|
14165
|
+
/** AtlasEntry width. */
|
|
14166
|
+
public width: number;
|
|
14167
|
+
|
|
14168
|
+
/** AtlasEntry height. */
|
|
14169
|
+
public height: number;
|
|
14170
|
+
|
|
14171
|
+
/** AtlasEntry sourceWidth. */
|
|
14172
|
+
public sourceWidth: number;
|
|
14173
|
+
|
|
14174
|
+
/** AtlasEntry sourceHeight. */
|
|
14175
|
+
public sourceHeight: number;
|
|
14176
|
+
|
|
14177
|
+
/**
|
|
14178
|
+
* Creates a new AtlasEntry instance using the specified properties.
|
|
14179
|
+
* @param [properties] Properties to set
|
|
14180
|
+
* @returns AtlasEntry instance
|
|
14181
|
+
*/
|
|
14182
|
+
public static create(properties?: sesame.v1.sidedata.IAtlasEntry): sesame.v1.sidedata.AtlasEntry;
|
|
14183
|
+
|
|
14184
|
+
/**
|
|
14185
|
+
* Encodes the specified AtlasEntry message. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
|
|
14186
|
+
* @param message AtlasEntry message or plain object to encode
|
|
14187
|
+
* @param [writer] Writer to encode to
|
|
14188
|
+
* @returns Writer
|
|
14189
|
+
*/
|
|
14190
|
+
public static encode(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14191
|
+
|
|
14192
|
+
/**
|
|
14193
|
+
* Encodes the specified AtlasEntry message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
|
|
14194
|
+
* @param message AtlasEntry message or plain object to encode
|
|
14195
|
+
* @param [writer] Writer to encode to
|
|
14196
|
+
* @returns Writer
|
|
14197
|
+
*/
|
|
14198
|
+
public static encodeDelimited(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14199
|
+
|
|
14200
|
+
/**
|
|
14201
|
+
* Decodes an AtlasEntry message from the specified reader or buffer.
|
|
14202
|
+
* @param reader Reader or buffer to decode from
|
|
14203
|
+
* @param [length] Message length if known beforehand
|
|
14204
|
+
* @returns AtlasEntry
|
|
14205
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14206
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14207
|
+
*/
|
|
14208
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasEntry;
|
|
14209
|
+
|
|
14210
|
+
/**
|
|
14211
|
+
* Decodes an AtlasEntry message from the specified reader or buffer, length delimited.
|
|
14212
|
+
* @param reader Reader or buffer to decode from
|
|
14213
|
+
* @returns AtlasEntry
|
|
14214
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14215
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14216
|
+
*/
|
|
14217
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasEntry;
|
|
14218
|
+
|
|
14219
|
+
/**
|
|
14220
|
+
* Verifies an AtlasEntry message.
|
|
14221
|
+
* @param message Plain object to verify
|
|
14222
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14223
|
+
*/
|
|
14224
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14225
|
+
|
|
14226
|
+
/**
|
|
14227
|
+
* Creates an AtlasEntry message from a plain object. Also converts values to their respective internal types.
|
|
14228
|
+
* @param object Plain object
|
|
14229
|
+
* @returns AtlasEntry
|
|
14230
|
+
*/
|
|
14231
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasEntry;
|
|
14232
|
+
|
|
14233
|
+
/**
|
|
14234
|
+
* Creates a plain object from an AtlasEntry message. Also converts values to other types if specified.
|
|
14235
|
+
* @param message AtlasEntry
|
|
14236
|
+
* @param [options] Conversion options
|
|
14237
|
+
* @returns Plain object
|
|
14238
|
+
*/
|
|
14239
|
+
public static toObject(message: sesame.v1.sidedata.AtlasEntry, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14240
|
+
|
|
14241
|
+
/**
|
|
14242
|
+
* Converts this AtlasEntry to JSON.
|
|
14243
|
+
* @returns JSON object
|
|
14244
|
+
*/
|
|
14245
|
+
public toJSON(): { [k: string]: any };
|
|
14246
|
+
|
|
14247
|
+
/**
|
|
14248
|
+
* Gets the default type url for AtlasEntry
|
|
14249
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14250
|
+
* @returns The default type url
|
|
14251
|
+
*/
|
|
14252
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14253
|
+
}
|
|
14254
|
+
|
|
14255
|
+
/** Properties of an AtlasLayout. */
|
|
14256
|
+
interface IAtlasLayout {
|
|
14257
|
+
|
|
14258
|
+
/** AtlasLayout width */
|
|
14259
|
+
width?: (number|null);
|
|
14260
|
+
|
|
14261
|
+
/** AtlasLayout height */
|
|
14262
|
+
height?: (number|null);
|
|
14263
|
+
|
|
14264
|
+
/** AtlasLayout entries */
|
|
14265
|
+
entries?: (sesame.v1.sidedata.IAtlasEntry[]|null);
|
|
14266
|
+
}
|
|
14267
|
+
|
|
14268
|
+
/** Represents an AtlasLayout. */
|
|
14269
|
+
class AtlasLayout implements IAtlasLayout {
|
|
14270
|
+
|
|
14271
|
+
/**
|
|
14272
|
+
* Constructs a new AtlasLayout.
|
|
14273
|
+
* @param [properties] Properties to set
|
|
14274
|
+
*/
|
|
14275
|
+
constructor(properties?: sesame.v1.sidedata.IAtlasLayout);
|
|
14276
|
+
|
|
14277
|
+
/** AtlasLayout width. */
|
|
14278
|
+
public width: number;
|
|
14279
|
+
|
|
14280
|
+
/** AtlasLayout height. */
|
|
14281
|
+
public height: number;
|
|
14282
|
+
|
|
14283
|
+
/** AtlasLayout entries. */
|
|
14284
|
+
public entries: sesame.v1.sidedata.IAtlasEntry[];
|
|
14285
|
+
|
|
14286
|
+
/**
|
|
14287
|
+
* Creates a new AtlasLayout instance using the specified properties.
|
|
14288
|
+
* @param [properties] Properties to set
|
|
14289
|
+
* @returns AtlasLayout instance
|
|
14290
|
+
*/
|
|
14291
|
+
public static create(properties?: sesame.v1.sidedata.IAtlasLayout): sesame.v1.sidedata.AtlasLayout;
|
|
14292
|
+
|
|
14293
|
+
/**
|
|
14294
|
+
* Encodes the specified AtlasLayout message. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
|
|
14295
|
+
* @param message AtlasLayout message or plain object to encode
|
|
14296
|
+
* @param [writer] Writer to encode to
|
|
14297
|
+
* @returns Writer
|
|
14298
|
+
*/
|
|
14299
|
+
public static encode(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14300
|
+
|
|
14301
|
+
/**
|
|
14302
|
+
* Encodes the specified AtlasLayout message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
|
|
14303
|
+
* @param message AtlasLayout message or plain object to encode
|
|
14304
|
+
* @param [writer] Writer to encode to
|
|
14305
|
+
* @returns Writer
|
|
14306
|
+
*/
|
|
14307
|
+
public static encodeDelimited(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14308
|
+
|
|
14309
|
+
/**
|
|
14310
|
+
* Decodes an AtlasLayout message from the specified reader or buffer.
|
|
14311
|
+
* @param reader Reader or buffer to decode from
|
|
14312
|
+
* @param [length] Message length if known beforehand
|
|
14313
|
+
* @returns AtlasLayout
|
|
14314
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14315
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14316
|
+
*/
|
|
14317
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasLayout;
|
|
14318
|
+
|
|
14319
|
+
/**
|
|
14320
|
+
* Decodes an AtlasLayout message from the specified reader or buffer, length delimited.
|
|
14321
|
+
* @param reader Reader or buffer to decode from
|
|
14322
|
+
* @returns AtlasLayout
|
|
14323
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14324
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14325
|
+
*/
|
|
14326
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasLayout;
|
|
14327
|
+
|
|
14328
|
+
/**
|
|
14329
|
+
* Verifies an AtlasLayout message.
|
|
14330
|
+
* @param message Plain object to verify
|
|
14331
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14332
|
+
*/
|
|
14333
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14334
|
+
|
|
14335
|
+
/**
|
|
14336
|
+
* Creates an AtlasLayout message from a plain object. Also converts values to their respective internal types.
|
|
14337
|
+
* @param object Plain object
|
|
14338
|
+
* @returns AtlasLayout
|
|
14339
|
+
*/
|
|
14340
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasLayout;
|
|
14341
|
+
|
|
14342
|
+
/**
|
|
14343
|
+
* Creates a plain object from an AtlasLayout message. Also converts values to other types if specified.
|
|
14344
|
+
* @param message AtlasLayout
|
|
14345
|
+
* @param [options] Conversion options
|
|
14346
|
+
* @returns Plain object
|
|
14347
|
+
*/
|
|
14348
|
+
public static toObject(message: sesame.v1.sidedata.AtlasLayout, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14349
|
+
|
|
14350
|
+
/**
|
|
14351
|
+
* Converts this AtlasLayout to JSON.
|
|
14352
|
+
* @returns JSON object
|
|
14353
|
+
*/
|
|
14354
|
+
public toJSON(): { [k: string]: any };
|
|
14355
|
+
|
|
14356
|
+
/**
|
|
14357
|
+
* Gets the default type url for AtlasLayout
|
|
14358
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14359
|
+
* @returns The default type url
|
|
14360
|
+
*/
|
|
14361
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14362
|
+
}
|
|
14363
|
+
|
|
14364
|
+
/** Properties of a SideData. */
|
|
14365
|
+
interface ISideData {
|
|
14366
|
+
|
|
14367
|
+
/** SideData id */
|
|
14368
|
+
id?: (string|null);
|
|
14369
|
+
|
|
14370
|
+
/** SideData version */
|
|
14371
|
+
version?: (number|Long|null);
|
|
14372
|
+
|
|
14373
|
+
/** SideData atlas */
|
|
14374
|
+
atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
|
|
14375
|
+
|
|
14376
|
+
/** SideData json */
|
|
14377
|
+
json?: (string|null);
|
|
14378
|
+
|
|
14379
|
+
/** SideData binary */
|
|
14380
|
+
binary?: (Uint8Array|null);
|
|
14381
|
+
}
|
|
14382
|
+
|
|
14383
|
+
/** Represents a SideData. */
|
|
14384
|
+
class SideData implements ISideData {
|
|
14385
|
+
|
|
14386
|
+
/**
|
|
14387
|
+
* Constructs a new SideData.
|
|
14388
|
+
* @param [properties] Properties to set
|
|
14389
|
+
*/
|
|
14390
|
+
constructor(properties?: sesame.v1.sidedata.ISideData);
|
|
14391
|
+
|
|
14392
|
+
/** SideData id. */
|
|
14393
|
+
public id: string;
|
|
14394
|
+
|
|
14395
|
+
/** SideData version. */
|
|
14396
|
+
public version: (number|Long);
|
|
14397
|
+
|
|
14398
|
+
/** SideData atlas. */
|
|
14399
|
+
public atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
|
|
14400
|
+
|
|
14401
|
+
/** SideData json. */
|
|
14402
|
+
public json?: (string|null);
|
|
14403
|
+
|
|
14404
|
+
/** SideData binary. */
|
|
14405
|
+
public binary?: (Uint8Array|null);
|
|
14406
|
+
|
|
14407
|
+
/** SideData payload. */
|
|
14408
|
+
public payload?: ("atlas"|"json"|"binary");
|
|
14409
|
+
|
|
14410
|
+
/**
|
|
14411
|
+
* Creates a new SideData instance using the specified properties.
|
|
14412
|
+
* @param [properties] Properties to set
|
|
14413
|
+
* @returns SideData instance
|
|
14414
|
+
*/
|
|
14415
|
+
public static create(properties?: sesame.v1.sidedata.ISideData): sesame.v1.sidedata.SideData;
|
|
14416
|
+
|
|
14417
|
+
/**
|
|
14418
|
+
* Encodes the specified SideData message. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
|
|
14419
|
+
* @param message SideData message or plain object to encode
|
|
14420
|
+
* @param [writer] Writer to encode to
|
|
14421
|
+
* @returns Writer
|
|
14422
|
+
*/
|
|
14423
|
+
public static encode(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14424
|
+
|
|
14425
|
+
/**
|
|
14426
|
+
* Encodes the specified SideData message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
|
|
14427
|
+
* @param message SideData message or plain object to encode
|
|
14428
|
+
* @param [writer] Writer to encode to
|
|
14429
|
+
* @returns Writer
|
|
14430
|
+
*/
|
|
14431
|
+
public static encodeDelimited(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14432
|
+
|
|
14433
|
+
/**
|
|
14434
|
+
* Decodes a SideData message from the specified reader or buffer.
|
|
14435
|
+
* @param reader Reader or buffer to decode from
|
|
14436
|
+
* @param [length] Message length if known beforehand
|
|
14437
|
+
* @returns SideData
|
|
14438
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14439
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14440
|
+
*/
|
|
14441
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideData;
|
|
14442
|
+
|
|
14443
|
+
/**
|
|
14444
|
+
* Decodes a SideData message from the specified reader or buffer, length delimited.
|
|
14445
|
+
* @param reader Reader or buffer to decode from
|
|
14446
|
+
* @returns SideData
|
|
14447
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14448
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14449
|
+
*/
|
|
14450
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideData;
|
|
14451
|
+
|
|
14452
|
+
/**
|
|
14453
|
+
* Verifies a SideData message.
|
|
14454
|
+
* @param message Plain object to verify
|
|
14455
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14456
|
+
*/
|
|
14457
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14458
|
+
|
|
14459
|
+
/**
|
|
14460
|
+
* Creates a SideData message from a plain object. Also converts values to their respective internal types.
|
|
14461
|
+
* @param object Plain object
|
|
14462
|
+
* @returns SideData
|
|
14463
|
+
*/
|
|
14464
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideData;
|
|
14465
|
+
|
|
14466
|
+
/**
|
|
14467
|
+
* Creates a plain object from a SideData message. Also converts values to other types if specified.
|
|
14468
|
+
* @param message SideData
|
|
14469
|
+
* @param [options] Conversion options
|
|
14470
|
+
* @returns Plain object
|
|
14471
|
+
*/
|
|
14472
|
+
public static toObject(message: sesame.v1.sidedata.SideData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14473
|
+
|
|
14474
|
+
/**
|
|
14475
|
+
* Converts this SideData to JSON.
|
|
14476
|
+
* @returns JSON object
|
|
14477
|
+
*/
|
|
14478
|
+
public toJSON(): { [k: string]: any };
|
|
14479
|
+
|
|
14480
|
+
/**
|
|
14481
|
+
* Gets the default type url for SideData
|
|
14482
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14483
|
+
* @returns The default type url
|
|
14484
|
+
*/
|
|
14485
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14486
|
+
}
|
|
14487
|
+
|
|
14488
|
+
/** Properties of a SideDataSet. */
|
|
14489
|
+
interface ISideDataSet {
|
|
14490
|
+
|
|
14491
|
+
/** SideDataSet entries */
|
|
14492
|
+
entries?: (sesame.v1.sidedata.ISideData[]|null);
|
|
14493
|
+
}
|
|
14494
|
+
|
|
14495
|
+
/** Represents a SideDataSet. */
|
|
14496
|
+
class SideDataSet implements ISideDataSet {
|
|
14497
|
+
|
|
14498
|
+
/**
|
|
14499
|
+
* Constructs a new SideDataSet.
|
|
14500
|
+
* @param [properties] Properties to set
|
|
14501
|
+
*/
|
|
14502
|
+
constructor(properties?: sesame.v1.sidedata.ISideDataSet);
|
|
14503
|
+
|
|
14504
|
+
/** SideDataSet entries. */
|
|
14505
|
+
public entries: sesame.v1.sidedata.ISideData[];
|
|
14506
|
+
|
|
14507
|
+
/**
|
|
14508
|
+
* Creates a new SideDataSet instance using the specified properties.
|
|
14509
|
+
* @param [properties] Properties to set
|
|
14510
|
+
* @returns SideDataSet instance
|
|
14511
|
+
*/
|
|
14512
|
+
public static create(properties?: sesame.v1.sidedata.ISideDataSet): sesame.v1.sidedata.SideDataSet;
|
|
14513
|
+
|
|
14514
|
+
/**
|
|
14515
|
+
* Encodes the specified SideDataSet message. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
|
|
14516
|
+
* @param message SideDataSet message or plain object to encode
|
|
14517
|
+
* @param [writer] Writer to encode to
|
|
14518
|
+
* @returns Writer
|
|
14519
|
+
*/
|
|
14520
|
+
public static encode(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14521
|
+
|
|
14522
|
+
/**
|
|
14523
|
+
* Encodes the specified SideDataSet message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
|
|
14524
|
+
* @param message SideDataSet message or plain object to encode
|
|
14525
|
+
* @param [writer] Writer to encode to
|
|
14526
|
+
* @returns Writer
|
|
14527
|
+
*/
|
|
14528
|
+
public static encodeDelimited(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14529
|
+
|
|
14530
|
+
/**
|
|
14531
|
+
* Decodes a SideDataSet message from the specified reader or buffer.
|
|
14532
|
+
* @param reader Reader or buffer to decode from
|
|
14533
|
+
* @param [length] Message length if known beforehand
|
|
14534
|
+
* @returns SideDataSet
|
|
14535
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14536
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14537
|
+
*/
|
|
14538
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideDataSet;
|
|
14539
|
+
|
|
14540
|
+
/**
|
|
14541
|
+
* Decodes a SideDataSet message from the specified reader or buffer, length delimited.
|
|
14542
|
+
* @param reader Reader or buffer to decode from
|
|
14543
|
+
* @returns SideDataSet
|
|
14544
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14545
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14546
|
+
*/
|
|
14547
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideDataSet;
|
|
14548
|
+
|
|
14549
|
+
/**
|
|
14550
|
+
* Verifies a SideDataSet message.
|
|
14551
|
+
* @param message Plain object to verify
|
|
14552
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14553
|
+
*/
|
|
14554
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14555
|
+
|
|
14556
|
+
/**
|
|
14557
|
+
* Creates a SideDataSet message from a plain object. Also converts values to their respective internal types.
|
|
14558
|
+
* @param object Plain object
|
|
14559
|
+
* @returns SideDataSet
|
|
14560
|
+
*/
|
|
14561
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideDataSet;
|
|
14562
|
+
|
|
14563
|
+
/**
|
|
14564
|
+
* Creates a plain object from a SideDataSet message. Also converts values to other types if specified.
|
|
14565
|
+
* @param message SideDataSet
|
|
14566
|
+
* @param [options] Conversion options
|
|
14567
|
+
* @returns Plain object
|
|
14568
|
+
*/
|
|
14569
|
+
public static toObject(message: sesame.v1.sidedata.SideDataSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14570
|
+
|
|
14571
|
+
/**
|
|
14572
|
+
* Converts this SideDataSet to JSON.
|
|
14573
|
+
* @returns JSON object
|
|
14574
|
+
*/
|
|
14575
|
+
public toJSON(): { [k: string]: any };
|
|
14576
|
+
|
|
14577
|
+
/**
|
|
14578
|
+
* Gets the default type url for SideDataSet
|
|
14579
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14580
|
+
* @returns The default type url
|
|
14581
|
+
*/
|
|
14582
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14583
|
+
}
|
|
14584
|
+
}
|
|
14585
|
+
|
|
13487
14586
|
/** Namespace jobs. */
|
|
13488
14587
|
namespace jobs {
|
|
13489
14588
|
|
|
@@ -15972,6 +17071,9 @@ export namespace sesame {
|
|
|
15972
17071
|
|
|
15973
17072
|
/** MediaFrameData codecData */
|
|
15974
17073
|
codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
17074
|
+
|
|
17075
|
+
/** MediaFrameData sideData */
|
|
17076
|
+
sideData?: (sesame.v1.sidedata.ISideDataSet|null);
|
|
15975
17077
|
}
|
|
15976
17078
|
|
|
15977
17079
|
/** Represents a MediaFrameData. */
|
|
@@ -15992,6 +17094,9 @@ export namespace sesame {
|
|
|
15992
17094
|
/** MediaFrameData codecData. */
|
|
15993
17095
|
public codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
15994
17096
|
|
|
17097
|
+
/** MediaFrameData sideData. */
|
|
17098
|
+
public sideData?: (sesame.v1.sidedata.ISideDataSet|null);
|
|
17099
|
+
|
|
15995
17100
|
/**
|
|
15996
17101
|
* Creates a new MediaFrameData instance using the specified properties.
|
|
15997
17102
|
* @param [properties] Properties to set
|
|
@@ -16078,7 +17183,10 @@ export namespace sesame {
|
|
|
16078
17183
|
DATA_TYPE_AUDIO_STATE = 3,
|
|
16079
17184
|
DATA_TYPE_TRANSPORT_CONTROL = 4,
|
|
16080
17185
|
DATA_TYPE_AUDIO_CONTROL = 5,
|
|
16081
|
-
DATA_TYPE_BINARY = 6
|
|
17186
|
+
DATA_TYPE_BINARY = 6,
|
|
17187
|
+
DATA_TYPE_OUTPUT_STATUS = 7,
|
|
17188
|
+
DATA_TYPE_OUTPUT_CONTROL = 8,
|
|
17189
|
+
DATA_TYPE_ENGINE_STATUS = 9
|
|
16082
17190
|
}
|
|
16083
17191
|
|
|
16084
17192
|
/** Properties of a DataFrameData. */
|