@stinkycomputing/sesame-api-client 1.9.0-alpha.1 → 1.10.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/dist/generated/property-types.d.ts +4 -1
- package/dist/generated/property-types.d.ts.map +1 -1
- package/dist/index.browser.mjs +664 -7
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +666 -7
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +664 -7
- package/dist/index.mjs.map +2 -2
- package/dist/proto/api.d.ts +362 -5
- package/dist/proto/api.js +1026 -9
- package/dist/sesame-wire-protocol.d.ts +47 -1
- package/dist/sesame-wire-protocol.d.ts.map +1 -1
- package/docs/protocol-reference.md +77 -9
- package/package.json +1 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -3673,7 +3673,8 @@ export namespace sesame {
|
|
|
3673
3673
|
SOURCE_TYPE_SYSTEM_AUDIO = 7,
|
|
3674
3674
|
SOURCE_TYPE_SRT_STREAM = 8,
|
|
3675
3675
|
SOURCE_TYPE_WEBSOCKET = 9,
|
|
3676
|
-
SOURCE_TYPE_MOQ = 10
|
|
3676
|
+
SOURCE_TYPE_MOQ = 10,
|
|
3677
|
+
SOURCE_TYPE_SCOPE = 11
|
|
3677
3678
|
}
|
|
3678
3679
|
|
|
3679
3680
|
/** DeinterlaceType enum. */
|
|
@@ -3724,9 +3725,9 @@ export namespace sesame {
|
|
|
3724
3725
|
/** PreprocessStep enum. */
|
|
3725
3726
|
enum PreprocessStep {
|
|
3726
3727
|
PREPROCESS_STEP_UNSPECIFIED = 0,
|
|
3727
|
-
PREPROCESS_STEP_VIDEO_SCOPES = 1,
|
|
3728
3728
|
PREPROCESS_STEP_CHROMA_KEY = 2,
|
|
3729
|
-
PREPROCESS_STEP_BLUR = 3
|
|
3729
|
+
PREPROCESS_STEP_BLUR = 3,
|
|
3730
|
+
PREPROCESS_STEP_COLOR_CORRECT = 4
|
|
3730
3731
|
}
|
|
3731
3732
|
|
|
3732
3733
|
/** Properties of a VideoProcessorParam. */
|
|
@@ -4510,6 +4511,124 @@ export namespace sesame {
|
|
|
4510
4511
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4511
4512
|
}
|
|
4512
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
|
+
|
|
4513
4632
|
/** Properties of a DecklinkSourceConfig. */
|
|
4514
4633
|
interface IDecklinkSourceConfig {
|
|
4515
4634
|
|
|
@@ -5228,6 +5347,9 @@ export namespace sesame {
|
|
|
5228
5347
|
|
|
5229
5348
|
/** SourceConfig moq */
|
|
5230
5349
|
moq?: (sesame.v1.sources.IMoqSourceConfig|null);
|
|
5350
|
+
|
|
5351
|
+
/** SourceConfig scope */
|
|
5352
|
+
scope?: (sesame.v1.sources.IScopeSourceConfig|null);
|
|
5231
5353
|
}
|
|
5232
5354
|
|
|
5233
5355
|
/** Represents a SourceConfig. */
|
|
@@ -5272,8 +5394,11 @@ export namespace sesame {
|
|
|
5272
5394
|
/** SourceConfig moq. */
|
|
5273
5395
|
public moq?: (sesame.v1.sources.IMoqSourceConfig|null);
|
|
5274
5396
|
|
|
5397
|
+
/** SourceConfig scope. */
|
|
5398
|
+
public scope?: (sesame.v1.sources.IScopeSourceConfig|null);
|
|
5399
|
+
|
|
5275
5400
|
/** SourceConfig details. */
|
|
5276
|
-
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");
|
|
5277
5402
|
|
|
5278
5403
|
/**
|
|
5279
5404
|
* Creates a new SourceConfig instance using the specified properties.
|
|
@@ -5721,6 +5846,9 @@ export namespace sesame {
|
|
|
5721
5846
|
|
|
5722
5847
|
/** SourceStatus srtStats */
|
|
5723
5848
|
srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
|
|
5849
|
+
|
|
5850
|
+
/** SourceStatus videoProcessors */
|
|
5851
|
+
videoProcessors?: (sesame.v1.sources.IVideoProcessor[]|null);
|
|
5724
5852
|
}
|
|
5725
5853
|
|
|
5726
5854
|
/** Represents a SourceStatus. */
|
|
@@ -5795,6 +5923,9 @@ export namespace sesame {
|
|
|
5795
5923
|
/** SourceStatus srtStats. */
|
|
5796
5924
|
public srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
|
|
5797
5925
|
|
|
5926
|
+
/** SourceStatus videoProcessors. */
|
|
5927
|
+
public videoProcessors: sesame.v1.sources.IVideoProcessor[];
|
|
5928
|
+
|
|
5798
5929
|
/**
|
|
5799
5930
|
* Creates a new SourceStatus instance using the specified properties.
|
|
5800
5931
|
* @param [properties] Properties to set
|
|
@@ -6559,6 +6690,9 @@ export namespace sesame {
|
|
|
6559
6690
|
|
|
6560
6691
|
/** TransportControlRequest value */
|
|
6561
6692
|
value?: (sesame.v1.common.IPropValue|null);
|
|
6693
|
+
|
|
6694
|
+
/** TransportControlRequest sourceId */
|
|
6695
|
+
sourceId?: (string|null);
|
|
6562
6696
|
}
|
|
6563
6697
|
|
|
6564
6698
|
/** Represents a TransportControlRequest. */
|
|
@@ -6576,6 +6710,9 @@ export namespace sesame {
|
|
|
6576
6710
|
/** TransportControlRequest value. */
|
|
6577
6711
|
public value?: (sesame.v1.common.IPropValue|null);
|
|
6578
6712
|
|
|
6713
|
+
/** TransportControlRequest sourceId. */
|
|
6714
|
+
public sourceId: string;
|
|
6715
|
+
|
|
6579
6716
|
/**
|
|
6580
6717
|
* Creates a new TransportControlRequest instance using the specified properties.
|
|
6581
6718
|
* @param [properties] Properties to set
|
|
@@ -6653,6 +6790,224 @@ export namespace sesame {
|
|
|
6653
6790
|
*/
|
|
6654
6791
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6655
6792
|
}
|
|
6793
|
+
|
|
6794
|
+
/** Properties of a VideoProcessorControlRequest. */
|
|
6795
|
+
interface IVideoProcessorControlRequest {
|
|
6796
|
+
|
|
6797
|
+
/** VideoProcessorControlRequest processorId */
|
|
6798
|
+
processorId?: (string|null);
|
|
6799
|
+
|
|
6800
|
+
/** VideoProcessorControlRequest params */
|
|
6801
|
+
params?: (sesame.v1.sources.IVideoProcessorParam[]|null);
|
|
6802
|
+
}
|
|
6803
|
+
|
|
6804
|
+
/** Represents a VideoProcessorControlRequest. */
|
|
6805
|
+
class VideoProcessorControlRequest implements IVideoProcessorControlRequest {
|
|
6806
|
+
|
|
6807
|
+
/**
|
|
6808
|
+
* Constructs a new VideoProcessorControlRequest.
|
|
6809
|
+
* @param [properties] Properties to set
|
|
6810
|
+
*/
|
|
6811
|
+
constructor(properties?: sesame.v1.sources.IVideoProcessorControlRequest);
|
|
6812
|
+
|
|
6813
|
+
/** VideoProcessorControlRequest processorId. */
|
|
6814
|
+
public processorId: string;
|
|
6815
|
+
|
|
6816
|
+
/** VideoProcessorControlRequest params. */
|
|
6817
|
+
public params: sesame.v1.sources.IVideoProcessorParam[];
|
|
6818
|
+
|
|
6819
|
+
/**
|
|
6820
|
+
* Creates a new VideoProcessorControlRequest instance using the specified properties.
|
|
6821
|
+
* @param [properties] Properties to set
|
|
6822
|
+
* @returns VideoProcessorControlRequest instance
|
|
6823
|
+
*/
|
|
6824
|
+
public static create(properties?: sesame.v1.sources.IVideoProcessorControlRequest): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6825
|
+
|
|
6826
|
+
/**
|
|
6827
|
+
* Encodes the specified VideoProcessorControlRequest message. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
|
|
6828
|
+
* @param message VideoProcessorControlRequest message or plain object to encode
|
|
6829
|
+
* @param [writer] Writer to encode to
|
|
6830
|
+
* @returns Writer
|
|
6831
|
+
*/
|
|
6832
|
+
public static encode(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6833
|
+
|
|
6834
|
+
/**
|
|
6835
|
+
* Encodes the specified VideoProcessorControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
|
|
6836
|
+
* @param message VideoProcessorControlRequest message or plain object to encode
|
|
6837
|
+
* @param [writer] Writer to encode to
|
|
6838
|
+
* @returns Writer
|
|
6839
|
+
*/
|
|
6840
|
+
public static encodeDelimited(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6841
|
+
|
|
6842
|
+
/**
|
|
6843
|
+
* Decodes a VideoProcessorControlRequest message from the specified reader or buffer.
|
|
6844
|
+
* @param reader Reader or buffer to decode from
|
|
6845
|
+
* @param [length] Message length if known beforehand
|
|
6846
|
+
* @returns VideoProcessorControlRequest
|
|
6847
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6848
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6849
|
+
*/
|
|
6850
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6851
|
+
|
|
6852
|
+
/**
|
|
6853
|
+
* Decodes a VideoProcessorControlRequest message from the specified reader or buffer, length delimited.
|
|
6854
|
+
* @param reader Reader or buffer to decode from
|
|
6855
|
+
* @returns VideoProcessorControlRequest
|
|
6856
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6857
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6858
|
+
*/
|
|
6859
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6860
|
+
|
|
6861
|
+
/**
|
|
6862
|
+
* Verifies a VideoProcessorControlRequest message.
|
|
6863
|
+
* @param message Plain object to verify
|
|
6864
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6865
|
+
*/
|
|
6866
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6867
|
+
|
|
6868
|
+
/**
|
|
6869
|
+
* Creates a VideoProcessorControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
6870
|
+
* @param object Plain object
|
|
6871
|
+
* @returns VideoProcessorControlRequest
|
|
6872
|
+
*/
|
|
6873
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.VideoProcessorControlRequest;
|
|
6874
|
+
|
|
6875
|
+
/**
|
|
6876
|
+
* Creates a plain object from a VideoProcessorControlRequest message. Also converts values to other types if specified.
|
|
6877
|
+
* @param message VideoProcessorControlRequest
|
|
6878
|
+
* @param [options] Conversion options
|
|
6879
|
+
* @returns Plain object
|
|
6880
|
+
*/
|
|
6881
|
+
public static toObject(message: sesame.v1.sources.VideoProcessorControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6882
|
+
|
|
6883
|
+
/**
|
|
6884
|
+
* Converts this VideoProcessorControlRequest to JSON.
|
|
6885
|
+
* @returns JSON object
|
|
6886
|
+
*/
|
|
6887
|
+
public toJSON(): { [k: string]: any };
|
|
6888
|
+
|
|
6889
|
+
/**
|
|
6890
|
+
* Gets the default type url for VideoProcessorControlRequest
|
|
6891
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6892
|
+
* @returns The default type url
|
|
6893
|
+
*/
|
|
6894
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
/** Properties of a SourceControlRequest. */
|
|
6898
|
+
interface ISourceControlRequest {
|
|
6899
|
+
|
|
6900
|
+
/** SourceControlRequest videoProcessors */
|
|
6901
|
+
videoProcessors?: (sesame.v1.sources.IVideoProcessorControlRequest[]|null);
|
|
6902
|
+
|
|
6903
|
+
/** SourceControlRequest audioLevel */
|
|
6904
|
+
audioLevel?: (number|null);
|
|
6905
|
+
|
|
6906
|
+
/** SourceControlRequest resetProcessors */
|
|
6907
|
+
resetProcessors?: (string[]|null);
|
|
6908
|
+
|
|
6909
|
+
/** SourceControlRequest sourceId */
|
|
6910
|
+
sourceId?: (string|null);
|
|
6911
|
+
}
|
|
6912
|
+
|
|
6913
|
+
/** Represents a SourceControlRequest. */
|
|
6914
|
+
class SourceControlRequest implements ISourceControlRequest {
|
|
6915
|
+
|
|
6916
|
+
/**
|
|
6917
|
+
* Constructs a new SourceControlRequest.
|
|
6918
|
+
* @param [properties] Properties to set
|
|
6919
|
+
*/
|
|
6920
|
+
constructor(properties?: sesame.v1.sources.ISourceControlRequest);
|
|
6921
|
+
|
|
6922
|
+
/** SourceControlRequest videoProcessors. */
|
|
6923
|
+
public videoProcessors: sesame.v1.sources.IVideoProcessorControlRequest[];
|
|
6924
|
+
|
|
6925
|
+
/** SourceControlRequest audioLevel. */
|
|
6926
|
+
public audioLevel?: (number|null);
|
|
6927
|
+
|
|
6928
|
+
/** SourceControlRequest resetProcessors. */
|
|
6929
|
+
public resetProcessors: string[];
|
|
6930
|
+
|
|
6931
|
+
/** SourceControlRequest sourceId. */
|
|
6932
|
+
public sourceId: string;
|
|
6933
|
+
|
|
6934
|
+
/**
|
|
6935
|
+
* Creates a new SourceControlRequest instance using the specified properties.
|
|
6936
|
+
* @param [properties] Properties to set
|
|
6937
|
+
* @returns SourceControlRequest instance
|
|
6938
|
+
*/
|
|
6939
|
+
public static create(properties?: sesame.v1.sources.ISourceControlRequest): sesame.v1.sources.SourceControlRequest;
|
|
6940
|
+
|
|
6941
|
+
/**
|
|
6942
|
+
* Encodes the specified SourceControlRequest message. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
|
|
6943
|
+
* @param message SourceControlRequest message or plain object to encode
|
|
6944
|
+
* @param [writer] Writer to encode to
|
|
6945
|
+
* @returns Writer
|
|
6946
|
+
*/
|
|
6947
|
+
public static encode(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6948
|
+
|
|
6949
|
+
/**
|
|
6950
|
+
* Encodes the specified SourceControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
|
|
6951
|
+
* @param message SourceControlRequest message or plain object to encode
|
|
6952
|
+
* @param [writer] Writer to encode to
|
|
6953
|
+
* @returns Writer
|
|
6954
|
+
*/
|
|
6955
|
+
public static encodeDelimited(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6956
|
+
|
|
6957
|
+
/**
|
|
6958
|
+
* Decodes a SourceControlRequest message from the specified reader or buffer.
|
|
6959
|
+
* @param reader Reader or buffer to decode from
|
|
6960
|
+
* @param [length] Message length if known beforehand
|
|
6961
|
+
* @returns SourceControlRequest
|
|
6962
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6963
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6964
|
+
*/
|
|
6965
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.SourceControlRequest;
|
|
6966
|
+
|
|
6967
|
+
/**
|
|
6968
|
+
* Decodes a SourceControlRequest message from the specified reader or buffer, length delimited.
|
|
6969
|
+
* @param reader Reader or buffer to decode from
|
|
6970
|
+
* @returns SourceControlRequest
|
|
6971
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6972
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6973
|
+
*/
|
|
6974
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.SourceControlRequest;
|
|
6975
|
+
|
|
6976
|
+
/**
|
|
6977
|
+
* Verifies a SourceControlRequest message.
|
|
6978
|
+
* @param message Plain object to verify
|
|
6979
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6980
|
+
*/
|
|
6981
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6982
|
+
|
|
6983
|
+
/**
|
|
6984
|
+
* Creates a SourceControlRequest message from a plain object. Also converts values to their respective internal types.
|
|
6985
|
+
* @param object Plain object
|
|
6986
|
+
* @returns SourceControlRequest
|
|
6987
|
+
*/
|
|
6988
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.SourceControlRequest;
|
|
6989
|
+
|
|
6990
|
+
/**
|
|
6991
|
+
* Creates a plain object from a SourceControlRequest message. Also converts values to other types if specified.
|
|
6992
|
+
* @param message SourceControlRequest
|
|
6993
|
+
* @param [options] Conversion options
|
|
6994
|
+
* @returns Plain object
|
|
6995
|
+
*/
|
|
6996
|
+
public static toObject(message: sesame.v1.sources.SourceControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6997
|
+
|
|
6998
|
+
/**
|
|
6999
|
+
* Converts this SourceControlRequest to JSON.
|
|
7000
|
+
* @returns JSON object
|
|
7001
|
+
*/
|
|
7002
|
+
public toJSON(): { [k: string]: any };
|
|
7003
|
+
|
|
7004
|
+
/**
|
|
7005
|
+
* Gets the default type url for SourceControlRequest
|
|
7006
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7007
|
+
* @returns The default type url
|
|
7008
|
+
*/
|
|
7009
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7010
|
+
}
|
|
6656
7011
|
}
|
|
6657
7012
|
|
|
6658
7013
|
/** Namespace recorder. */
|
|
@@ -17186,7 +17541,9 @@ export namespace sesame {
|
|
|
17186
17541
|
DATA_TYPE_BINARY = 6,
|
|
17187
17542
|
DATA_TYPE_OUTPUT_STATUS = 7,
|
|
17188
17543
|
DATA_TYPE_OUTPUT_CONTROL = 8,
|
|
17189
|
-
DATA_TYPE_ENGINE_STATUS = 9
|
|
17544
|
+
DATA_TYPE_ENGINE_STATUS = 9,
|
|
17545
|
+
DATA_TYPE_SOURCE_CONTROL = 10,
|
|
17546
|
+
DATA_TYPE_SOURCE_STATUS = 11
|
|
17190
17547
|
}
|
|
17191
17548
|
|
|
17192
17549
|
/** Properties of a DataFrameData. */
|