@stinkycomputing/sesame-api-client 1.8.0 → 1.10.0-alpha.2
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/dist/command-list.d.ts +24 -0
- package/dist/command-list.d.ts.map +1 -1
- package/dist/generated/property-types.d.ts +4 -1
- package/dist/generated/property-types.d.ts.map +1 -1
- package/dist/index.browser.mjs +3567 -1625
- package/dist/index.browser.mjs.map +3 -3
- package/dist/index.cjs +3571 -1625
- 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 +3567 -1625
- package/dist/index.mjs.map +3 -3
- package/dist/proto/api.d.ts +1423 -242
- package/dist/proto/api.js +3651 -421
- package/dist/sesame-wire-protocol.d.ts +54 -0
- package/dist/sesame-wire-protocol.d.ts.map +1 -1
- package/docs/protocol-reference.md +167 -1
- 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. */
|
|
@@ -3654,7 +3673,8 @@ export namespace sesame {
|
|
|
3654
3673
|
SOURCE_TYPE_SYSTEM_AUDIO = 7,
|
|
3655
3674
|
SOURCE_TYPE_SRT_STREAM = 8,
|
|
3656
3675
|
SOURCE_TYPE_WEBSOCKET = 9,
|
|
3657
|
-
SOURCE_TYPE_MOQ = 10
|
|
3676
|
+
SOURCE_TYPE_MOQ = 10,
|
|
3677
|
+
SOURCE_TYPE_SCOPE = 11
|
|
3658
3678
|
}
|
|
3659
3679
|
|
|
3660
3680
|
/** DeinterlaceType enum. */
|
|
@@ -3705,9 +3725,9 @@ export namespace sesame {
|
|
|
3705
3725
|
/** PreprocessStep enum. */
|
|
3706
3726
|
enum PreprocessStep {
|
|
3707
3727
|
PREPROCESS_STEP_UNSPECIFIED = 0,
|
|
3708
|
-
PREPROCESS_STEP_VIDEO_SCOPES = 1,
|
|
3709
3728
|
PREPROCESS_STEP_CHROMA_KEY = 2,
|
|
3710
|
-
PREPROCESS_STEP_BLUR = 3
|
|
3729
|
+
PREPROCESS_STEP_BLUR = 3,
|
|
3730
|
+
PREPROCESS_STEP_COLOR_CORRECT = 4
|
|
3711
3731
|
}
|
|
3712
3732
|
|
|
3713
3733
|
/** Properties of a VideoProcessorParam. */
|
|
@@ -4491,6 +4511,124 @@ export namespace sesame {
|
|
|
4491
4511
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4492
4512
|
}
|
|
4493
4513
|
|
|
4514
|
+
/** ScopeMode enum. */
|
|
4515
|
+
enum ScopeMode {
|
|
4516
|
+
SCOPE_MODE_UNSPECIFIED = 0,
|
|
4517
|
+
SCOPE_MODE_WAVEFORM = 1,
|
|
4518
|
+
SCOPE_MODE_RGB_PARADE = 2,
|
|
4519
|
+
SCOPE_MODE_VECTORSCOPE = 3,
|
|
4520
|
+
SCOPE_MODE_AUDIO_PHASE = 4
|
|
4521
|
+
}
|
|
4522
|
+
|
|
4523
|
+
/** Properties of a ScopeSourceConfig. */
|
|
4524
|
+
interface IScopeSourceConfig {
|
|
4525
|
+
|
|
4526
|
+
/** ScopeSourceConfig compositorId */
|
|
4527
|
+
compositorId?: (string|null);
|
|
4528
|
+
|
|
4529
|
+
/** ScopeSourceConfig audioMix */
|
|
4530
|
+
audioMix?: (string|null);
|
|
4531
|
+
|
|
4532
|
+
/** ScopeSourceConfig mode */
|
|
4533
|
+
mode?: (sesame.v1.sources.ScopeMode|null);
|
|
4534
|
+
}
|
|
4535
|
+
|
|
4536
|
+
/** Represents a ScopeSourceConfig. */
|
|
4537
|
+
class ScopeSourceConfig implements IScopeSourceConfig {
|
|
4538
|
+
|
|
4539
|
+
/**
|
|
4540
|
+
* Constructs a new ScopeSourceConfig.
|
|
4541
|
+
* @param [properties] Properties to set
|
|
4542
|
+
*/
|
|
4543
|
+
constructor(properties?: sesame.v1.sources.IScopeSourceConfig);
|
|
4544
|
+
|
|
4545
|
+
/** ScopeSourceConfig compositorId. */
|
|
4546
|
+
public compositorId: string;
|
|
4547
|
+
|
|
4548
|
+
/** ScopeSourceConfig audioMix. */
|
|
4549
|
+
public audioMix: string;
|
|
4550
|
+
|
|
4551
|
+
/** ScopeSourceConfig mode. */
|
|
4552
|
+
public mode: sesame.v1.sources.ScopeMode;
|
|
4553
|
+
|
|
4554
|
+
/**
|
|
4555
|
+
* Creates a new ScopeSourceConfig instance using the specified properties.
|
|
4556
|
+
* @param [properties] Properties to set
|
|
4557
|
+
* @returns ScopeSourceConfig instance
|
|
4558
|
+
*/
|
|
4559
|
+
public static create(properties?: sesame.v1.sources.IScopeSourceConfig): sesame.v1.sources.ScopeSourceConfig;
|
|
4560
|
+
|
|
4561
|
+
/**
|
|
4562
|
+
* Encodes the specified ScopeSourceConfig message. Does not implicitly {@link sesame.v1.sources.ScopeSourceConfig.verify|verify} messages.
|
|
4563
|
+
* @param message ScopeSourceConfig message or plain object to encode
|
|
4564
|
+
* @param [writer] Writer to encode to
|
|
4565
|
+
* @returns Writer
|
|
4566
|
+
*/
|
|
4567
|
+
public static encode(message: sesame.v1.sources.IScopeSourceConfig, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4568
|
+
|
|
4569
|
+
/**
|
|
4570
|
+
* Encodes the specified ScopeSourceConfig message, length delimited. Does not implicitly {@link sesame.v1.sources.ScopeSourceConfig.verify|verify} messages.
|
|
4571
|
+
* @param message ScopeSourceConfig message or plain object to encode
|
|
4572
|
+
* @param [writer] Writer to encode to
|
|
4573
|
+
* @returns Writer
|
|
4574
|
+
*/
|
|
4575
|
+
public static encodeDelimited(message: sesame.v1.sources.IScopeSourceConfig, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4576
|
+
|
|
4577
|
+
/**
|
|
4578
|
+
* Decodes a ScopeSourceConfig message from the specified reader or buffer.
|
|
4579
|
+
* @param reader Reader or buffer to decode from
|
|
4580
|
+
* @param [length] Message length if known beforehand
|
|
4581
|
+
* @returns ScopeSourceConfig
|
|
4582
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4583
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4584
|
+
*/
|
|
4585
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.ScopeSourceConfig;
|
|
4586
|
+
|
|
4587
|
+
/**
|
|
4588
|
+
* Decodes a ScopeSourceConfig message from the specified reader or buffer, length delimited.
|
|
4589
|
+
* @param reader Reader or buffer to decode from
|
|
4590
|
+
* @returns ScopeSourceConfig
|
|
4591
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4592
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4593
|
+
*/
|
|
4594
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.ScopeSourceConfig;
|
|
4595
|
+
|
|
4596
|
+
/**
|
|
4597
|
+
* Verifies a ScopeSourceConfig message.
|
|
4598
|
+
* @param message Plain object to verify
|
|
4599
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4600
|
+
*/
|
|
4601
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4602
|
+
|
|
4603
|
+
/**
|
|
4604
|
+
* Creates a ScopeSourceConfig message from a plain object. Also converts values to their respective internal types.
|
|
4605
|
+
* @param object Plain object
|
|
4606
|
+
* @returns ScopeSourceConfig
|
|
4607
|
+
*/
|
|
4608
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.ScopeSourceConfig;
|
|
4609
|
+
|
|
4610
|
+
/**
|
|
4611
|
+
* Creates a plain object from a ScopeSourceConfig message. Also converts values to other types if specified.
|
|
4612
|
+
* @param message ScopeSourceConfig
|
|
4613
|
+
* @param [options] Conversion options
|
|
4614
|
+
* @returns Plain object
|
|
4615
|
+
*/
|
|
4616
|
+
public static toObject(message: sesame.v1.sources.ScopeSourceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4617
|
+
|
|
4618
|
+
/**
|
|
4619
|
+
* Converts this ScopeSourceConfig to JSON.
|
|
4620
|
+
* @returns JSON object
|
|
4621
|
+
*/
|
|
4622
|
+
public toJSON(): { [k: string]: any };
|
|
4623
|
+
|
|
4624
|
+
/**
|
|
4625
|
+
* Gets the default type url for ScopeSourceConfig
|
|
4626
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4627
|
+
* @returns The default type url
|
|
4628
|
+
*/
|
|
4629
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4494
4632
|
/** Properties of a DecklinkSourceConfig. */
|
|
4495
4633
|
interface IDecklinkSourceConfig {
|
|
4496
4634
|
|
|
@@ -5209,6 +5347,9 @@ export namespace sesame {
|
|
|
5209
5347
|
|
|
5210
5348
|
/** SourceConfig moq */
|
|
5211
5349
|
moq?: (sesame.v1.sources.IMoqSourceConfig|null);
|
|
5350
|
+
|
|
5351
|
+
/** SourceConfig scope */
|
|
5352
|
+
scope?: (sesame.v1.sources.IScopeSourceConfig|null);
|
|
5212
5353
|
}
|
|
5213
5354
|
|
|
5214
5355
|
/** Represents a SourceConfig. */
|
|
@@ -5253,8 +5394,11 @@ export namespace sesame {
|
|
|
5253
5394
|
/** SourceConfig moq. */
|
|
5254
5395
|
public moq?: (sesame.v1.sources.IMoqSourceConfig|null);
|
|
5255
5396
|
|
|
5397
|
+
/** SourceConfig scope. */
|
|
5398
|
+
public scope?: (sesame.v1.sources.IScopeSourceConfig|null);
|
|
5399
|
+
|
|
5256
5400
|
/** SourceConfig details. */
|
|
5257
|
-
public details?: ("file"|"recorder"|"browser"|"rtt"|"decklink"|"signalGenerator"|"systemAudio"|"srtStream"|"websocket"|"moq");
|
|
5401
|
+
public details?: ("file"|"recorder"|"browser"|"rtt"|"decklink"|"signalGenerator"|"systemAudio"|"srtStream"|"websocket"|"moq"|"scope");
|
|
5258
5402
|
|
|
5259
5403
|
/**
|
|
5260
5404
|
* Creates a new SourceConfig instance using the specified properties.
|
|
@@ -5702,6 +5846,9 @@ export namespace sesame {
|
|
|
5702
5846
|
|
|
5703
5847
|
/** SourceStatus srtStats */
|
|
5704
5848
|
srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
|
|
5849
|
+
|
|
5850
|
+
/** SourceStatus videoProcessors */
|
|
5851
|
+
videoProcessors?: (sesame.v1.sources.IVideoProcessor[]|null);
|
|
5705
5852
|
}
|
|
5706
5853
|
|
|
5707
5854
|
/** Represents a SourceStatus. */
|
|
@@ -5776,6 +5923,9 @@ export namespace sesame {
|
|
|
5776
5923
|
/** SourceStatus srtStats. */
|
|
5777
5924
|
public srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
|
|
5778
5925
|
|
|
5926
|
+
/** SourceStatus videoProcessors. */
|
|
5927
|
+
public videoProcessors: sesame.v1.sources.IVideoProcessor[];
|
|
5928
|
+
|
|
5779
5929
|
/**
|
|
5780
5930
|
* Creates a new SourceStatus instance using the specified properties.
|
|
5781
5931
|
* @param [properties] Properties to set
|
|
@@ -6634,6 +6784,224 @@ export namespace sesame {
|
|
|
6634
6784
|
*/
|
|
6635
6785
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6636
6786
|
}
|
|
6787
|
+
|
|
6788
|
+
/** Properties of a VideoProcessorControlRequest. */
|
|
6789
|
+
interface IVideoProcessorControlRequest {
|
|
6790
|
+
|
|
6791
|
+
/** VideoProcessorControlRequest processorId */
|
|
6792
|
+
processorId?: (string|null);
|
|
6793
|
+
|
|
6794
|
+
/** VideoProcessorControlRequest params */
|
|
6795
|
+
params?: (sesame.v1.sources.IVideoProcessorParam[]|null);
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6798
|
+
/** Represents a VideoProcessorControlRequest. */
|
|
6799
|
+
class VideoProcessorControlRequest implements IVideoProcessorControlRequest {
|
|
6800
|
+
|
|
6801
|
+
/**
|
|
6802
|
+
* Constructs a new VideoProcessorControlRequest.
|
|
6803
|
+
* @param [properties] Properties to set
|
|
6804
|
+
*/
|
|
6805
|
+
constructor(properties?: sesame.v1.sources.IVideoProcessorControlRequest);
|
|
6806
|
+
|
|
6807
|
+
/** VideoProcessorControlRequest processorId. */
|
|
6808
|
+
public processorId: string;
|
|
6809
|
+
|
|
6810
|
+
/** VideoProcessorControlRequest params. */
|
|
6811
|
+
public params: sesame.v1.sources.IVideoProcessorParam[];
|
|
6812
|
+
|
|
6813
|
+
/**
|
|
6814
|
+
* Creates a new VideoProcessorControlRequest instance using the specified properties.
|
|
6815
|
+
* @param [properties] Properties to set
|
|
6816
|
+
* @returns VideoProcessorControlRequest instance
|
|
6817
|
+
*/
|
|
6818
|
+
public static create(properties?: sesame.v1.sources.IVideoProcessorControlRequest): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6819
|
+
|
|
6820
|
+
/**
|
|
6821
|
+
* Encodes the specified VideoProcessorControlRequest message. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
|
|
6822
|
+
* @param message VideoProcessorControlRequest message or plain object to encode
|
|
6823
|
+
* @param [writer] Writer to encode to
|
|
6824
|
+
* @returns Writer
|
|
6825
|
+
*/
|
|
6826
|
+
public static encode(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6827
|
+
|
|
6828
|
+
/**
|
|
6829
|
+
* Encodes the specified VideoProcessorControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
|
|
6830
|
+
* @param message VideoProcessorControlRequest message or plain object to encode
|
|
6831
|
+
* @param [writer] Writer to encode to
|
|
6832
|
+
* @returns Writer
|
|
6833
|
+
*/
|
|
6834
|
+
public static encodeDelimited(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6835
|
+
|
|
6836
|
+
/**
|
|
6837
|
+
* Decodes a VideoProcessorControlRequest message from the specified reader or buffer.
|
|
6838
|
+
* @param reader Reader or buffer to decode from
|
|
6839
|
+
* @param [length] Message length if known beforehand
|
|
6840
|
+
* @returns VideoProcessorControlRequest
|
|
6841
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6842
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6843
|
+
*/
|
|
6844
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6845
|
+
|
|
6846
|
+
/**
|
|
6847
|
+
* Decodes a VideoProcessorControlRequest message from the specified reader or buffer, length delimited.
|
|
6848
|
+
* @param reader Reader or buffer to decode from
|
|
6849
|
+
* @returns VideoProcessorControlRequest
|
|
6850
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6851
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6852
|
+
*/
|
|
6853
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6854
|
+
|
|
6855
|
+
/**
|
|
6856
|
+
* Verifies a VideoProcessorControlRequest message.
|
|
6857
|
+
* @param message Plain object to verify
|
|
6858
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6859
|
+
*/
|
|
6860
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6861
|
+
|
|
6862
|
+
/**
|
|
6863
|
+
* Creates a VideoProcessorControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
6864
|
+
* @param object Plain object
|
|
6865
|
+
* @returns VideoProcessorControlRequest
|
|
6866
|
+
*/
|
|
6867
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6868
|
+
|
|
6869
|
+
/**
|
|
6870
|
+
* Creates a plain object from a VideoProcessorControlRequest message. Also converts values to other types if specified.
|
|
6871
|
+
* @param message VideoProcessorControlRequest
|
|
6872
|
+
* @param [options] Conversion options
|
|
6873
|
+
* @returns Plain object
|
|
6874
|
+
*/
|
|
6875
|
+
public static toObject(message: sesame.v1.sources.VideoProcessorControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6876
|
+
|
|
6877
|
+
/**
|
|
6878
|
+
* Converts this VideoProcessorControlRequest to JSON.
|
|
6879
|
+
* @returns JSON object
|
|
6880
|
+
*/
|
|
6881
|
+
public toJSON(): { [k: string]: any };
|
|
6882
|
+
|
|
6883
|
+
/**
|
|
6884
|
+
* Gets the default type url for VideoProcessorControlRequest
|
|
6885
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6886
|
+
* @returns The default type url
|
|
6887
|
+
*/
|
|
6888
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6889
|
+
}
|
|
6890
|
+
|
|
6891
|
+
/** Properties of a SourceControlRequest. */
|
|
6892
|
+
interface ISourceControlRequest {
|
|
6893
|
+
|
|
6894
|
+
/** SourceControlRequest videoProcessors */
|
|
6895
|
+
videoProcessors?: (sesame.v1.sources.IVideoProcessorControlRequest[]|null);
|
|
6896
|
+
|
|
6897
|
+
/** SourceControlRequest audioLevel */
|
|
6898
|
+
audioLevel?: (number|null);
|
|
6899
|
+
|
|
6900
|
+
/** SourceControlRequest resetProcessors */
|
|
6901
|
+
resetProcessors?: (string[]|null);
|
|
6902
|
+
|
|
6903
|
+
/** SourceControlRequest sourceId */
|
|
6904
|
+
sourceId?: (string|null);
|
|
6905
|
+
}
|
|
6906
|
+
|
|
6907
|
+
/** Represents a SourceControlRequest. */
|
|
6908
|
+
class SourceControlRequest implements ISourceControlRequest {
|
|
6909
|
+
|
|
6910
|
+
/**
|
|
6911
|
+
* Constructs a new SourceControlRequest.
|
|
6912
|
+
* @param [properties] Properties to set
|
|
6913
|
+
*/
|
|
6914
|
+
constructor(properties?: sesame.v1.sources.ISourceControlRequest);
|
|
6915
|
+
|
|
6916
|
+
/** SourceControlRequest videoProcessors. */
|
|
6917
|
+
public videoProcessors: sesame.v1.sources.IVideoProcessorControlRequest[];
|
|
6918
|
+
|
|
6919
|
+
/** SourceControlRequest audioLevel. */
|
|
6920
|
+
public audioLevel?: (number|null);
|
|
6921
|
+
|
|
6922
|
+
/** SourceControlRequest resetProcessors. */
|
|
6923
|
+
public resetProcessors: string[];
|
|
6924
|
+
|
|
6925
|
+
/** SourceControlRequest sourceId. */
|
|
6926
|
+
public sourceId: string;
|
|
6927
|
+
|
|
6928
|
+
/**
|
|
6929
|
+
* Creates a new SourceControlRequest instance using the specified properties.
|
|
6930
|
+
* @param [properties] Properties to set
|
|
6931
|
+
* @returns SourceControlRequest instance
|
|
6932
|
+
*/
|
|
6933
|
+
public static create(properties?: sesame.v1.sources.ISourceControlRequest): sesame.v1.sources.SourceControlRequest;
|
|
6934
|
+
|
|
6935
|
+
/**
|
|
6936
|
+
* Encodes the specified SourceControlRequest message. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
|
|
6937
|
+
* @param message SourceControlRequest message or plain object to encode
|
|
6938
|
+
* @param [writer] Writer to encode to
|
|
6939
|
+
* @returns Writer
|
|
6940
|
+
*/
|
|
6941
|
+
public static encode(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6942
|
+
|
|
6943
|
+
/**
|
|
6944
|
+
* Encodes the specified SourceControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
|
|
6945
|
+
* @param message SourceControlRequest message or plain object to encode
|
|
6946
|
+
* @param [writer] Writer to encode to
|
|
6947
|
+
* @returns Writer
|
|
6948
|
+
*/
|
|
6949
|
+
public static encodeDelimited(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6950
|
+
|
|
6951
|
+
/**
|
|
6952
|
+
* Decodes a SourceControlRequest message from the specified reader or buffer.
|
|
6953
|
+
* @param reader Reader or buffer to decode from
|
|
6954
|
+
* @param [length] Message length if known beforehand
|
|
6955
|
+
* @returns SourceControlRequest
|
|
6956
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6957
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6958
|
+
*/
|
|
6959
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.SourceControlRequest;
|
|
6960
|
+
|
|
6961
|
+
/**
|
|
6962
|
+
* Decodes a SourceControlRequest message from the specified reader or buffer, length delimited.
|
|
6963
|
+
* @param reader Reader or buffer to decode from
|
|
6964
|
+
* @returns SourceControlRequest
|
|
6965
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6966
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6967
|
+
*/
|
|
6968
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.SourceControlRequest;
|
|
6969
|
+
|
|
6970
|
+
/**
|
|
6971
|
+
* Verifies a SourceControlRequest message.
|
|
6972
|
+
* @param message Plain object to verify
|
|
6973
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6974
|
+
*/
|
|
6975
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6976
|
+
|
|
6977
|
+
/**
|
|
6978
|
+
* Creates a SourceControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
6979
|
+
* @param object Plain object
|
|
6980
|
+
* @returns SourceControlRequest
|
|
6981
|
+
*/
|
|
6982
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.SourceControlRequest;
|
|
6983
|
+
|
|
6984
|
+
/**
|
|
6985
|
+
* Creates a plain object from a SourceControlRequest message. Also converts values to other types if specified.
|
|
6986
|
+
* @param message SourceControlRequest
|
|
6987
|
+
* @param [options] Conversion options
|
|
6988
|
+
* @returns Plain object
|
|
6989
|
+
*/
|
|
6990
|
+
public static toObject(message: sesame.v1.sources.SourceControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6991
|
+
|
|
6992
|
+
/**
|
|
6993
|
+
* Converts this SourceControlRequest to JSON.
|
|
6994
|
+
* @returns JSON object
|
|
6995
|
+
*/
|
|
6996
|
+
public toJSON(): { [k: string]: any };
|
|
6997
|
+
|
|
6998
|
+
/**
|
|
6999
|
+
* Gets the default type url for SourceControlRequest
|
|
7000
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7001
|
+
* @returns The default type url
|
|
7002
|
+
*/
|
|
7003
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7004
|
+
}
|
|
6637
7005
|
}
|
|
6638
7006
|
|
|
6639
7007
|
/** Namespace recorder. */
|
|
@@ -11752,6 +12120,13 @@ export namespace sesame {
|
|
|
11752
12120
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11753
12121
|
}
|
|
11754
12122
|
|
|
12123
|
+
/** SrtStreamControl enum. */
|
|
12124
|
+
enum SrtStreamControl {
|
|
12125
|
+
SRT_STREAM_CONTROL_UNSPECIFIED = 0,
|
|
12126
|
+
SRT_STREAM_CONTROL_STARTED = 1,
|
|
12127
|
+
SRT_STREAM_CONTROL_MANUAL = 2
|
|
12128
|
+
}
|
|
12129
|
+
|
|
11755
12130
|
/** Properties of an EncodedSrtOutputConfig. */
|
|
11756
12131
|
interface IEncodedSrtOutputConfig {
|
|
11757
12132
|
|
|
@@ -11760,6 +12135,9 @@ export namespace sesame {
|
|
|
11760
12135
|
|
|
11761
12136
|
/** EncodedSrtOutputConfig encoderId */
|
|
11762
12137
|
encoderId?: (string|null);
|
|
12138
|
+
|
|
12139
|
+
/** EncodedSrtOutputConfig control */
|
|
12140
|
+
control?: (sesame.v1.outputs.SrtStreamControl|null);
|
|
11763
12141
|
}
|
|
11764
12142
|
|
|
11765
12143
|
/** Represents an EncodedSrtOutputConfig. */
|
|
@@ -11777,6 +12155,9 @@ export namespace sesame {
|
|
|
11777
12155
|
/** EncodedSrtOutputConfig encoderId. */
|
|
11778
12156
|
public encoderId: string;
|
|
11779
12157
|
|
|
12158
|
+
/** EncodedSrtOutputConfig control. */
|
|
12159
|
+
public control: sesame.v1.outputs.SrtStreamControl;
|
|
12160
|
+
|
|
11780
12161
|
/**
|
|
11781
12162
|
* Creates a new EncodedSrtOutputConfig instance using the specified properties.
|
|
11782
12163
|
* @param [properties] Properties to set
|
|
@@ -12490,78 +12871,188 @@ export namespace sesame {
|
|
|
12490
12871
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12491
12872
|
}
|
|
12492
12873
|
|
|
12493
|
-
/**
|
|
12494
|
-
|
|
12874
|
+
/** OutputControlAction enum. */
|
|
12875
|
+
enum OutputControlAction {
|
|
12876
|
+
OUTPUT_CONTROL_ACTION_UNSPECIFIED = 0,
|
|
12877
|
+
OUTPUT_CONTROL_ACTION_START = 1,
|
|
12878
|
+
OUTPUT_CONTROL_ACTION_STOP = 2
|
|
12879
|
+
}
|
|
12495
12880
|
|
|
12496
|
-
|
|
12881
|
+
/** Properties of an OutputControlRequest. */
|
|
12882
|
+
interface IOutputControlRequest {
|
|
12883
|
+
|
|
12884
|
+
/** OutputControlRequest id */
|
|
12497
12885
|
id?: (string|null);
|
|
12886
|
+
|
|
12887
|
+
/** OutputControlRequest action */
|
|
12888
|
+
action?: (sesame.v1.outputs.OutputControlAction|null);
|
|
12498
12889
|
}
|
|
12499
12890
|
|
|
12500
|
-
/** Represents
|
|
12501
|
-
class
|
|
12891
|
+
/** Represents an OutputControlRequest. */
|
|
12892
|
+
class OutputControlRequest implements IOutputControlRequest {
|
|
12502
12893
|
|
|
12503
12894
|
/**
|
|
12504
|
-
* Constructs a new
|
|
12895
|
+
* Constructs a new OutputControlRequest.
|
|
12505
12896
|
* @param [properties] Properties to set
|
|
12506
12897
|
*/
|
|
12507
|
-
constructor(properties?: sesame.v1.outputs.
|
|
12898
|
+
constructor(properties?: sesame.v1.outputs.IOutputControlRequest);
|
|
12508
12899
|
|
|
12509
|
-
/**
|
|
12900
|
+
/** OutputControlRequest id. */
|
|
12510
12901
|
public id: string;
|
|
12511
12902
|
|
|
12903
|
+
/** OutputControlRequest action. */
|
|
12904
|
+
public action: sesame.v1.outputs.OutputControlAction;
|
|
12905
|
+
|
|
12512
12906
|
/**
|
|
12513
|
-
* Creates a new
|
|
12907
|
+
* Creates a new OutputControlRequest instance using the specified properties.
|
|
12514
12908
|
* @param [properties] Properties to set
|
|
12515
|
-
* @returns
|
|
12909
|
+
* @returns OutputControlRequest instance
|
|
12516
12910
|
*/
|
|
12517
|
-
public static create(properties?: sesame.v1.outputs.
|
|
12911
|
+
public static create(properties?: sesame.v1.outputs.IOutputControlRequest): sesame.v1.outputs.OutputControlRequest;
|
|
12518
12912
|
|
|
12519
12913
|
/**
|
|
12520
|
-
* Encodes the specified
|
|
12521
|
-
* @param message
|
|
12914
|
+
* Encodes the specified OutputControlRequest message. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
|
|
12915
|
+
* @param message OutputControlRequest message or plain object to encode
|
|
12522
12916
|
* @param [writer] Writer to encode to
|
|
12523
12917
|
* @returns Writer
|
|
12524
12918
|
*/
|
|
12525
|
-
public static encode(message: sesame.v1.outputs.
|
|
12919
|
+
public static encode(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12526
12920
|
|
|
12527
12921
|
/**
|
|
12528
|
-
* Encodes the specified
|
|
12529
|
-
* @param message
|
|
12922
|
+
* Encodes the specified OutputControlRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.OutputControlRequest.verify|verify} messages.
|
|
12923
|
+
* @param message OutputControlRequest message or plain object to encode
|
|
12530
12924
|
* @param [writer] Writer to encode to
|
|
12531
12925
|
* @returns Writer
|
|
12532
12926
|
*/
|
|
12533
|
-
public static encodeDelimited(message: sesame.v1.outputs.
|
|
12927
|
+
public static encodeDelimited(message: sesame.v1.outputs.IOutputControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12534
12928
|
|
|
12535
12929
|
/**
|
|
12536
|
-
* Decodes
|
|
12930
|
+
* Decodes an OutputControlRequest message from the specified reader or buffer.
|
|
12537
12931
|
* @param reader Reader or buffer to decode from
|
|
12538
12932
|
* @param [length] Message length if known beforehand
|
|
12539
|
-
* @returns
|
|
12933
|
+
* @returns OutputControlRequest
|
|
12540
12934
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12541
12935
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12542
12936
|
*/
|
|
12543
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.
|
|
12937
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.OutputControlRequest;
|
|
12544
12938
|
|
|
12545
12939
|
/**
|
|
12546
|
-
* Decodes
|
|
12940
|
+
* Decodes an OutputControlRequest message from the specified reader or buffer, length delimited.
|
|
12547
12941
|
* @param reader Reader or buffer to decode from
|
|
12548
|
-
* @returns
|
|
12942
|
+
* @returns OutputControlRequest
|
|
12549
12943
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12550
12944
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12551
12945
|
*/
|
|
12552
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.
|
|
12946
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.OutputControlRequest;
|
|
12553
12947
|
|
|
12554
12948
|
/**
|
|
12555
|
-
* Verifies
|
|
12949
|
+
* Verifies an OutputControlRequest message.
|
|
12556
12950
|
* @param message Plain object to verify
|
|
12557
12951
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
12558
12952
|
*/
|
|
12559
12953
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
12560
12954
|
|
|
12561
12955
|
/**
|
|
12562
|
-
* Creates
|
|
12956
|
+
* Creates an OutputControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
12563
12957
|
* @param object Plain object
|
|
12564
|
-
* @returns
|
|
12958
|
+
* @returns OutputControlRequest
|
|
12959
|
+
*/
|
|
12960
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.OutputControlRequest;
|
|
12961
|
+
|
|
12962
|
+
/**
|
|
12963
|
+
* Creates a plain object from an OutputControlRequest message. Also converts values to other types if specified.
|
|
12964
|
+
* @param message OutputControlRequest
|
|
12965
|
+
* @param [options] Conversion options
|
|
12966
|
+
* @returns Plain object
|
|
12967
|
+
*/
|
|
12968
|
+
public static toObject(message: sesame.v1.outputs.OutputControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12969
|
+
|
|
12970
|
+
/**
|
|
12971
|
+
* Converts this OutputControlRequest to JSON.
|
|
12972
|
+
* @returns JSON object
|
|
12973
|
+
*/
|
|
12974
|
+
public toJSON(): { [k: string]: any };
|
|
12975
|
+
|
|
12976
|
+
/**
|
|
12977
|
+
* Gets the default type url for OutputControlRequest
|
|
12978
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12979
|
+
* @returns The default type url
|
|
12980
|
+
*/
|
|
12981
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12982
|
+
}
|
|
12983
|
+
|
|
12984
|
+
/** Properties of a KeyframeRequest. */
|
|
12985
|
+
interface IKeyframeRequest {
|
|
12986
|
+
|
|
12987
|
+
/** KeyframeRequest id */
|
|
12988
|
+
id?: (string|null);
|
|
12989
|
+
}
|
|
12990
|
+
|
|
12991
|
+
/** Represents a KeyframeRequest. */
|
|
12992
|
+
class KeyframeRequest implements IKeyframeRequest {
|
|
12993
|
+
|
|
12994
|
+
/**
|
|
12995
|
+
* Constructs a new KeyframeRequest.
|
|
12996
|
+
* @param [properties] Properties to set
|
|
12997
|
+
*/
|
|
12998
|
+
constructor(properties?: sesame.v1.outputs.IKeyframeRequest);
|
|
12999
|
+
|
|
13000
|
+
/** KeyframeRequest id. */
|
|
13001
|
+
public id: string;
|
|
13002
|
+
|
|
13003
|
+
/**
|
|
13004
|
+
* Creates a new KeyframeRequest instance using the specified properties.
|
|
13005
|
+
* @param [properties] Properties to set
|
|
13006
|
+
* @returns KeyframeRequest instance
|
|
13007
|
+
*/
|
|
13008
|
+
public static create(properties?: sesame.v1.outputs.IKeyframeRequest): sesame.v1.outputs.KeyframeRequest;
|
|
13009
|
+
|
|
13010
|
+
/**
|
|
13011
|
+
* Encodes the specified KeyframeRequest message. Does not implicitly {@link sesame.v1.outputs.KeyframeRequest.verify|verify} messages.
|
|
13012
|
+
* @param message KeyframeRequest message or plain object to encode
|
|
13013
|
+
* @param [writer] Writer to encode to
|
|
13014
|
+
* @returns Writer
|
|
13015
|
+
*/
|
|
13016
|
+
public static encode(message: sesame.v1.outputs.IKeyframeRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13017
|
+
|
|
13018
|
+
/**
|
|
13019
|
+
* Encodes the specified KeyframeRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.KeyframeRequest.verify|verify} messages.
|
|
13020
|
+
* @param message KeyframeRequest message or plain object to encode
|
|
13021
|
+
* @param [writer] Writer to encode to
|
|
13022
|
+
* @returns Writer
|
|
13023
|
+
*/
|
|
13024
|
+
public static encodeDelimited(message: sesame.v1.outputs.IKeyframeRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13025
|
+
|
|
13026
|
+
/**
|
|
13027
|
+
* Decodes a KeyframeRequest message from the specified reader or buffer.
|
|
13028
|
+
* @param reader Reader or buffer to decode from
|
|
13029
|
+
* @param [length] Message length if known beforehand
|
|
13030
|
+
* @returns KeyframeRequest
|
|
13031
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13032
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13033
|
+
*/
|
|
13034
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.KeyframeRequest;
|
|
13035
|
+
|
|
13036
|
+
/**
|
|
13037
|
+
* Decodes a KeyframeRequest message from the specified reader or buffer, length delimited.
|
|
13038
|
+
* @param reader Reader or buffer to decode from
|
|
13039
|
+
* @returns KeyframeRequest
|
|
13040
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13041
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13042
|
+
*/
|
|
13043
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.KeyframeRequest;
|
|
13044
|
+
|
|
13045
|
+
/**
|
|
13046
|
+
* Verifies a KeyframeRequest message.
|
|
13047
|
+
* @param message Plain object to verify
|
|
13048
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13049
|
+
*/
|
|
13050
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13051
|
+
|
|
13052
|
+
/**
|
|
13053
|
+
* Creates a KeyframeRequest message from a plain object. Also converts values to their respective internal types.
|
|
13054
|
+
* @param object Plain object
|
|
13055
|
+
* @returns KeyframeRequest
|
|
12565
13056
|
*/
|
|
12566
13057
|
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.KeyframeRequest;
|
|
12567
13058
|
|
|
@@ -12613,6 +13104,9 @@ export namespace sesame {
|
|
|
12613
13104
|
|
|
12614
13105
|
/** OutputStatus encoderId */
|
|
12615
13106
|
encoderId?: (string|null);
|
|
13107
|
+
|
|
13108
|
+
/** OutputStatus control */
|
|
13109
|
+
control?: (sesame.v1.outputs.SrtStreamControl|null);
|
|
12616
13110
|
}
|
|
12617
13111
|
|
|
12618
13112
|
/** Represents an OutputStatus. */
|
|
@@ -12648,6 +13142,9 @@ export namespace sesame {
|
|
|
12648
13142
|
/** OutputStatus encoderId. */
|
|
12649
13143
|
public encoderId: string;
|
|
12650
13144
|
|
|
13145
|
+
/** OutputStatus control. */
|
|
13146
|
+
public control: sesame.v1.outputs.SrtStreamControl;
|
|
13147
|
+
|
|
12651
13148
|
/**
|
|
12652
13149
|
* Creates a new OutputStatus instance using the specified properties.
|
|
12653
13150
|
* @param [properties] Properties to set
|
|
@@ -13247,514 +13744,1187 @@ export namespace sesame {
|
|
|
13247
13744
|
public static encodeDelimited(message: sesame.v1.compositor.ICompositorClearRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13248
13745
|
|
|
13249
13746
|
/**
|
|
13250
|
-
* Decodes a CompositorClearRequest message from the specified reader or buffer.
|
|
13747
|
+
* Decodes a CompositorClearRequest message from the specified reader or buffer.
|
|
13748
|
+
* @param reader Reader or buffer to decode from
|
|
13749
|
+
* @param [length] Message length if known beforehand
|
|
13750
|
+
* @returns CompositorClearRequest
|
|
13751
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13752
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13753
|
+
*/
|
|
13754
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.CompositorClearRequest;
|
|
13755
|
+
|
|
13756
|
+
/**
|
|
13757
|
+
* Decodes a CompositorClearRequest message from the specified reader or buffer, length delimited.
|
|
13758
|
+
* @param reader Reader or buffer to decode from
|
|
13759
|
+
* @returns CompositorClearRequest
|
|
13760
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13761
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13762
|
+
*/
|
|
13763
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.CompositorClearRequest;
|
|
13764
|
+
|
|
13765
|
+
/**
|
|
13766
|
+
* Verifies a CompositorClearRequest message.
|
|
13767
|
+
* @param message Plain object to verify
|
|
13768
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13769
|
+
*/
|
|
13770
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13771
|
+
|
|
13772
|
+
/**
|
|
13773
|
+
* Creates a CompositorClearRequest message from a plain object. Also converts values to their respective internal types.
|
|
13774
|
+
* @param object Plain object
|
|
13775
|
+
* @returns CompositorClearRequest
|
|
13776
|
+
*/
|
|
13777
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.CompositorClearRequest;
|
|
13778
|
+
|
|
13779
|
+
/**
|
|
13780
|
+
* Creates a plain object from a CompositorClearRequest message. Also converts values to other types if specified.
|
|
13781
|
+
* @param message CompositorClearRequest
|
|
13782
|
+
* @param [options] Conversion options
|
|
13783
|
+
* @returns Plain object
|
|
13784
|
+
*/
|
|
13785
|
+
public static toObject(message: sesame.v1.compositor.CompositorClearRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13786
|
+
|
|
13787
|
+
/**
|
|
13788
|
+
* Converts this CompositorClearRequest to JSON.
|
|
13789
|
+
* @returns JSON object
|
|
13790
|
+
*/
|
|
13791
|
+
public toJSON(): { [k: string]: any };
|
|
13792
|
+
|
|
13793
|
+
/**
|
|
13794
|
+
* Gets the default type url for CompositorClearRequest
|
|
13795
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13796
|
+
* @returns The default type url
|
|
13797
|
+
*/
|
|
13798
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13799
|
+
}
|
|
13800
|
+
|
|
13801
|
+
/** Properties of a NodeAddRequest. */
|
|
13802
|
+
interface INodeAddRequest {
|
|
13803
|
+
|
|
13804
|
+
/** NodeAddRequest compositorId */
|
|
13805
|
+
compositorId?: (string|null);
|
|
13806
|
+
|
|
13807
|
+
/** NodeAddRequest parentAddress */
|
|
13808
|
+
parentAddress?: (string|null);
|
|
13809
|
+
|
|
13810
|
+
/** NodeAddRequest nodeId */
|
|
13811
|
+
nodeId?: (string|null);
|
|
13812
|
+
|
|
13813
|
+
/** NodeAddRequest nodeType */
|
|
13814
|
+
nodeType?: (sesame.v1.compositor.NodeType|null);
|
|
13815
|
+
}
|
|
13816
|
+
|
|
13817
|
+
/** Represents a NodeAddRequest. */
|
|
13818
|
+
class NodeAddRequest implements INodeAddRequest {
|
|
13819
|
+
|
|
13820
|
+
/**
|
|
13821
|
+
* Constructs a new NodeAddRequest.
|
|
13822
|
+
* @param [properties] Properties to set
|
|
13823
|
+
*/
|
|
13824
|
+
constructor(properties?: sesame.v1.compositor.INodeAddRequest);
|
|
13825
|
+
|
|
13826
|
+
/** NodeAddRequest compositorId. */
|
|
13827
|
+
public compositorId: string;
|
|
13828
|
+
|
|
13829
|
+
/** NodeAddRequest parentAddress. */
|
|
13830
|
+
public parentAddress: string;
|
|
13831
|
+
|
|
13832
|
+
/** NodeAddRequest nodeId. */
|
|
13833
|
+
public nodeId: string;
|
|
13834
|
+
|
|
13835
|
+
/** NodeAddRequest nodeType. */
|
|
13836
|
+
public nodeType: sesame.v1.compositor.NodeType;
|
|
13837
|
+
|
|
13838
|
+
/**
|
|
13839
|
+
* Creates a new NodeAddRequest instance using the specified properties.
|
|
13840
|
+
* @param [properties] Properties to set
|
|
13841
|
+
* @returns NodeAddRequest instance
|
|
13842
|
+
*/
|
|
13843
|
+
public static create(properties?: sesame.v1.compositor.INodeAddRequest): sesame.v1.compositor.NodeAddRequest;
|
|
13844
|
+
|
|
13845
|
+
/**
|
|
13846
|
+
* Encodes the specified NodeAddRequest message. Does not implicitly {@link sesame.v1.compositor.NodeAddRequest.verify|verify} messages.
|
|
13847
|
+
* @param message NodeAddRequest message or plain object to encode
|
|
13848
|
+
* @param [writer] Writer to encode to
|
|
13849
|
+
* @returns Writer
|
|
13850
|
+
*/
|
|
13851
|
+
public static encode(message: sesame.v1.compositor.INodeAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13852
|
+
|
|
13853
|
+
/**
|
|
13854
|
+
* Encodes the specified NodeAddRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.NodeAddRequest.verify|verify} messages.
|
|
13855
|
+
* @param message NodeAddRequest message or plain object to encode
|
|
13856
|
+
* @param [writer] Writer to encode to
|
|
13857
|
+
* @returns Writer
|
|
13858
|
+
*/
|
|
13859
|
+
public static encodeDelimited(message: sesame.v1.compositor.INodeAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13860
|
+
|
|
13861
|
+
/**
|
|
13862
|
+
* Decodes a NodeAddRequest message from the specified reader or buffer.
|
|
13863
|
+
* @param reader Reader or buffer to decode from
|
|
13864
|
+
* @param [length] Message length if known beforehand
|
|
13865
|
+
* @returns NodeAddRequest
|
|
13866
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13867
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13868
|
+
*/
|
|
13869
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.NodeAddRequest;
|
|
13870
|
+
|
|
13871
|
+
/**
|
|
13872
|
+
* Decodes a NodeAddRequest message from the specified reader or buffer, length delimited.
|
|
13873
|
+
* @param reader Reader or buffer to decode from
|
|
13874
|
+
* @returns NodeAddRequest
|
|
13875
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13876
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13877
|
+
*/
|
|
13878
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.NodeAddRequest;
|
|
13879
|
+
|
|
13880
|
+
/**
|
|
13881
|
+
* Verifies a NodeAddRequest message.
|
|
13882
|
+
* @param message Plain object to verify
|
|
13883
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13884
|
+
*/
|
|
13885
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13886
|
+
|
|
13887
|
+
/**
|
|
13888
|
+
* Creates a NodeAddRequest message from a plain object. Also converts values to their respective internal types.
|
|
13889
|
+
* @param object Plain object
|
|
13890
|
+
* @returns NodeAddRequest
|
|
13891
|
+
*/
|
|
13892
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.NodeAddRequest;
|
|
13893
|
+
|
|
13894
|
+
/**
|
|
13895
|
+
* Creates a plain object from a NodeAddRequest message. Also converts values to other types if specified.
|
|
13896
|
+
* @param message NodeAddRequest
|
|
13897
|
+
* @param [options] Conversion options
|
|
13898
|
+
* @returns Plain object
|
|
13899
|
+
*/
|
|
13900
|
+
public static toObject(message: sesame.v1.compositor.NodeAddRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13901
|
+
|
|
13902
|
+
/**
|
|
13903
|
+
* Converts this NodeAddRequest to JSON.
|
|
13904
|
+
* @returns JSON object
|
|
13905
|
+
*/
|
|
13906
|
+
public toJSON(): { [k: string]: any };
|
|
13907
|
+
|
|
13908
|
+
/**
|
|
13909
|
+
* Gets the default type url for NodeAddRequest
|
|
13910
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13911
|
+
* @returns The default type url
|
|
13912
|
+
*/
|
|
13913
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13914
|
+
}
|
|
13915
|
+
|
|
13916
|
+
/** Properties of a NodeRemoveRequest. */
|
|
13917
|
+
interface INodeRemoveRequest {
|
|
13918
|
+
|
|
13919
|
+
/** NodeRemoveRequest compositorId */
|
|
13920
|
+
compositorId?: (string|null);
|
|
13921
|
+
|
|
13922
|
+
/** NodeRemoveRequest address */
|
|
13923
|
+
address?: (string|null);
|
|
13924
|
+
}
|
|
13925
|
+
|
|
13926
|
+
/** Represents a NodeRemoveRequest. */
|
|
13927
|
+
class NodeRemoveRequest implements INodeRemoveRequest {
|
|
13928
|
+
|
|
13929
|
+
/**
|
|
13930
|
+
* Constructs a new NodeRemoveRequest.
|
|
13931
|
+
* @param [properties] Properties to set
|
|
13932
|
+
*/
|
|
13933
|
+
constructor(properties?: sesame.v1.compositor.INodeRemoveRequest);
|
|
13934
|
+
|
|
13935
|
+
/** NodeRemoveRequest compositorId. */
|
|
13936
|
+
public compositorId: string;
|
|
13937
|
+
|
|
13938
|
+
/** NodeRemoveRequest address. */
|
|
13939
|
+
public address: string;
|
|
13940
|
+
|
|
13941
|
+
/**
|
|
13942
|
+
* Creates a new NodeRemoveRequest instance using the specified properties.
|
|
13943
|
+
* @param [properties] Properties to set
|
|
13944
|
+
* @returns NodeRemoveRequest instance
|
|
13945
|
+
*/
|
|
13946
|
+
public static create(properties?: sesame.v1.compositor.INodeRemoveRequest): sesame.v1.compositor.NodeRemoveRequest;
|
|
13947
|
+
|
|
13948
|
+
/**
|
|
13949
|
+
* Encodes the specified NodeRemoveRequest message. Does not implicitly {@link sesame.v1.compositor.NodeRemoveRequest.verify|verify} messages.
|
|
13950
|
+
* @param message NodeRemoveRequest message or plain object to encode
|
|
13951
|
+
* @param [writer] Writer to encode to
|
|
13952
|
+
* @returns Writer
|
|
13953
|
+
*/
|
|
13954
|
+
public static encode(message: sesame.v1.compositor.INodeRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13955
|
+
|
|
13956
|
+
/**
|
|
13957
|
+
* Encodes the specified NodeRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.NodeRemoveRequest.verify|verify} messages.
|
|
13958
|
+
* @param message NodeRemoveRequest message or plain object to encode
|
|
13959
|
+
* @param [writer] Writer to encode to
|
|
13960
|
+
* @returns Writer
|
|
13961
|
+
*/
|
|
13962
|
+
public static encodeDelimited(message: sesame.v1.compositor.INodeRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13963
|
+
|
|
13964
|
+
/**
|
|
13965
|
+
* Decodes a NodeRemoveRequest message from the specified reader or buffer.
|
|
13966
|
+
* @param reader Reader or buffer to decode from
|
|
13967
|
+
* @param [length] Message length if known beforehand
|
|
13968
|
+
* @returns NodeRemoveRequest
|
|
13969
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13970
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13971
|
+
*/
|
|
13972
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.NodeRemoveRequest;
|
|
13973
|
+
|
|
13974
|
+
/**
|
|
13975
|
+
* Decodes a NodeRemoveRequest message from the specified reader or buffer, length delimited.
|
|
13976
|
+
* @param reader Reader or buffer to decode from
|
|
13977
|
+
* @returns NodeRemoveRequest
|
|
13978
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13979
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13980
|
+
*/
|
|
13981
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.NodeRemoveRequest;
|
|
13982
|
+
|
|
13983
|
+
/**
|
|
13984
|
+
* Verifies a NodeRemoveRequest message.
|
|
13985
|
+
* @param message Plain object to verify
|
|
13986
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13987
|
+
*/
|
|
13988
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13989
|
+
|
|
13990
|
+
/**
|
|
13991
|
+
* Creates a NodeRemoveRequest message from a plain object. Also converts values to their respective internal types.
|
|
13992
|
+
* @param object Plain object
|
|
13993
|
+
* @returns NodeRemoveRequest
|
|
13994
|
+
*/
|
|
13995
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.NodeRemoveRequest;
|
|
13996
|
+
|
|
13997
|
+
/**
|
|
13998
|
+
* Creates a plain object from a NodeRemoveRequest message. Also converts values to other types if specified.
|
|
13999
|
+
* @param message NodeRemoveRequest
|
|
14000
|
+
* @param [options] Conversion options
|
|
14001
|
+
* @returns Plain object
|
|
14002
|
+
*/
|
|
14003
|
+
public static toObject(message: sesame.v1.compositor.NodeRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14004
|
+
|
|
14005
|
+
/**
|
|
14006
|
+
* Converts this NodeRemoveRequest to JSON.
|
|
14007
|
+
* @returns JSON object
|
|
14008
|
+
*/
|
|
14009
|
+
public toJSON(): { [k: string]: any };
|
|
14010
|
+
|
|
14011
|
+
/**
|
|
14012
|
+
* Gets the default type url for NodeRemoveRequest
|
|
14013
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14014
|
+
* @returns The default type url
|
|
14015
|
+
*/
|
|
14016
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14017
|
+
}
|
|
14018
|
+
|
|
14019
|
+
/** Properties of a SideDataSetRequest. */
|
|
14020
|
+
interface ISideDataSetRequest {
|
|
14021
|
+
|
|
14022
|
+
/** SideDataSetRequest compositorId */
|
|
14023
|
+
compositorId?: (string|null);
|
|
14024
|
+
|
|
14025
|
+
/** SideDataSetRequest sideData */
|
|
14026
|
+
sideData?: (sesame.v1.sidedata.ISideData|null);
|
|
14027
|
+
}
|
|
14028
|
+
|
|
14029
|
+
/** Represents a SideDataSetRequest. */
|
|
14030
|
+
class SideDataSetRequest implements ISideDataSetRequest {
|
|
14031
|
+
|
|
14032
|
+
/**
|
|
14033
|
+
* Constructs a new SideDataSetRequest.
|
|
14034
|
+
* @param [properties] Properties to set
|
|
14035
|
+
*/
|
|
14036
|
+
constructor(properties?: sesame.v1.compositor.ISideDataSetRequest);
|
|
14037
|
+
|
|
14038
|
+
/** SideDataSetRequest compositorId. */
|
|
14039
|
+
public compositorId: string;
|
|
14040
|
+
|
|
14041
|
+
/** SideDataSetRequest sideData. */
|
|
14042
|
+
public sideData?: (sesame.v1.sidedata.ISideData|null);
|
|
14043
|
+
|
|
14044
|
+
/**
|
|
14045
|
+
* Creates a new SideDataSetRequest instance using the specified properties.
|
|
14046
|
+
* @param [properties] Properties to set
|
|
14047
|
+
* @returns SideDataSetRequest instance
|
|
14048
|
+
*/
|
|
14049
|
+
public static create(properties?: sesame.v1.compositor.ISideDataSetRequest): sesame.v1.compositor.SideDataSetRequest;
|
|
14050
|
+
|
|
14051
|
+
/**
|
|
14052
|
+
* Encodes the specified SideDataSetRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
|
|
14053
|
+
* @param message SideDataSetRequest message or plain object to encode
|
|
14054
|
+
* @param [writer] Writer to encode to
|
|
14055
|
+
* @returns Writer
|
|
14056
|
+
*/
|
|
14057
|
+
public static encode(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14058
|
+
|
|
14059
|
+
/**
|
|
14060
|
+
* Encodes the specified SideDataSetRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataSetRequest.verify|verify} messages.
|
|
14061
|
+
* @param message SideDataSetRequest message or plain object to encode
|
|
14062
|
+
* @param [writer] Writer to encode to
|
|
14063
|
+
* @returns Writer
|
|
14064
|
+
*/
|
|
14065
|
+
public static encodeDelimited(message: sesame.v1.compositor.ISideDataSetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14066
|
+
|
|
14067
|
+
/**
|
|
14068
|
+
* Decodes a SideDataSetRequest message from the specified reader or buffer.
|
|
14069
|
+
* @param reader Reader or buffer to decode from
|
|
14070
|
+
* @param [length] Message length if known beforehand
|
|
14071
|
+
* @returns SideDataSetRequest
|
|
14072
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14073
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14074
|
+
*/
|
|
14075
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataSetRequest;
|
|
14076
|
+
|
|
14077
|
+
/**
|
|
14078
|
+
* Decodes a SideDataSetRequest message from the specified reader or buffer, length delimited.
|
|
14079
|
+
* @param reader Reader or buffer to decode from
|
|
14080
|
+
* @returns SideDataSetRequest
|
|
14081
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14082
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14083
|
+
*/
|
|
14084
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataSetRequest;
|
|
14085
|
+
|
|
14086
|
+
/**
|
|
14087
|
+
* Verifies a SideDataSetRequest message.
|
|
14088
|
+
* @param message Plain object to verify
|
|
14089
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14090
|
+
*/
|
|
14091
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14092
|
+
|
|
14093
|
+
/**
|
|
14094
|
+
* Creates a SideDataSetRequest message from a plain object. Also converts values to their respective internal types.
|
|
14095
|
+
* @param object Plain object
|
|
14096
|
+
* @returns SideDataSetRequest
|
|
14097
|
+
*/
|
|
14098
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataSetRequest;
|
|
14099
|
+
|
|
14100
|
+
/**
|
|
14101
|
+
* Creates a plain object from a SideDataSetRequest message. Also converts values to other types if specified.
|
|
14102
|
+
* @param message SideDataSetRequest
|
|
14103
|
+
* @param [options] Conversion options
|
|
14104
|
+
* @returns Plain object
|
|
14105
|
+
*/
|
|
14106
|
+
public static toObject(message: sesame.v1.compositor.SideDataSetRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14107
|
+
|
|
14108
|
+
/**
|
|
14109
|
+
* Converts this SideDataSetRequest to JSON.
|
|
14110
|
+
* @returns JSON object
|
|
14111
|
+
*/
|
|
14112
|
+
public toJSON(): { [k: string]: any };
|
|
14113
|
+
|
|
14114
|
+
/**
|
|
14115
|
+
* Gets the default type url for SideDataSetRequest
|
|
14116
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14117
|
+
* @returns The default type url
|
|
14118
|
+
*/
|
|
14119
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14120
|
+
}
|
|
14121
|
+
|
|
14122
|
+
/** Properties of a SideDataRemoveRequest. */
|
|
14123
|
+
interface ISideDataRemoveRequest {
|
|
14124
|
+
|
|
14125
|
+
/** SideDataRemoveRequest compositorId */
|
|
14126
|
+
compositorId?: (string|null);
|
|
14127
|
+
|
|
14128
|
+
/** SideDataRemoveRequest id */
|
|
14129
|
+
id?: (string|null);
|
|
14130
|
+
}
|
|
14131
|
+
|
|
14132
|
+
/** Represents a SideDataRemoveRequest. */
|
|
14133
|
+
class SideDataRemoveRequest implements ISideDataRemoveRequest {
|
|
14134
|
+
|
|
14135
|
+
/**
|
|
14136
|
+
* Constructs a new SideDataRemoveRequest.
|
|
14137
|
+
* @param [properties] Properties to set
|
|
14138
|
+
*/
|
|
14139
|
+
constructor(properties?: sesame.v1.compositor.ISideDataRemoveRequest);
|
|
14140
|
+
|
|
14141
|
+
/** SideDataRemoveRequest compositorId. */
|
|
14142
|
+
public compositorId: string;
|
|
14143
|
+
|
|
14144
|
+
/** SideDataRemoveRequest id. */
|
|
14145
|
+
public id: string;
|
|
14146
|
+
|
|
14147
|
+
/**
|
|
14148
|
+
* Creates a new SideDataRemoveRequest instance using the specified properties.
|
|
14149
|
+
* @param [properties] Properties to set
|
|
14150
|
+
* @returns SideDataRemoveRequest instance
|
|
14151
|
+
*/
|
|
14152
|
+
public static create(properties?: sesame.v1.compositor.ISideDataRemoveRequest): sesame.v1.compositor.SideDataRemoveRequest;
|
|
14153
|
+
|
|
14154
|
+
/**
|
|
14155
|
+
* Encodes the specified SideDataRemoveRequest message. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
|
|
14156
|
+
* @param message SideDataRemoveRequest message or plain object to encode
|
|
14157
|
+
* @param [writer] Writer to encode to
|
|
14158
|
+
* @returns Writer
|
|
14159
|
+
*/
|
|
14160
|
+
public static encode(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14161
|
+
|
|
14162
|
+
/**
|
|
14163
|
+
* Encodes the specified SideDataRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.SideDataRemoveRequest.verify|verify} messages.
|
|
14164
|
+
* @param message SideDataRemoveRequest message or plain object to encode
|
|
14165
|
+
* @param [writer] Writer to encode to
|
|
14166
|
+
* @returns Writer
|
|
14167
|
+
*/
|
|
14168
|
+
public static encodeDelimited(message: sesame.v1.compositor.ISideDataRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14169
|
+
|
|
14170
|
+
/**
|
|
14171
|
+
* Decodes a SideDataRemoveRequest message from the specified reader or buffer.
|
|
14172
|
+
* @param reader Reader or buffer to decode from
|
|
14173
|
+
* @param [length] Message length if known beforehand
|
|
14174
|
+
* @returns SideDataRemoveRequest
|
|
14175
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14176
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14177
|
+
*/
|
|
14178
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.SideDataRemoveRequest;
|
|
14179
|
+
|
|
14180
|
+
/**
|
|
14181
|
+
* Decodes a SideDataRemoveRequest message from the specified reader or buffer, length delimited.
|
|
14182
|
+
* @param reader Reader or buffer to decode from
|
|
14183
|
+
* @returns SideDataRemoveRequest
|
|
14184
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14185
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14186
|
+
*/
|
|
14187
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.SideDataRemoveRequest;
|
|
14188
|
+
|
|
14189
|
+
/**
|
|
14190
|
+
* Verifies a SideDataRemoveRequest message.
|
|
14191
|
+
* @param message Plain object to verify
|
|
14192
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14193
|
+
*/
|
|
14194
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14195
|
+
|
|
14196
|
+
/**
|
|
14197
|
+
* Creates a SideDataRemoveRequest message from a plain object. Also converts values to their respective internal types.
|
|
14198
|
+
* @param object Plain object
|
|
14199
|
+
* @returns SideDataRemoveRequest
|
|
14200
|
+
*/
|
|
14201
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.SideDataRemoveRequest;
|
|
14202
|
+
|
|
14203
|
+
/**
|
|
14204
|
+
* Creates a plain object from a SideDataRemoveRequest message. Also converts values to other types if specified.
|
|
14205
|
+
* @param message SideDataRemoveRequest
|
|
14206
|
+
* @param [options] Conversion options
|
|
14207
|
+
* @returns Plain object
|
|
14208
|
+
*/
|
|
14209
|
+
public static toObject(message: sesame.v1.compositor.SideDataRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14210
|
+
|
|
14211
|
+
/**
|
|
14212
|
+
* Converts this SideDataRemoveRequest to JSON.
|
|
14213
|
+
* @returns JSON object
|
|
14214
|
+
*/
|
|
14215
|
+
public toJSON(): { [k: string]: any };
|
|
14216
|
+
|
|
14217
|
+
/**
|
|
14218
|
+
* Gets the default type url for SideDataRemoveRequest
|
|
14219
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14220
|
+
* @returns The default type url
|
|
14221
|
+
*/
|
|
14222
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14223
|
+
}
|
|
14224
|
+
|
|
14225
|
+
/** Properties of a PropertySetRequest. */
|
|
14226
|
+
interface IPropertySetRequest {
|
|
14227
|
+
|
|
14228
|
+
/** PropertySetRequest domain */
|
|
14229
|
+
domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
14230
|
+
|
|
14231
|
+
/** PropertySetRequest address */
|
|
14232
|
+
address?: (string|null);
|
|
14233
|
+
|
|
14234
|
+
/** PropertySetRequest property */
|
|
14235
|
+
property?: (string|null);
|
|
14236
|
+
|
|
14237
|
+
/** PropertySetRequest value */
|
|
14238
|
+
value?: (sesame.v1.common.IPropValue|null);
|
|
14239
|
+
}
|
|
14240
|
+
|
|
14241
|
+
/** Represents a PropertySetRequest. */
|
|
14242
|
+
class PropertySetRequest implements IPropertySetRequest {
|
|
14243
|
+
|
|
14244
|
+
/**
|
|
14245
|
+
* Constructs a new PropertySetRequest.
|
|
14246
|
+
* @param [properties] Properties to set
|
|
14247
|
+
*/
|
|
14248
|
+
constructor(properties?: sesame.v1.compositor.IPropertySetRequest);
|
|
14249
|
+
|
|
14250
|
+
/** PropertySetRequest domain. */
|
|
14251
|
+
public domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
14252
|
+
|
|
14253
|
+
/** PropertySetRequest address. */
|
|
14254
|
+
public address: string;
|
|
14255
|
+
|
|
14256
|
+
/** PropertySetRequest property. */
|
|
14257
|
+
public property: string;
|
|
14258
|
+
|
|
14259
|
+
/** PropertySetRequest value. */
|
|
14260
|
+
public value?: (sesame.v1.common.IPropValue|null);
|
|
14261
|
+
|
|
14262
|
+
/**
|
|
14263
|
+
* Creates a new PropertySetRequest instance using the specified properties.
|
|
14264
|
+
* @param [properties] Properties to set
|
|
14265
|
+
* @returns PropertySetRequest instance
|
|
14266
|
+
*/
|
|
14267
|
+
public static create(properties?: sesame.v1.compositor.IPropertySetRequest): sesame.v1.compositor.PropertySetRequest;
|
|
14268
|
+
|
|
14269
|
+
/**
|
|
14270
|
+
* Encodes the specified PropertySetRequest message. Does not implicitly {@link sesame.v1.compositor.PropertySetRequest.verify|verify} messages.
|
|
14271
|
+
* @param message PropertySetRequest message or plain object to encode
|
|
14272
|
+
* @param [writer] Writer to encode to
|
|
14273
|
+
* @returns Writer
|
|
14274
|
+
*/
|
|
14275
|
+
public static encode(message: sesame.v1.compositor.IPropertySetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14276
|
+
|
|
14277
|
+
/**
|
|
14278
|
+
* Encodes the specified PropertySetRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.PropertySetRequest.verify|verify} messages.
|
|
14279
|
+
* @param message PropertySetRequest message or plain object to encode
|
|
14280
|
+
* @param [writer] Writer to encode to
|
|
14281
|
+
* @returns Writer
|
|
14282
|
+
*/
|
|
14283
|
+
public static encodeDelimited(message: sesame.v1.compositor.IPropertySetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14284
|
+
|
|
14285
|
+
/**
|
|
14286
|
+
* Decodes a PropertySetRequest message from the specified reader or buffer.
|
|
14287
|
+
* @param reader Reader or buffer to decode from
|
|
14288
|
+
* @param [length] Message length if known beforehand
|
|
14289
|
+
* @returns PropertySetRequest
|
|
14290
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14291
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14292
|
+
*/
|
|
14293
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.PropertySetRequest;
|
|
14294
|
+
|
|
14295
|
+
/**
|
|
14296
|
+
* Decodes a PropertySetRequest message from the specified reader or buffer, length delimited.
|
|
14297
|
+
* @param reader Reader or buffer to decode from
|
|
14298
|
+
* @returns PropertySetRequest
|
|
14299
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14300
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14301
|
+
*/
|
|
14302
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.PropertySetRequest;
|
|
14303
|
+
|
|
14304
|
+
/**
|
|
14305
|
+
* Verifies a PropertySetRequest message.
|
|
14306
|
+
* @param message Plain object to verify
|
|
14307
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14308
|
+
*/
|
|
14309
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14310
|
+
|
|
14311
|
+
/**
|
|
14312
|
+
* Creates a PropertySetRequest message from a plain object. Also converts values to their respective internal types.
|
|
14313
|
+
* @param object Plain object
|
|
14314
|
+
* @returns PropertySetRequest
|
|
14315
|
+
*/
|
|
14316
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.PropertySetRequest;
|
|
14317
|
+
|
|
14318
|
+
/**
|
|
14319
|
+
* Creates a plain object from a PropertySetRequest message. Also converts values to other types if specified.
|
|
14320
|
+
* @param message PropertySetRequest
|
|
14321
|
+
* @param [options] Conversion options
|
|
14322
|
+
* @returns Plain object
|
|
14323
|
+
*/
|
|
14324
|
+
public static toObject(message: sesame.v1.compositor.PropertySetRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14325
|
+
|
|
14326
|
+
/**
|
|
14327
|
+
* Converts this PropertySetRequest to JSON.
|
|
14328
|
+
* @returns JSON object
|
|
14329
|
+
*/
|
|
14330
|
+
public toJSON(): { [k: string]: any };
|
|
14331
|
+
|
|
14332
|
+
/**
|
|
14333
|
+
* Gets the default type url for PropertySetRequest
|
|
14334
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14335
|
+
* @returns The default type url
|
|
14336
|
+
*/
|
|
14337
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14338
|
+
}
|
|
14339
|
+
|
|
14340
|
+
/** Properties of a PropertyAnimateRequest. */
|
|
14341
|
+
interface IPropertyAnimateRequest {
|
|
14342
|
+
|
|
14343
|
+
/** PropertyAnimateRequest domain */
|
|
14344
|
+
domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
14345
|
+
|
|
14346
|
+
/** PropertyAnimateRequest address */
|
|
14347
|
+
address?: (string|null);
|
|
14348
|
+
|
|
14349
|
+
/** PropertyAnimateRequest property */
|
|
14350
|
+
property?: (string|null);
|
|
14351
|
+
|
|
14352
|
+
/** PropertyAnimateRequest keyframes */
|
|
14353
|
+
keyframes?: (sesame.v1.compositor.IKeyFrame[]|null);
|
|
14354
|
+
|
|
14355
|
+
/** PropertyAnimateRequest before */
|
|
14356
|
+
before?: (sesame.v1.compositor.AnimationChannelEvaluationMode|null);
|
|
14357
|
+
|
|
14358
|
+
/** PropertyAnimateRequest after */
|
|
14359
|
+
after?: (sesame.v1.compositor.AnimationChannelEvaluationMode|null);
|
|
14360
|
+
}
|
|
14361
|
+
|
|
14362
|
+
/** Represents a PropertyAnimateRequest. */
|
|
14363
|
+
class PropertyAnimateRequest implements IPropertyAnimateRequest {
|
|
14364
|
+
|
|
14365
|
+
/**
|
|
14366
|
+
* Constructs a new PropertyAnimateRequest.
|
|
14367
|
+
* @param [properties] Properties to set
|
|
14368
|
+
*/
|
|
14369
|
+
constructor(properties?: sesame.v1.compositor.IPropertyAnimateRequest);
|
|
14370
|
+
|
|
14371
|
+
/** PropertyAnimateRequest domain. */
|
|
14372
|
+
public domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
14373
|
+
|
|
14374
|
+
/** PropertyAnimateRequest address. */
|
|
14375
|
+
public address: string;
|
|
14376
|
+
|
|
14377
|
+
/** PropertyAnimateRequest property. */
|
|
14378
|
+
public property: string;
|
|
14379
|
+
|
|
14380
|
+
/** PropertyAnimateRequest keyframes. */
|
|
14381
|
+
public keyframes: sesame.v1.compositor.IKeyFrame[];
|
|
14382
|
+
|
|
14383
|
+
/** PropertyAnimateRequest before. */
|
|
14384
|
+
public before: sesame.v1.compositor.AnimationChannelEvaluationMode;
|
|
14385
|
+
|
|
14386
|
+
/** PropertyAnimateRequest after. */
|
|
14387
|
+
public after: sesame.v1.compositor.AnimationChannelEvaluationMode;
|
|
14388
|
+
|
|
14389
|
+
/**
|
|
14390
|
+
* Creates a new PropertyAnimateRequest instance using the specified properties.
|
|
14391
|
+
* @param [properties] Properties to set
|
|
14392
|
+
* @returns PropertyAnimateRequest instance
|
|
14393
|
+
*/
|
|
14394
|
+
public static create(properties?: sesame.v1.compositor.IPropertyAnimateRequest): sesame.v1.compositor.PropertyAnimateRequest;
|
|
14395
|
+
|
|
14396
|
+
/**
|
|
14397
|
+
* Encodes the specified PropertyAnimateRequest message. Does not implicitly {@link sesame.v1.compositor.PropertyAnimateRequest.verify|verify} messages.
|
|
14398
|
+
* @param message PropertyAnimateRequest message or plain object to encode
|
|
14399
|
+
* @param [writer] Writer to encode to
|
|
14400
|
+
* @returns Writer
|
|
14401
|
+
*/
|
|
14402
|
+
public static encode(message: sesame.v1.compositor.IPropertyAnimateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14403
|
+
|
|
14404
|
+
/**
|
|
14405
|
+
* Encodes the specified PropertyAnimateRequest message, length delimited. Does not implicitly {@link sesame.v1.compositor.PropertyAnimateRequest.verify|verify} messages.
|
|
14406
|
+
* @param message PropertyAnimateRequest message or plain object to encode
|
|
14407
|
+
* @param [writer] Writer to encode to
|
|
14408
|
+
* @returns Writer
|
|
14409
|
+
*/
|
|
14410
|
+
public static encodeDelimited(message: sesame.v1.compositor.IPropertyAnimateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14411
|
+
|
|
14412
|
+
/**
|
|
14413
|
+
* Decodes a PropertyAnimateRequest message from the specified reader or buffer.
|
|
13251
14414
|
* @param reader Reader or buffer to decode from
|
|
13252
14415
|
* @param [length] Message length if known beforehand
|
|
13253
|
-
* @returns
|
|
14416
|
+
* @returns PropertyAnimateRequest
|
|
13254
14417
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13255
14418
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13256
14419
|
*/
|
|
13257
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.
|
|
14420
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.compositor.PropertyAnimateRequest;
|
|
13258
14421
|
|
|
13259
14422
|
/**
|
|
13260
|
-
* Decodes a
|
|
14423
|
+
* Decodes a PropertyAnimateRequest message from the specified reader or buffer, length delimited.
|
|
13261
14424
|
* @param reader Reader or buffer to decode from
|
|
13262
|
-
* @returns
|
|
14425
|
+
* @returns PropertyAnimateRequest
|
|
13263
14426
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13264
14427
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13265
14428
|
*/
|
|
13266
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.
|
|
14429
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.compositor.PropertyAnimateRequest;
|
|
13267
14430
|
|
|
13268
14431
|
/**
|
|
13269
|
-
* Verifies a
|
|
14432
|
+
* Verifies a PropertyAnimateRequest message.
|
|
13270
14433
|
* @param message Plain object to verify
|
|
13271
14434
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13272
14435
|
*/
|
|
13273
14436
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13274
14437
|
|
|
13275
14438
|
/**
|
|
13276
|
-
* Creates a
|
|
14439
|
+
* Creates a PropertyAnimateRequest message from a plain object. Also converts values to their respective internal types.
|
|
13277
14440
|
* @param object Plain object
|
|
13278
|
-
* @returns
|
|
14441
|
+
* @returns PropertyAnimateRequest
|
|
13279
14442
|
*/
|
|
13280
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.
|
|
14443
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.compositor.PropertyAnimateRequest;
|
|
13281
14444
|
|
|
13282
14445
|
/**
|
|
13283
|
-
* Creates a plain object from a
|
|
13284
|
-
* @param message
|
|
14446
|
+
* Creates a plain object from a PropertyAnimateRequest message. Also converts values to other types if specified.
|
|
14447
|
+
* @param message PropertyAnimateRequest
|
|
13285
14448
|
* @param [options] Conversion options
|
|
13286
14449
|
* @returns Plain object
|
|
13287
14450
|
*/
|
|
13288
|
-
public static toObject(message: sesame.v1.compositor.
|
|
14451
|
+
public static toObject(message: sesame.v1.compositor.PropertyAnimateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13289
14452
|
|
|
13290
14453
|
/**
|
|
13291
|
-
* Converts this
|
|
14454
|
+
* Converts this PropertyAnimateRequest to JSON.
|
|
13292
14455
|
* @returns JSON object
|
|
13293
14456
|
*/
|
|
13294
14457
|
public toJSON(): { [k: string]: any };
|
|
13295
14458
|
|
|
13296
14459
|
/**
|
|
13297
|
-
* Gets the default type url for
|
|
14460
|
+
* Gets the default type url for PropertyAnimateRequest
|
|
13298
14461
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13299
14462
|
* @returns The default type url
|
|
13300
14463
|
*/
|
|
13301
14464
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13302
14465
|
}
|
|
14466
|
+
}
|
|
13303
14467
|
|
|
13304
|
-
|
|
13305
|
-
|
|
14468
|
+
/** Namespace sidedata. */
|
|
14469
|
+
namespace sidedata {
|
|
13306
14470
|
|
|
13307
|
-
|
|
13308
|
-
|
|
14471
|
+
/** Properties of an AtlasEntry. */
|
|
14472
|
+
interface IAtlasEntry {
|
|
13309
14473
|
|
|
13310
|
-
/**
|
|
13311
|
-
|
|
14474
|
+
/** AtlasEntry sourceId */
|
|
14475
|
+
sourceId?: (string|null);
|
|
13312
14476
|
|
|
13313
|
-
/**
|
|
13314
|
-
|
|
14477
|
+
/** AtlasEntry x */
|
|
14478
|
+
x?: (number|null);
|
|
13315
14479
|
|
|
13316
|
-
/**
|
|
13317
|
-
|
|
14480
|
+
/** AtlasEntry y */
|
|
14481
|
+
y?: (number|null);
|
|
14482
|
+
|
|
14483
|
+
/** AtlasEntry width */
|
|
14484
|
+
width?: (number|null);
|
|
14485
|
+
|
|
14486
|
+
/** AtlasEntry height */
|
|
14487
|
+
height?: (number|null);
|
|
14488
|
+
|
|
14489
|
+
/** AtlasEntry sourceWidth */
|
|
14490
|
+
sourceWidth?: (number|null);
|
|
14491
|
+
|
|
14492
|
+
/** AtlasEntry sourceHeight */
|
|
14493
|
+
sourceHeight?: (number|null);
|
|
13318
14494
|
}
|
|
13319
14495
|
|
|
13320
|
-
/** Represents
|
|
13321
|
-
class
|
|
14496
|
+
/** Represents an AtlasEntry. */
|
|
14497
|
+
class AtlasEntry implements IAtlasEntry {
|
|
13322
14498
|
|
|
13323
14499
|
/**
|
|
13324
|
-
* Constructs a new
|
|
14500
|
+
* Constructs a new AtlasEntry.
|
|
13325
14501
|
* @param [properties] Properties to set
|
|
13326
14502
|
*/
|
|
13327
|
-
constructor(properties?: sesame.v1.
|
|
14503
|
+
constructor(properties?: sesame.v1.sidedata.IAtlasEntry);
|
|
13328
14504
|
|
|
13329
|
-
/**
|
|
13330
|
-
public
|
|
14505
|
+
/** AtlasEntry sourceId. */
|
|
14506
|
+
public sourceId: string;
|
|
13331
14507
|
|
|
13332
|
-
/**
|
|
13333
|
-
public
|
|
14508
|
+
/** AtlasEntry x. */
|
|
14509
|
+
public x: number;
|
|
13334
14510
|
|
|
13335
|
-
/**
|
|
13336
|
-
public
|
|
14511
|
+
/** AtlasEntry y. */
|
|
14512
|
+
public y: number;
|
|
13337
14513
|
|
|
13338
|
-
/**
|
|
13339
|
-
public
|
|
14514
|
+
/** AtlasEntry width. */
|
|
14515
|
+
public width: number;
|
|
14516
|
+
|
|
14517
|
+
/** AtlasEntry height. */
|
|
14518
|
+
public height: number;
|
|
14519
|
+
|
|
14520
|
+
/** AtlasEntry sourceWidth. */
|
|
14521
|
+
public sourceWidth: number;
|
|
14522
|
+
|
|
14523
|
+
/** AtlasEntry sourceHeight. */
|
|
14524
|
+
public sourceHeight: number;
|
|
13340
14525
|
|
|
13341
14526
|
/**
|
|
13342
|
-
* Creates a new
|
|
14527
|
+
* Creates a new AtlasEntry instance using the specified properties.
|
|
13343
14528
|
* @param [properties] Properties to set
|
|
13344
|
-
* @returns
|
|
14529
|
+
* @returns AtlasEntry instance
|
|
13345
14530
|
*/
|
|
13346
|
-
public static create(properties?: sesame.v1.
|
|
14531
|
+
public static create(properties?: sesame.v1.sidedata.IAtlasEntry): sesame.v1.sidedata.AtlasEntry;
|
|
13347
14532
|
|
|
13348
14533
|
/**
|
|
13349
|
-
* Encodes the specified
|
|
13350
|
-
* @param message
|
|
14534
|
+
* Encodes the specified AtlasEntry message. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
|
|
14535
|
+
* @param message AtlasEntry message or plain object to encode
|
|
13351
14536
|
* @param [writer] Writer to encode to
|
|
13352
14537
|
* @returns Writer
|
|
13353
14538
|
*/
|
|
13354
|
-
public static encode(message: sesame.v1.
|
|
14539
|
+
public static encode(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13355
14540
|
|
|
13356
14541
|
/**
|
|
13357
|
-
* Encodes the specified
|
|
13358
|
-
* @param message
|
|
14542
|
+
* Encodes the specified AtlasEntry message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasEntry.verify|verify} messages.
|
|
14543
|
+
* @param message AtlasEntry message or plain object to encode
|
|
13359
14544
|
* @param [writer] Writer to encode to
|
|
13360
14545
|
* @returns Writer
|
|
13361
14546
|
*/
|
|
13362
|
-
public static encodeDelimited(message: sesame.v1.
|
|
14547
|
+
public static encodeDelimited(message: sesame.v1.sidedata.IAtlasEntry, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13363
14548
|
|
|
13364
14549
|
/**
|
|
13365
|
-
* Decodes
|
|
14550
|
+
* Decodes an AtlasEntry message from the specified reader or buffer.
|
|
13366
14551
|
* @param reader Reader or buffer to decode from
|
|
13367
14552
|
* @param [length] Message length if known beforehand
|
|
13368
|
-
* @returns
|
|
14553
|
+
* @returns AtlasEntry
|
|
13369
14554
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13370
14555
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13371
14556
|
*/
|
|
13372
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.
|
|
14557
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasEntry;
|
|
13373
14558
|
|
|
13374
14559
|
/**
|
|
13375
|
-
* Decodes
|
|
14560
|
+
* Decodes an AtlasEntry message from the specified reader or buffer, length delimited.
|
|
13376
14561
|
* @param reader Reader or buffer to decode from
|
|
13377
|
-
* @returns
|
|
14562
|
+
* @returns AtlasEntry
|
|
13378
14563
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13379
14564
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13380
14565
|
*/
|
|
13381
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.
|
|
14566
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasEntry;
|
|
13382
14567
|
|
|
13383
14568
|
/**
|
|
13384
|
-
* Verifies
|
|
14569
|
+
* Verifies an AtlasEntry message.
|
|
13385
14570
|
* @param message Plain object to verify
|
|
13386
14571
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13387
14572
|
*/
|
|
13388
14573
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13389
14574
|
|
|
13390
14575
|
/**
|
|
13391
|
-
* Creates
|
|
14576
|
+
* Creates an AtlasEntry message from a plain object. Also converts values to their respective internal types.
|
|
13392
14577
|
* @param object Plain object
|
|
13393
|
-
* @returns
|
|
14578
|
+
* @returns AtlasEntry
|
|
13394
14579
|
*/
|
|
13395
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.
|
|
14580
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasEntry;
|
|
13396
14581
|
|
|
13397
14582
|
/**
|
|
13398
|
-
* Creates a plain object from
|
|
13399
|
-
* @param message
|
|
14583
|
+
* Creates a plain object from an AtlasEntry message. Also converts values to other types if specified.
|
|
14584
|
+
* @param message AtlasEntry
|
|
13400
14585
|
* @param [options] Conversion options
|
|
13401
14586
|
* @returns Plain object
|
|
13402
14587
|
*/
|
|
13403
|
-
public static toObject(message: sesame.v1.
|
|
14588
|
+
public static toObject(message: sesame.v1.sidedata.AtlasEntry, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13404
14589
|
|
|
13405
14590
|
/**
|
|
13406
|
-
* Converts this
|
|
14591
|
+
* Converts this AtlasEntry to JSON.
|
|
13407
14592
|
* @returns JSON object
|
|
13408
14593
|
*/
|
|
13409
14594
|
public toJSON(): { [k: string]: any };
|
|
13410
14595
|
|
|
13411
14596
|
/**
|
|
13412
|
-
* Gets the default type url for
|
|
14597
|
+
* Gets the default type url for AtlasEntry
|
|
13413
14598
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13414
14599
|
* @returns The default type url
|
|
13415
14600
|
*/
|
|
13416
14601
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13417
14602
|
}
|
|
13418
14603
|
|
|
13419
|
-
/** Properties of
|
|
13420
|
-
interface
|
|
14604
|
+
/** Properties of an AtlasLayout. */
|
|
14605
|
+
interface IAtlasLayout {
|
|
13421
14606
|
|
|
13422
|
-
/**
|
|
13423
|
-
|
|
14607
|
+
/** AtlasLayout width */
|
|
14608
|
+
width?: (number|null);
|
|
13424
14609
|
|
|
13425
|
-
/**
|
|
13426
|
-
|
|
14610
|
+
/** AtlasLayout height */
|
|
14611
|
+
height?: (number|null);
|
|
14612
|
+
|
|
14613
|
+
/** AtlasLayout entries */
|
|
14614
|
+
entries?: (sesame.v1.sidedata.IAtlasEntry[]|null);
|
|
13427
14615
|
}
|
|
13428
14616
|
|
|
13429
|
-
/** Represents
|
|
13430
|
-
class
|
|
14617
|
+
/** Represents an AtlasLayout. */
|
|
14618
|
+
class AtlasLayout implements IAtlasLayout {
|
|
13431
14619
|
|
|
13432
14620
|
/**
|
|
13433
|
-
* Constructs a new
|
|
14621
|
+
* Constructs a new AtlasLayout.
|
|
13434
14622
|
* @param [properties] Properties to set
|
|
13435
14623
|
*/
|
|
13436
|
-
constructor(properties?: sesame.v1.
|
|
14624
|
+
constructor(properties?: sesame.v1.sidedata.IAtlasLayout);
|
|
13437
14625
|
|
|
13438
|
-
/**
|
|
13439
|
-
public
|
|
14626
|
+
/** AtlasLayout width. */
|
|
14627
|
+
public width: number;
|
|
13440
14628
|
|
|
13441
|
-
/**
|
|
13442
|
-
public
|
|
14629
|
+
/** AtlasLayout height. */
|
|
14630
|
+
public height: number;
|
|
14631
|
+
|
|
14632
|
+
/** AtlasLayout entries. */
|
|
14633
|
+
public entries: sesame.v1.sidedata.IAtlasEntry[];
|
|
13443
14634
|
|
|
13444
14635
|
/**
|
|
13445
|
-
* Creates a new
|
|
14636
|
+
* Creates a new AtlasLayout instance using the specified properties.
|
|
13446
14637
|
* @param [properties] Properties to set
|
|
13447
|
-
* @returns
|
|
14638
|
+
* @returns AtlasLayout instance
|
|
13448
14639
|
*/
|
|
13449
|
-
public static create(properties?: sesame.v1.
|
|
14640
|
+
public static create(properties?: sesame.v1.sidedata.IAtlasLayout): sesame.v1.sidedata.AtlasLayout;
|
|
13450
14641
|
|
|
13451
14642
|
/**
|
|
13452
|
-
* Encodes the specified
|
|
13453
|
-
* @param message
|
|
14643
|
+
* Encodes the specified AtlasLayout message. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
|
|
14644
|
+
* @param message AtlasLayout message or plain object to encode
|
|
13454
14645
|
* @param [writer] Writer to encode to
|
|
13455
14646
|
* @returns Writer
|
|
13456
14647
|
*/
|
|
13457
|
-
public static encode(message: sesame.v1.
|
|
14648
|
+
public static encode(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13458
14649
|
|
|
13459
14650
|
/**
|
|
13460
|
-
* Encodes the specified
|
|
13461
|
-
* @param message
|
|
14651
|
+
* Encodes the specified AtlasLayout message, length delimited. Does not implicitly {@link sesame.v1.sidedata.AtlasLayout.verify|verify} messages.
|
|
14652
|
+
* @param message AtlasLayout message or plain object to encode
|
|
13462
14653
|
* @param [writer] Writer to encode to
|
|
13463
14654
|
* @returns Writer
|
|
13464
14655
|
*/
|
|
13465
|
-
public static encodeDelimited(message: sesame.v1.
|
|
14656
|
+
public static encodeDelimited(message: sesame.v1.sidedata.IAtlasLayout, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13466
14657
|
|
|
13467
14658
|
/**
|
|
13468
|
-
* Decodes
|
|
14659
|
+
* Decodes an AtlasLayout message from the specified reader or buffer.
|
|
13469
14660
|
* @param reader Reader or buffer to decode from
|
|
13470
14661
|
* @param [length] Message length if known beforehand
|
|
13471
|
-
* @returns
|
|
14662
|
+
* @returns AtlasLayout
|
|
13472
14663
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13473
14664
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13474
14665
|
*/
|
|
13475
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.
|
|
14666
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.AtlasLayout;
|
|
13476
14667
|
|
|
13477
14668
|
/**
|
|
13478
|
-
* Decodes
|
|
14669
|
+
* Decodes an AtlasLayout message from the specified reader or buffer, length delimited.
|
|
13479
14670
|
* @param reader Reader or buffer to decode from
|
|
13480
|
-
* @returns
|
|
14671
|
+
* @returns AtlasLayout
|
|
13481
14672
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13482
14673
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13483
14674
|
*/
|
|
13484
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.
|
|
14675
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.AtlasLayout;
|
|
13485
14676
|
|
|
13486
14677
|
/**
|
|
13487
|
-
* Verifies
|
|
14678
|
+
* Verifies an AtlasLayout message.
|
|
13488
14679
|
* @param message Plain object to verify
|
|
13489
14680
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13490
14681
|
*/
|
|
13491
14682
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13492
14683
|
|
|
13493
14684
|
/**
|
|
13494
|
-
* Creates
|
|
14685
|
+
* Creates an AtlasLayout message from a plain object. Also converts values to their respective internal types.
|
|
13495
14686
|
* @param object Plain object
|
|
13496
|
-
* @returns
|
|
14687
|
+
* @returns AtlasLayout
|
|
13497
14688
|
*/
|
|
13498
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.
|
|
14689
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.AtlasLayout;
|
|
13499
14690
|
|
|
13500
14691
|
/**
|
|
13501
|
-
* Creates a plain object from
|
|
13502
|
-
* @param message
|
|
14692
|
+
* Creates a plain object from an AtlasLayout message. Also converts values to other types if specified.
|
|
14693
|
+
* @param message AtlasLayout
|
|
13503
14694
|
* @param [options] Conversion options
|
|
13504
14695
|
* @returns Plain object
|
|
13505
14696
|
*/
|
|
13506
|
-
public static toObject(message: sesame.v1.
|
|
14697
|
+
public static toObject(message: sesame.v1.sidedata.AtlasLayout, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13507
14698
|
|
|
13508
14699
|
/**
|
|
13509
|
-
* Converts this
|
|
14700
|
+
* Converts this AtlasLayout to JSON.
|
|
13510
14701
|
* @returns JSON object
|
|
13511
14702
|
*/
|
|
13512
14703
|
public toJSON(): { [k: string]: any };
|
|
13513
14704
|
|
|
13514
14705
|
/**
|
|
13515
|
-
* Gets the default type url for
|
|
14706
|
+
* Gets the default type url for AtlasLayout
|
|
13516
14707
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13517
14708
|
* @returns The default type url
|
|
13518
14709
|
*/
|
|
13519
14710
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13520
14711
|
}
|
|
13521
14712
|
|
|
13522
|
-
/** Properties of a
|
|
13523
|
-
interface
|
|
14713
|
+
/** Properties of a SideData. */
|
|
14714
|
+
interface ISideData {
|
|
13524
14715
|
|
|
13525
|
-
/**
|
|
13526
|
-
|
|
14716
|
+
/** SideData id */
|
|
14717
|
+
id?: (string|null);
|
|
13527
14718
|
|
|
13528
|
-
/**
|
|
13529
|
-
|
|
14719
|
+
/** SideData version */
|
|
14720
|
+
version?: (number|Long|null);
|
|
13530
14721
|
|
|
13531
|
-
/**
|
|
13532
|
-
|
|
14722
|
+
/** SideData atlas */
|
|
14723
|
+
atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
|
|
13533
14724
|
|
|
13534
|
-
/**
|
|
13535
|
-
|
|
14725
|
+
/** SideData json */
|
|
14726
|
+
json?: (string|null);
|
|
14727
|
+
|
|
14728
|
+
/** SideData binary */
|
|
14729
|
+
binary?: (Uint8Array|null);
|
|
13536
14730
|
}
|
|
13537
14731
|
|
|
13538
|
-
/** Represents a
|
|
13539
|
-
class
|
|
14732
|
+
/** Represents a SideData. */
|
|
14733
|
+
class SideData implements ISideData {
|
|
13540
14734
|
|
|
13541
14735
|
/**
|
|
13542
|
-
* Constructs a new
|
|
14736
|
+
* Constructs a new SideData.
|
|
13543
14737
|
* @param [properties] Properties to set
|
|
13544
14738
|
*/
|
|
13545
|
-
constructor(properties?: sesame.v1.
|
|
14739
|
+
constructor(properties?: sesame.v1.sidedata.ISideData);
|
|
13546
14740
|
|
|
13547
|
-
/**
|
|
13548
|
-
public
|
|
14741
|
+
/** SideData id. */
|
|
14742
|
+
public id: string;
|
|
13549
14743
|
|
|
13550
|
-
/**
|
|
13551
|
-
public
|
|
14744
|
+
/** SideData version. */
|
|
14745
|
+
public version: (number|Long);
|
|
13552
14746
|
|
|
13553
|
-
/**
|
|
13554
|
-
public
|
|
14747
|
+
/** SideData atlas. */
|
|
14748
|
+
public atlas?: (sesame.v1.sidedata.IAtlasLayout|null);
|
|
13555
14749
|
|
|
13556
|
-
/**
|
|
13557
|
-
public
|
|
14750
|
+
/** SideData json. */
|
|
14751
|
+
public json?: (string|null);
|
|
14752
|
+
|
|
14753
|
+
/** SideData binary. */
|
|
14754
|
+
public binary?: (Uint8Array|null);
|
|
14755
|
+
|
|
14756
|
+
/** SideData payload. */
|
|
14757
|
+
public payload?: ("atlas"|"json"|"binary");
|
|
13558
14758
|
|
|
13559
14759
|
/**
|
|
13560
|
-
* Creates a new
|
|
14760
|
+
* Creates a new SideData instance using the specified properties.
|
|
13561
14761
|
* @param [properties] Properties to set
|
|
13562
|
-
* @returns
|
|
14762
|
+
* @returns SideData instance
|
|
13563
14763
|
*/
|
|
13564
|
-
public static create(properties?: sesame.v1.
|
|
14764
|
+
public static create(properties?: sesame.v1.sidedata.ISideData): sesame.v1.sidedata.SideData;
|
|
13565
14765
|
|
|
13566
14766
|
/**
|
|
13567
|
-
* Encodes the specified
|
|
13568
|
-
* @param message
|
|
14767
|
+
* Encodes the specified SideData message. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
|
|
14768
|
+
* @param message SideData message or plain object to encode
|
|
13569
14769
|
* @param [writer] Writer to encode to
|
|
13570
14770
|
* @returns Writer
|
|
13571
14771
|
*/
|
|
13572
|
-
public static encode(message: sesame.v1.
|
|
14772
|
+
public static encode(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13573
14773
|
|
|
13574
14774
|
/**
|
|
13575
|
-
* Encodes the specified
|
|
13576
|
-
* @param message
|
|
14775
|
+
* Encodes the specified SideData message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideData.verify|verify} messages.
|
|
14776
|
+
* @param message SideData message or plain object to encode
|
|
13577
14777
|
* @param [writer] Writer to encode to
|
|
13578
14778
|
* @returns Writer
|
|
13579
14779
|
*/
|
|
13580
|
-
public static encodeDelimited(message: sesame.v1.
|
|
14780
|
+
public static encodeDelimited(message: sesame.v1.sidedata.ISideData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13581
14781
|
|
|
13582
14782
|
/**
|
|
13583
|
-
* Decodes a
|
|
14783
|
+
* Decodes a SideData message from the specified reader or buffer.
|
|
13584
14784
|
* @param reader Reader or buffer to decode from
|
|
13585
14785
|
* @param [length] Message length if known beforehand
|
|
13586
|
-
* @returns
|
|
14786
|
+
* @returns SideData
|
|
13587
14787
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13588
14788
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13589
14789
|
*/
|
|
13590
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.
|
|
14790
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideData;
|
|
13591
14791
|
|
|
13592
14792
|
/**
|
|
13593
|
-
* Decodes a
|
|
14793
|
+
* Decodes a SideData message from the specified reader or buffer, length delimited.
|
|
13594
14794
|
* @param reader Reader or buffer to decode from
|
|
13595
|
-
* @returns
|
|
14795
|
+
* @returns SideData
|
|
13596
14796
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13597
14797
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13598
14798
|
*/
|
|
13599
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.
|
|
14799
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideData;
|
|
13600
14800
|
|
|
13601
14801
|
/**
|
|
13602
|
-
* Verifies a
|
|
14802
|
+
* Verifies a SideData message.
|
|
13603
14803
|
* @param message Plain object to verify
|
|
13604
14804
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13605
14805
|
*/
|
|
13606
14806
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13607
14807
|
|
|
13608
14808
|
/**
|
|
13609
|
-
* Creates a
|
|
14809
|
+
* Creates a SideData message from a plain object. Also converts values to their respective internal types.
|
|
13610
14810
|
* @param object Plain object
|
|
13611
|
-
* @returns
|
|
14811
|
+
* @returns SideData
|
|
13612
14812
|
*/
|
|
13613
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.
|
|
14813
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideData;
|
|
13614
14814
|
|
|
13615
14815
|
/**
|
|
13616
|
-
* Creates a plain object from a
|
|
13617
|
-
* @param message
|
|
14816
|
+
* Creates a plain object from a SideData message. Also converts values to other types if specified.
|
|
14817
|
+
* @param message SideData
|
|
13618
14818
|
* @param [options] Conversion options
|
|
13619
14819
|
* @returns Plain object
|
|
13620
14820
|
*/
|
|
13621
|
-
public static toObject(message: sesame.v1.
|
|
14821
|
+
public static toObject(message: sesame.v1.sidedata.SideData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13622
14822
|
|
|
13623
14823
|
/**
|
|
13624
|
-
* Converts this
|
|
14824
|
+
* Converts this SideData to JSON.
|
|
13625
14825
|
* @returns JSON object
|
|
13626
14826
|
*/
|
|
13627
14827
|
public toJSON(): { [k: string]: any };
|
|
13628
14828
|
|
|
13629
14829
|
/**
|
|
13630
|
-
* Gets the default type url for
|
|
14830
|
+
* Gets the default type url for SideData
|
|
13631
14831
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13632
14832
|
* @returns The default type url
|
|
13633
14833
|
*/
|
|
13634
14834
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13635
14835
|
}
|
|
13636
14836
|
|
|
13637
|
-
/** Properties of a
|
|
13638
|
-
interface
|
|
13639
|
-
|
|
13640
|
-
/** PropertyAnimateRequest domain */
|
|
13641
|
-
domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13642
|
-
|
|
13643
|
-
/** PropertyAnimateRequest address */
|
|
13644
|
-
address?: (string|null);
|
|
13645
|
-
|
|
13646
|
-
/** PropertyAnimateRequest property */
|
|
13647
|
-
property?: (string|null);
|
|
13648
|
-
|
|
13649
|
-
/** PropertyAnimateRequest keyframes */
|
|
13650
|
-
keyframes?: (sesame.v1.compositor.IKeyFrame[]|null);
|
|
13651
|
-
|
|
13652
|
-
/** PropertyAnimateRequest before */
|
|
13653
|
-
before?: (sesame.v1.compositor.AnimationChannelEvaluationMode|null);
|
|
14837
|
+
/** Properties of a SideDataSet. */
|
|
14838
|
+
interface ISideDataSet {
|
|
13654
14839
|
|
|
13655
|
-
/**
|
|
13656
|
-
|
|
14840
|
+
/** SideDataSet entries */
|
|
14841
|
+
entries?: (sesame.v1.sidedata.ISideData[]|null);
|
|
13657
14842
|
}
|
|
13658
14843
|
|
|
13659
|
-
/** Represents a
|
|
13660
|
-
class
|
|
14844
|
+
/** Represents a SideDataSet. */
|
|
14845
|
+
class SideDataSet implements ISideDataSet {
|
|
13661
14846
|
|
|
13662
14847
|
/**
|
|
13663
|
-
* Constructs a new
|
|
14848
|
+
* Constructs a new SideDataSet.
|
|
13664
14849
|
* @param [properties] Properties to set
|
|
13665
14850
|
*/
|
|
13666
|
-
constructor(properties?: sesame.v1.
|
|
13667
|
-
|
|
13668
|
-
/** PropertyAnimateRequest domain. */
|
|
13669
|
-
public domain?: (sesame.v1.common.IPropertyDomain|null);
|
|
13670
|
-
|
|
13671
|
-
/** PropertyAnimateRequest address. */
|
|
13672
|
-
public address: string;
|
|
13673
|
-
|
|
13674
|
-
/** PropertyAnimateRequest property. */
|
|
13675
|
-
public property: string;
|
|
13676
|
-
|
|
13677
|
-
/** PropertyAnimateRequest keyframes. */
|
|
13678
|
-
public keyframes: sesame.v1.compositor.IKeyFrame[];
|
|
13679
|
-
|
|
13680
|
-
/** PropertyAnimateRequest before. */
|
|
13681
|
-
public before: sesame.v1.compositor.AnimationChannelEvaluationMode;
|
|
14851
|
+
constructor(properties?: sesame.v1.sidedata.ISideDataSet);
|
|
13682
14852
|
|
|
13683
|
-
/**
|
|
13684
|
-
public
|
|
14853
|
+
/** SideDataSet entries. */
|
|
14854
|
+
public entries: sesame.v1.sidedata.ISideData[];
|
|
13685
14855
|
|
|
13686
14856
|
/**
|
|
13687
|
-
* Creates a new
|
|
14857
|
+
* Creates a new SideDataSet instance using the specified properties.
|
|
13688
14858
|
* @param [properties] Properties to set
|
|
13689
|
-
* @returns
|
|
14859
|
+
* @returns SideDataSet instance
|
|
13690
14860
|
*/
|
|
13691
|
-
public static create(properties?: sesame.v1.
|
|
14861
|
+
public static create(properties?: sesame.v1.sidedata.ISideDataSet): sesame.v1.sidedata.SideDataSet;
|
|
13692
14862
|
|
|
13693
14863
|
/**
|
|
13694
|
-
* Encodes the specified
|
|
13695
|
-
* @param message
|
|
14864
|
+
* Encodes the specified SideDataSet message. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
|
|
14865
|
+
* @param message SideDataSet message or plain object to encode
|
|
13696
14866
|
* @param [writer] Writer to encode to
|
|
13697
14867
|
* @returns Writer
|
|
13698
14868
|
*/
|
|
13699
|
-
public static encode(message: sesame.v1.
|
|
14869
|
+
public static encode(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13700
14870
|
|
|
13701
14871
|
/**
|
|
13702
|
-
* Encodes the specified
|
|
13703
|
-
* @param message
|
|
14872
|
+
* Encodes the specified SideDataSet message, length delimited. Does not implicitly {@link sesame.v1.sidedata.SideDataSet.verify|verify} messages.
|
|
14873
|
+
* @param message SideDataSet message or plain object to encode
|
|
13704
14874
|
* @param [writer] Writer to encode to
|
|
13705
14875
|
* @returns Writer
|
|
13706
14876
|
*/
|
|
13707
|
-
public static encodeDelimited(message: sesame.v1.
|
|
14877
|
+
public static encodeDelimited(message: sesame.v1.sidedata.ISideDataSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13708
14878
|
|
|
13709
14879
|
/**
|
|
13710
|
-
* Decodes a
|
|
14880
|
+
* Decodes a SideDataSet message from the specified reader or buffer.
|
|
13711
14881
|
* @param reader Reader or buffer to decode from
|
|
13712
14882
|
* @param [length] Message length if known beforehand
|
|
13713
|
-
* @returns
|
|
14883
|
+
* @returns SideDataSet
|
|
13714
14884
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13715
14885
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13716
14886
|
*/
|
|
13717
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.
|
|
14887
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sidedata.SideDataSet;
|
|
13718
14888
|
|
|
13719
14889
|
/**
|
|
13720
|
-
* Decodes a
|
|
14890
|
+
* Decodes a SideDataSet message from the specified reader or buffer, length delimited.
|
|
13721
14891
|
* @param reader Reader or buffer to decode from
|
|
13722
|
-
* @returns
|
|
14892
|
+
* @returns SideDataSet
|
|
13723
14893
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13724
14894
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13725
14895
|
*/
|
|
13726
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.
|
|
14896
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sidedata.SideDataSet;
|
|
13727
14897
|
|
|
13728
14898
|
/**
|
|
13729
|
-
* Verifies a
|
|
14899
|
+
* Verifies a SideDataSet message.
|
|
13730
14900
|
* @param message Plain object to verify
|
|
13731
14901
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
13732
14902
|
*/
|
|
13733
14903
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13734
14904
|
|
|
13735
14905
|
/**
|
|
13736
|
-
* Creates a
|
|
14906
|
+
* Creates a SideDataSet message from a plain object. Also converts values to their respective internal types.
|
|
13737
14907
|
* @param object Plain object
|
|
13738
|
-
* @returns
|
|
14908
|
+
* @returns SideDataSet
|
|
13739
14909
|
*/
|
|
13740
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.
|
|
14910
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sidedata.SideDataSet;
|
|
13741
14911
|
|
|
13742
14912
|
/**
|
|
13743
|
-
* Creates a plain object from a
|
|
13744
|
-
* @param message
|
|
14913
|
+
* Creates a plain object from a SideDataSet message. Also converts values to other types if specified.
|
|
14914
|
+
* @param message SideDataSet
|
|
13745
14915
|
* @param [options] Conversion options
|
|
13746
14916
|
* @returns Plain object
|
|
13747
14917
|
*/
|
|
13748
|
-
public static toObject(message: sesame.v1.
|
|
14918
|
+
public static toObject(message: sesame.v1.sidedata.SideDataSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13749
14919
|
|
|
13750
14920
|
/**
|
|
13751
|
-
* Converts this
|
|
14921
|
+
* Converts this SideDataSet to JSON.
|
|
13752
14922
|
* @returns JSON object
|
|
13753
14923
|
*/
|
|
13754
14924
|
public toJSON(): { [k: string]: any };
|
|
13755
14925
|
|
|
13756
14926
|
/**
|
|
13757
|
-
* Gets the default type url for
|
|
14927
|
+
* Gets the default type url for SideDataSet
|
|
13758
14928
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13759
14929
|
* @returns The default type url
|
|
13760
14930
|
*/
|
|
@@ -16250,6 +17420,9 @@ export namespace sesame {
|
|
|
16250
17420
|
|
|
16251
17421
|
/** MediaFrameData codecData */
|
|
16252
17422
|
codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
17423
|
+
|
|
17424
|
+
/** MediaFrameData sideData */
|
|
17425
|
+
sideData?: (sesame.v1.sidedata.ISideDataSet|null);
|
|
16253
17426
|
}
|
|
16254
17427
|
|
|
16255
17428
|
/** Represents a MediaFrameData. */
|
|
@@ -16270,6 +17443,9 @@ export namespace sesame {
|
|
|
16270
17443
|
/** MediaFrameData codecData. */
|
|
16271
17444
|
public codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
16272
17445
|
|
|
17446
|
+
/** MediaFrameData sideData. */
|
|
17447
|
+
public sideData?: (sesame.v1.sidedata.ISideDataSet|null);
|
|
17448
|
+
|
|
16273
17449
|
/**
|
|
16274
17450
|
* Creates a new MediaFrameData instance using the specified properties.
|
|
16275
17451
|
* @param [properties] Properties to set
|
|
@@ -16356,7 +17532,12 @@ export namespace sesame {
|
|
|
16356
17532
|
DATA_TYPE_AUDIO_STATE = 3,
|
|
16357
17533
|
DATA_TYPE_TRANSPORT_CONTROL = 4,
|
|
16358
17534
|
DATA_TYPE_AUDIO_CONTROL = 5,
|
|
16359
|
-
DATA_TYPE_BINARY = 6
|
|
17535
|
+
DATA_TYPE_BINARY = 6,
|
|
17536
|
+
DATA_TYPE_OUTPUT_STATUS = 7,
|
|
17537
|
+
DATA_TYPE_OUTPUT_CONTROL = 8,
|
|
17538
|
+
DATA_TYPE_ENGINE_STATUS = 9,
|
|
17539
|
+
DATA_TYPE_SOURCE_CONTROL = 10,
|
|
17540
|
+
DATA_TYPE_SOURCE_STATUS = 11
|
|
16360
17541
|
}
|
|
16361
17542
|
|
|
16362
17543
|
/** Properties of a DataFrameData. */
|