@stinkycomputing/sesame-api-client 1.4.1-alpha.9 → 1.4.1-beta.10
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 +60 -136
- package/dist/index.browser.mjs +2054 -1520
- package/dist/index.browser.mjs.map +4 -4
- package/dist/index.cjs +2058 -1522
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2054 -1520
- package/dist/index.mjs.map +4 -4
- package/dist/jobs-api.d.ts +5 -6
- package/dist/jobs-api.d.ts.map +1 -1
- package/dist/proto/api.d.ts +936 -897
- package/dist/proto/api.js +3716 -3072
- package/dist/rpc-client.d.ts +7 -0
- package/dist/rpc-client.d.ts.map +1 -1
- package/dist/sesame-api-client.d.ts +5 -6
- package/dist/sesame-api-client.d.ts.map +1 -1
- package/dist/sesame-connection.d.ts +11 -2
- package/dist/sesame-connection.d.ts.map +1 -1
- package/dist/sesame-wire-protocol.d.ts +29 -0
- package/dist/sesame-wire-protocol.d.ts.map +1 -0
- package/dist/status-api.d.ts +0 -1
- package/dist/status-api.d.ts.map +1 -1
- package/docs/protocol-reference.md +1218 -0
- package/package.json +2 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -1929,15 +1929,20 @@ export namespace sesame {
|
|
|
1929
1929
|
VIDEO_FORMAT_1080_60P = 4
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
|
-
/**
|
|
1933
|
-
enum
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1932
|
+
/** CodecType enum. */
|
|
1933
|
+
enum CodecType {
|
|
1934
|
+
CODEC_TYPE_UNSPECIFIED = 0,
|
|
1935
|
+
CODEC_TYPE_VIDEO_VP8 = 1,
|
|
1936
|
+
CODEC_TYPE_VIDEO_VP9 = 2,
|
|
1937
|
+
CODEC_TYPE_VIDEO_AVC = 3,
|
|
1938
|
+
CODEC_TYPE_VIDEO_HEVC = 4,
|
|
1939
|
+
CODEC_TYPE_VIDEO_AV1 = 5,
|
|
1940
|
+
CODEC_TYPE_VIDEO_PRORES = 6,
|
|
1941
|
+
CODEC_TYPE_VIDEO_DNXHR = 7,
|
|
1942
|
+
CODEC_TYPE_AUDIO_OPUS = 64,
|
|
1943
|
+
CODEC_TYPE_AUDIO_AAC = 65,
|
|
1944
|
+
CODEC_TYPE_AUDIO_PCM = 66,
|
|
1945
|
+
CODEC_TYPE_AUDIO_PCM_S24LE = 67
|
|
1941
1946
|
}
|
|
1942
1947
|
|
|
1943
1948
|
/** Properties of an Empty. */
|
|
@@ -2395,7 +2400,7 @@ export namespace sesame {
|
|
|
2395
2400
|
name?: (string|null);
|
|
2396
2401
|
|
|
2397
2402
|
/** NameValue value */
|
|
2398
|
-
value?: (
|
|
2403
|
+
value?: (sesame.v1.common.IPropValue|null);
|
|
2399
2404
|
}
|
|
2400
2405
|
|
|
2401
2406
|
/** Represents a NameValue. */
|
|
@@ -2411,7 +2416,7 @@ export namespace sesame {
|
|
|
2411
2416
|
public name: string;
|
|
2412
2417
|
|
|
2413
2418
|
/** NameValue value. */
|
|
2414
|
-
public value
|
|
2419
|
+
public value?: (sesame.v1.common.IPropValue|null);
|
|
2415
2420
|
|
|
2416
2421
|
/**
|
|
2417
2422
|
* Creates a new NameValue instance using the specified properties.
|
|
@@ -2697,8 +2702,7 @@ export namespace sesame {
|
|
|
2697
2702
|
EVENT_TOPIC_ERROR = 1,
|
|
2698
2703
|
EVENT_TOPIC_TRANSPORT = 2,
|
|
2699
2704
|
EVENT_TOPIC_CALLBACK = 3,
|
|
2700
|
-
|
|
2701
|
-
EVENT_TOPIC_CLIP_IMPORT = 5,
|
|
2705
|
+
EVENT_TOPIC_JOB = 4,
|
|
2702
2706
|
EVENT_TOPIC_RECORDER = 6
|
|
2703
2707
|
}
|
|
2704
2708
|
}
|
|
@@ -2758,14 +2762,6 @@ export namespace sesame {
|
|
|
2758
2762
|
SOURCE_TRANSPORT_CMD_SET_SCRUBBING = 15
|
|
2759
2763
|
}
|
|
2760
2764
|
|
|
2761
|
-
/** DecoderType enum. */
|
|
2762
|
-
enum DecoderType {
|
|
2763
|
-
DECODER_TYPE_UNSPECIFIED = 0,
|
|
2764
|
-
DECODER_TYPE_H264 = 1,
|
|
2765
|
-
DECODER_TYPE_HEVC = 2,
|
|
2766
|
-
DECODER_TYPE_AV1 = 3
|
|
2767
|
-
}
|
|
2768
|
-
|
|
2769
2765
|
/** SourceTextureSize enum. */
|
|
2770
2766
|
enum SourceTextureSize {
|
|
2771
2767
|
SOURCE_TEXTURE_SIZE_UNSPECIFIED = 0,
|
|
@@ -3247,8 +3243,8 @@ export namespace sesame {
|
|
|
3247
3243
|
/** RecorderSourceConfig recorderId */
|
|
3248
3244
|
recorderId?: (string|null);
|
|
3249
3245
|
|
|
3250
|
-
/** RecorderSourceConfig
|
|
3251
|
-
|
|
3246
|
+
/** RecorderSourceConfig codec */
|
|
3247
|
+
codec?: (sesame.v1.common.CodecType|null);
|
|
3252
3248
|
}
|
|
3253
3249
|
|
|
3254
3250
|
/** Represents a RecorderSourceConfig. */
|
|
@@ -3263,8 +3259,8 @@ export namespace sesame {
|
|
|
3263
3259
|
/** RecorderSourceConfig recorderId. */
|
|
3264
3260
|
public recorderId: string;
|
|
3265
3261
|
|
|
3266
|
-
/** RecorderSourceConfig
|
|
3267
|
-
public
|
|
3262
|
+
/** RecorderSourceConfig codec. */
|
|
3263
|
+
public codec: sesame.v1.common.CodecType;
|
|
3268
3264
|
|
|
3269
3265
|
/**
|
|
3270
3266
|
* Creates a new RecorderSourceConfig instance using the specified properties.
|
|
@@ -5438,8 +5434,8 @@ export namespace sesame {
|
|
|
5438
5434
|
/** RecorderClip lockedEndUs */
|
|
5439
5435
|
lockedEndUs?: (number|Long|null);
|
|
5440
5436
|
|
|
5441
|
-
/** RecorderClip
|
|
5442
|
-
|
|
5437
|
+
/** RecorderClip userTimeUs */
|
|
5438
|
+
userTimeUs?: (number|Long|null);
|
|
5443
5439
|
}
|
|
5444
5440
|
|
|
5445
5441
|
/** Represents a RecorderClip. */
|
|
@@ -5475,8 +5471,8 @@ export namespace sesame {
|
|
|
5475
5471
|
/** RecorderClip lockedEndUs. */
|
|
5476
5472
|
public lockedEndUs: (number|Long);
|
|
5477
5473
|
|
|
5478
|
-
/** RecorderClip
|
|
5479
|
-
public
|
|
5474
|
+
/** RecorderClip userTimeUs. */
|
|
5475
|
+
public userTimeUs: (number|Long);
|
|
5480
5476
|
|
|
5481
5477
|
/**
|
|
5482
5478
|
* Creates a new RecorderClip instance using the specified properties.
|
|
@@ -8744,6 +8740,9 @@ export namespace sesame {
|
|
|
8744
8740
|
/** TransportEvent userId */
|
|
8745
8741
|
userId?: (string|null);
|
|
8746
8742
|
|
|
8743
|
+
/** TransportEvent uri */
|
|
8744
|
+
uri?: (string|null);
|
|
8745
|
+
|
|
8747
8746
|
/** TransportEvent state */
|
|
8748
8747
|
state?: (sesame.v1.sources.SourceTransportState|null);
|
|
8749
8748
|
|
|
@@ -8756,6 +8755,12 @@ export namespace sesame {
|
|
|
8756
8755
|
/** TransportEvent materialPositionUs */
|
|
8757
8756
|
materialPositionUs?: (number|Long|null);
|
|
8758
8757
|
|
|
8758
|
+
/** TransportEvent userTimeUs */
|
|
8759
|
+
userTimeUs?: (number|Long|null);
|
|
8760
|
+
|
|
8761
|
+
/** TransportEvent speed */
|
|
8762
|
+
speed?: (number|null);
|
|
8763
|
+
|
|
8759
8764
|
/** TransportEvent userPlaylistId */
|
|
8760
8765
|
userPlaylistId?: (string|null);
|
|
8761
8766
|
|
|
@@ -8770,6 +8775,18 @@ export namespace sesame {
|
|
|
8770
8775
|
|
|
8771
8776
|
/** TransportEvent clipPositionUs */
|
|
8772
8777
|
clipPositionUs?: (number|Long|null);
|
|
8778
|
+
|
|
8779
|
+
/** TransportEvent clipDurationUs */
|
|
8780
|
+
clipDurationUs?: (number|Long|null);
|
|
8781
|
+
|
|
8782
|
+
/** TransportEvent preroll */
|
|
8783
|
+
preroll?: (number|null);
|
|
8784
|
+
|
|
8785
|
+
/** TransportEvent postroll */
|
|
8786
|
+
postroll?: (number|null);
|
|
8787
|
+
|
|
8788
|
+
/** TransportEvent metadata */
|
|
8789
|
+
metadata?: (sesame.v1.common.ITransportMetadata|null);
|
|
8773
8790
|
}
|
|
8774
8791
|
|
|
8775
8792
|
/** Represents a TransportEvent. */
|
|
@@ -8787,6 +8804,9 @@ export namespace sesame {
|
|
|
8787
8804
|
/** TransportEvent userId. */
|
|
8788
8805
|
public userId: string;
|
|
8789
8806
|
|
|
8807
|
+
/** TransportEvent uri. */
|
|
8808
|
+
public uri: string;
|
|
8809
|
+
|
|
8790
8810
|
/** TransportEvent state. */
|
|
8791
8811
|
public state: sesame.v1.sources.SourceTransportState;
|
|
8792
8812
|
|
|
@@ -8799,6 +8819,12 @@ export namespace sesame {
|
|
|
8799
8819
|
/** TransportEvent materialPositionUs. */
|
|
8800
8820
|
public materialPositionUs: (number|Long);
|
|
8801
8821
|
|
|
8822
|
+
/** TransportEvent userTimeUs. */
|
|
8823
|
+
public userTimeUs: (number|Long);
|
|
8824
|
+
|
|
8825
|
+
/** TransportEvent speed. */
|
|
8826
|
+
public speed: number;
|
|
8827
|
+
|
|
8802
8828
|
/** TransportEvent userPlaylistId. */
|
|
8803
8829
|
public userPlaylistId: string;
|
|
8804
8830
|
|
|
@@ -8814,6 +8840,18 @@ export namespace sesame {
|
|
|
8814
8840
|
/** TransportEvent clipPositionUs. */
|
|
8815
8841
|
public clipPositionUs: (number|Long);
|
|
8816
8842
|
|
|
8843
|
+
/** TransportEvent clipDurationUs. */
|
|
8844
|
+
public clipDurationUs: (number|Long);
|
|
8845
|
+
|
|
8846
|
+
/** TransportEvent preroll. */
|
|
8847
|
+
public preroll: number;
|
|
8848
|
+
|
|
8849
|
+
/** TransportEvent postroll. */
|
|
8850
|
+
public postroll: number;
|
|
8851
|
+
|
|
8852
|
+
/** TransportEvent metadata. */
|
|
8853
|
+
public metadata?: (sesame.v1.common.ITransportMetadata|null);
|
|
8854
|
+
|
|
8817
8855
|
/**
|
|
8818
8856
|
* Creates a new TransportEvent instance using the specified properties.
|
|
8819
8857
|
* @param [properties] Properties to set
|
|
@@ -8904,11 +8942,8 @@ export namespace sesame {
|
|
|
8904
8942
|
/** Event callbackEvent */
|
|
8905
8943
|
callbackEvent?: (sesame.v1.common.ICallback|null);
|
|
8906
8944
|
|
|
8907
|
-
/** Event
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
/** Event clipImportEvent */
|
|
8911
|
-
clipImportEvent?: (sesame.v1.jobs.IJobEvent|null);
|
|
8945
|
+
/** Event jobEvent */
|
|
8946
|
+
jobEvent?: (sesame.v1.jobs.IJob|null);
|
|
8912
8947
|
|
|
8913
8948
|
/** Event recorderEvent */
|
|
8914
8949
|
recorderEvent?: (sesame.v1.recorder.IRecorderEvent|null);
|
|
@@ -8932,17 +8967,14 @@ export namespace sesame {
|
|
|
8932
8967
|
/** Event callbackEvent. */
|
|
8933
8968
|
public callbackEvent?: (sesame.v1.common.ICallback|null);
|
|
8934
8969
|
|
|
8935
|
-
/** Event
|
|
8936
|
-
public
|
|
8937
|
-
|
|
8938
|
-
/** Event clipImportEvent. */
|
|
8939
|
-
public clipImportEvent?: (sesame.v1.jobs.IJobEvent|null);
|
|
8970
|
+
/** Event jobEvent. */
|
|
8971
|
+
public jobEvent?: (sesame.v1.jobs.IJob|null);
|
|
8940
8972
|
|
|
8941
8973
|
/** Event recorderEvent. */
|
|
8942
8974
|
public recorderEvent?: (sesame.v1.recorder.IRecorderEvent|null);
|
|
8943
8975
|
|
|
8944
8976
|
/** Event event. */
|
|
8945
|
-
public event?: ("errorEvent"|"transportEvent"|"callbackEvent"|"
|
|
8977
|
+
public event?: ("errorEvent"|"transportEvent"|"callbackEvent"|"jobEvent"|"recorderEvent");
|
|
8946
8978
|
|
|
8947
8979
|
/**
|
|
8948
8980
|
* Creates a new Event instance using the specified properties.
|
|
@@ -9159,8 +9191,8 @@ export namespace sesame {
|
|
|
9159
9191
|
/** Properties of an EncoderConfig. */
|
|
9160
9192
|
interface IEncoderConfig {
|
|
9161
9193
|
|
|
9162
|
-
/** EncoderConfig
|
|
9163
|
-
|
|
9194
|
+
/** EncoderConfig codec */
|
|
9195
|
+
codec?: (sesame.v1.common.CodecType|null);
|
|
9164
9196
|
|
|
9165
9197
|
/** EncoderConfig preset */
|
|
9166
9198
|
preset?: (sesame.v1.outputs.EncoderPreset|null);
|
|
@@ -9190,8 +9222,8 @@ export namespace sesame {
|
|
|
9190
9222
|
*/
|
|
9191
9223
|
constructor(properties?: sesame.v1.outputs.IEncoderConfig);
|
|
9192
9224
|
|
|
9193
|
-
/** EncoderConfig
|
|
9194
|
-
public
|
|
9225
|
+
/** EncoderConfig codec. */
|
|
9226
|
+
public codec: sesame.v1.common.CodecType;
|
|
9195
9227
|
|
|
9196
9228
|
/** EncoderConfig preset. */
|
|
9197
9229
|
public preset: sesame.v1.outputs.EncoderPreset;
|
|
@@ -11629,6 +11661,13 @@ export namespace sesame {
|
|
|
11629
11661
|
/** Namespace jobs. */
|
|
11630
11662
|
namespace jobs {
|
|
11631
11663
|
|
|
11664
|
+
/** JobType enum. */
|
|
11665
|
+
enum JobType {
|
|
11666
|
+
JOB_TYPE_UNSPECIFIED = 0,
|
|
11667
|
+
JOB_TYPE_EXPORT = 1,
|
|
11668
|
+
JOB_TYPE_IMPORT = 2
|
|
11669
|
+
}
|
|
11670
|
+
|
|
11632
11671
|
/** JobStatus enum. */
|
|
11633
11672
|
enum JobStatus {
|
|
11634
11673
|
JOB_STATUS_UNSPECIFIED = 0,
|
|
@@ -11648,15 +11687,6 @@ export namespace sesame {
|
|
|
11648
11687
|
CONTAINER_FORMAT_MXF = 4
|
|
11649
11688
|
}
|
|
11650
11689
|
|
|
11651
|
-
/** AudioCodecId enum. */
|
|
11652
|
-
enum AudioCodecId {
|
|
11653
|
-
AUDIO_CODEC_ID_UNSPECIFIED = 0,
|
|
11654
|
-
AUDIO_CODEC_ID_AAC = 1,
|
|
11655
|
-
AUDIO_CODEC_ID_OPUS = 2,
|
|
11656
|
-
AUDIO_CODEC_ID_PCM_S16LE = 3,
|
|
11657
|
-
AUDIO_CODEC_ID_PCM_S24LE = 4
|
|
11658
|
-
}
|
|
11659
|
-
|
|
11660
11690
|
/** RateControlMode enum. */
|
|
11661
11691
|
enum RateControlMode {
|
|
11662
11692
|
RATE_CONTROL_MODE_UNSPECIFIED = 0,
|
|
@@ -11768,357 +11798,633 @@ export namespace sesame {
|
|
|
11768
11798
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11769
11799
|
}
|
|
11770
11800
|
|
|
11771
|
-
/** Properties of a
|
|
11772
|
-
interface
|
|
11801
|
+
/** Properties of a Job. */
|
|
11802
|
+
interface IJob {
|
|
11773
11803
|
|
|
11774
|
-
/**
|
|
11775
|
-
|
|
11804
|
+
/** Job id */
|
|
11805
|
+
id?: (number|null);
|
|
11806
|
+
|
|
11807
|
+
/** Job type */
|
|
11808
|
+
type?: (sesame.v1.jobs.JobType|null);
|
|
11809
|
+
|
|
11810
|
+
/** Job status */
|
|
11811
|
+
status?: (sesame.v1.jobs.JobStatus|null);
|
|
11776
11812
|
|
|
11777
|
-
/**
|
|
11813
|
+
/** Job name */
|
|
11778
11814
|
name?: (string|null);
|
|
11779
11815
|
|
|
11780
|
-
/**
|
|
11816
|
+
/** Job description */
|
|
11781
11817
|
description?: (string|null);
|
|
11782
11818
|
|
|
11783
|
-
/**
|
|
11784
|
-
status?: (sesame.v1.jobs.JobStatus|null);
|
|
11785
|
-
|
|
11786
|
-
/** JobStatusResponse error */
|
|
11819
|
+
/** Job error */
|
|
11787
11820
|
error?: (string|null);
|
|
11788
11821
|
|
|
11789
|
-
/**
|
|
11790
|
-
progress?: (number|null);
|
|
11822
|
+
/** Job progress */
|
|
11823
|
+
progress?: (number|Long|null);
|
|
11824
|
+
|
|
11825
|
+
/** Job total */
|
|
11826
|
+
total?: (number|Long|null);
|
|
11791
11827
|
|
|
11792
|
-
/**
|
|
11793
|
-
|
|
11828
|
+
/** Job timingInfo */
|
|
11829
|
+
timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
|
|
11794
11830
|
}
|
|
11795
11831
|
|
|
11796
|
-
/** Represents a
|
|
11797
|
-
class
|
|
11832
|
+
/** Represents a Job. */
|
|
11833
|
+
class Job implements IJob {
|
|
11798
11834
|
|
|
11799
11835
|
/**
|
|
11800
|
-
* Constructs a new
|
|
11836
|
+
* Constructs a new Job.
|
|
11801
11837
|
* @param [properties] Properties to set
|
|
11802
11838
|
*/
|
|
11803
|
-
constructor(properties?: sesame.v1.jobs.
|
|
11839
|
+
constructor(properties?: sesame.v1.jobs.IJob);
|
|
11804
11840
|
|
|
11805
|
-
/**
|
|
11806
|
-
public
|
|
11841
|
+
/** Job id. */
|
|
11842
|
+
public id: number;
|
|
11843
|
+
|
|
11844
|
+
/** Job type. */
|
|
11845
|
+
public type: sesame.v1.jobs.JobType;
|
|
11807
11846
|
|
|
11808
|
-
/**
|
|
11847
|
+
/** Job status. */
|
|
11848
|
+
public status: sesame.v1.jobs.JobStatus;
|
|
11849
|
+
|
|
11850
|
+
/** Job name. */
|
|
11809
11851
|
public name: string;
|
|
11810
11852
|
|
|
11811
|
-
/**
|
|
11853
|
+
/** Job description. */
|
|
11812
11854
|
public description: string;
|
|
11813
11855
|
|
|
11814
|
-
/**
|
|
11815
|
-
public status: sesame.v1.jobs.JobStatus;
|
|
11816
|
-
|
|
11817
|
-
/** JobStatusResponse error. */
|
|
11856
|
+
/** Job error. */
|
|
11818
11857
|
public error?: (string|null);
|
|
11819
11858
|
|
|
11820
|
-
/**
|
|
11821
|
-
public progress: number;
|
|
11859
|
+
/** Job progress. */
|
|
11860
|
+
public progress: (number|Long);
|
|
11861
|
+
|
|
11862
|
+
/** Job total. */
|
|
11863
|
+
public total: (number|Long);
|
|
11864
|
+
|
|
11865
|
+
/** Job timingInfo. */
|
|
11866
|
+
public timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
|
|
11867
|
+
|
|
11868
|
+
/**
|
|
11869
|
+
* Creates a new Job instance using the specified properties.
|
|
11870
|
+
* @param [properties] Properties to set
|
|
11871
|
+
* @returns Job instance
|
|
11872
|
+
*/
|
|
11873
|
+
public static create(properties?: sesame.v1.jobs.IJob): sesame.v1.jobs.Job;
|
|
11874
|
+
|
|
11875
|
+
/**
|
|
11876
|
+
* Encodes the specified Job message. Does not implicitly {@link sesame.v1.jobs.Job.verify|verify} messages.
|
|
11877
|
+
* @param message Job message or plain object to encode
|
|
11878
|
+
* @param [writer] Writer to encode to
|
|
11879
|
+
* @returns Writer
|
|
11880
|
+
*/
|
|
11881
|
+
public static encode(message: sesame.v1.jobs.IJob, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11882
|
+
|
|
11883
|
+
/**
|
|
11884
|
+
* Encodes the specified Job message, length delimited. Does not implicitly {@link sesame.v1.jobs.Job.verify|verify} messages.
|
|
11885
|
+
* @param message Job message or plain object to encode
|
|
11886
|
+
* @param [writer] Writer to encode to
|
|
11887
|
+
* @returns Writer
|
|
11888
|
+
*/
|
|
11889
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJob, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11890
|
+
|
|
11891
|
+
/**
|
|
11892
|
+
* Decodes a Job message from the specified reader or buffer.
|
|
11893
|
+
* @param reader Reader or buffer to decode from
|
|
11894
|
+
* @param [length] Message length if known beforehand
|
|
11895
|
+
* @returns Job
|
|
11896
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11897
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11898
|
+
*/
|
|
11899
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.Job;
|
|
11900
|
+
|
|
11901
|
+
/**
|
|
11902
|
+
* Decodes a Job message from the specified reader or buffer, length delimited.
|
|
11903
|
+
* @param reader Reader or buffer to decode from
|
|
11904
|
+
* @returns Job
|
|
11905
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11906
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11907
|
+
*/
|
|
11908
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.Job;
|
|
11909
|
+
|
|
11910
|
+
/**
|
|
11911
|
+
* Verifies a Job message.
|
|
11912
|
+
* @param message Plain object to verify
|
|
11913
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11914
|
+
*/
|
|
11915
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11916
|
+
|
|
11917
|
+
/**
|
|
11918
|
+
* Creates a Job message from a plain object. Also converts values to their respective internal types.
|
|
11919
|
+
* @param object Plain object
|
|
11920
|
+
* @returns Job
|
|
11921
|
+
*/
|
|
11922
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.Job;
|
|
11923
|
+
|
|
11924
|
+
/**
|
|
11925
|
+
* Creates a plain object from a Job message. Also converts values to other types if specified.
|
|
11926
|
+
* @param message Job
|
|
11927
|
+
* @param [options] Conversion options
|
|
11928
|
+
* @returns Plain object
|
|
11929
|
+
*/
|
|
11930
|
+
public static toObject(message: sesame.v1.jobs.Job, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11931
|
+
|
|
11932
|
+
/**
|
|
11933
|
+
* Converts this Job to JSON.
|
|
11934
|
+
* @returns JSON object
|
|
11935
|
+
*/
|
|
11936
|
+
public toJSON(): { [k: string]: any };
|
|
11937
|
+
|
|
11938
|
+
/**
|
|
11939
|
+
* Gets the default type url for Job
|
|
11940
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11941
|
+
* @returns The default type url
|
|
11942
|
+
*/
|
|
11943
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11944
|
+
}
|
|
11945
|
+
|
|
11946
|
+
/** Properties of a JobList. */
|
|
11947
|
+
interface IJobList {
|
|
11948
|
+
|
|
11949
|
+
/** JobList jobs */
|
|
11950
|
+
jobs?: (sesame.v1.jobs.IJob[]|null);
|
|
11951
|
+
}
|
|
11952
|
+
|
|
11953
|
+
/** Represents a JobList. */
|
|
11954
|
+
class JobList implements IJobList {
|
|
11955
|
+
|
|
11956
|
+
/**
|
|
11957
|
+
* Constructs a new JobList.
|
|
11958
|
+
* @param [properties] Properties to set
|
|
11959
|
+
*/
|
|
11960
|
+
constructor(properties?: sesame.v1.jobs.IJobList);
|
|
11822
11961
|
|
|
11823
|
-
/**
|
|
11824
|
-
public
|
|
11962
|
+
/** JobList jobs. */
|
|
11963
|
+
public jobs: sesame.v1.jobs.IJob[];
|
|
11825
11964
|
|
|
11826
11965
|
/**
|
|
11827
|
-
* Creates a new
|
|
11966
|
+
* Creates a new JobList instance using the specified properties.
|
|
11828
11967
|
* @param [properties] Properties to set
|
|
11829
|
-
* @returns
|
|
11968
|
+
* @returns JobList instance
|
|
11830
11969
|
*/
|
|
11831
|
-
public static create(properties?: sesame.v1.jobs.
|
|
11970
|
+
public static create(properties?: sesame.v1.jobs.IJobList): sesame.v1.jobs.JobList;
|
|
11832
11971
|
|
|
11833
11972
|
/**
|
|
11834
|
-
* Encodes the specified
|
|
11835
|
-
* @param message
|
|
11973
|
+
* Encodes the specified JobList message. Does not implicitly {@link sesame.v1.jobs.JobList.verify|verify} messages.
|
|
11974
|
+
* @param message JobList message or plain object to encode
|
|
11836
11975
|
* @param [writer] Writer to encode to
|
|
11837
11976
|
* @returns Writer
|
|
11838
11977
|
*/
|
|
11839
|
-
public static encode(message: sesame.v1.jobs.
|
|
11978
|
+
public static encode(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11840
11979
|
|
|
11841
11980
|
/**
|
|
11842
|
-
* Encodes the specified
|
|
11843
|
-
* @param message
|
|
11981
|
+
* Encodes the specified JobList message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobList.verify|verify} messages.
|
|
11982
|
+
* @param message JobList message or plain object to encode
|
|
11844
11983
|
* @param [writer] Writer to encode to
|
|
11845
11984
|
* @returns Writer
|
|
11846
11985
|
*/
|
|
11847
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
11986
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11848
11987
|
|
|
11849
11988
|
/**
|
|
11850
|
-
* Decodes a
|
|
11989
|
+
* Decodes a JobList message from the specified reader or buffer.
|
|
11851
11990
|
* @param reader Reader or buffer to decode from
|
|
11852
11991
|
* @param [length] Message length if known beforehand
|
|
11853
|
-
* @returns
|
|
11992
|
+
* @returns JobList
|
|
11854
11993
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11855
11994
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11856
11995
|
*/
|
|
11857
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
11996
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobList;
|
|
11858
11997
|
|
|
11859
11998
|
/**
|
|
11860
|
-
* Decodes a
|
|
11999
|
+
* Decodes a JobList message from the specified reader or buffer, length delimited.
|
|
11861
12000
|
* @param reader Reader or buffer to decode from
|
|
11862
|
-
* @returns
|
|
12001
|
+
* @returns JobList
|
|
11863
12002
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11864
12003
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11865
12004
|
*/
|
|
11866
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12005
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobList;
|
|
11867
12006
|
|
|
11868
12007
|
/**
|
|
11869
|
-
* Verifies a
|
|
12008
|
+
* Verifies a JobList message.
|
|
11870
12009
|
* @param message Plain object to verify
|
|
11871
12010
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11872
12011
|
*/
|
|
11873
12012
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11874
12013
|
|
|
11875
12014
|
/**
|
|
11876
|
-
* Creates a
|
|
12015
|
+
* Creates a JobList message from a plain object. Also converts values to their respective internal types.
|
|
11877
12016
|
* @param object Plain object
|
|
11878
|
-
* @returns
|
|
12017
|
+
* @returns JobList
|
|
11879
12018
|
*/
|
|
11880
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12019
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobList;
|
|
11881
12020
|
|
|
11882
12021
|
/**
|
|
11883
|
-
* Creates a plain object from a
|
|
11884
|
-
* @param message
|
|
12022
|
+
* Creates a plain object from a JobList message. Also converts values to other types if specified.
|
|
12023
|
+
* @param message JobList
|
|
11885
12024
|
* @param [options] Conversion options
|
|
11886
12025
|
* @returns Plain object
|
|
11887
12026
|
*/
|
|
11888
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12027
|
+
public static toObject(message: sesame.v1.jobs.JobList, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11889
12028
|
|
|
11890
12029
|
/**
|
|
11891
|
-
* Converts this
|
|
12030
|
+
* Converts this JobList to JSON.
|
|
11892
12031
|
* @returns JSON object
|
|
11893
12032
|
*/
|
|
11894
12033
|
public toJSON(): { [k: string]: any };
|
|
11895
12034
|
|
|
11896
12035
|
/**
|
|
11897
|
-
* Gets the default type url for
|
|
12036
|
+
* Gets the default type url for JobList
|
|
11898
12037
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11899
12038
|
* @returns The default type url
|
|
11900
12039
|
*/
|
|
11901
12040
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11902
12041
|
}
|
|
11903
12042
|
|
|
11904
|
-
/** Properties of a
|
|
11905
|
-
interface
|
|
12043
|
+
/** Properties of a JobStartRequest. */
|
|
12044
|
+
interface IJobStartRequest {
|
|
12045
|
+
|
|
12046
|
+
/** JobStartRequest exportRequest */
|
|
12047
|
+
exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
|
|
11906
12048
|
|
|
11907
|
-
/**
|
|
11908
|
-
|
|
12049
|
+
/** JobStartRequest importRequest */
|
|
12050
|
+
importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
|
|
11909
12051
|
}
|
|
11910
12052
|
|
|
11911
|
-
/** Represents a
|
|
11912
|
-
class
|
|
12053
|
+
/** Represents a JobStartRequest. */
|
|
12054
|
+
class JobStartRequest implements IJobStartRequest {
|
|
11913
12055
|
|
|
11914
12056
|
/**
|
|
11915
|
-
* Constructs a new
|
|
12057
|
+
* Constructs a new JobStartRequest.
|
|
11916
12058
|
* @param [properties] Properties to set
|
|
11917
12059
|
*/
|
|
11918
|
-
constructor(properties?: sesame.v1.jobs.
|
|
12060
|
+
constructor(properties?: sesame.v1.jobs.IJobStartRequest);
|
|
12061
|
+
|
|
12062
|
+
/** JobStartRequest exportRequest. */
|
|
12063
|
+
public exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
|
|
12064
|
+
|
|
12065
|
+
/** JobStartRequest importRequest. */
|
|
12066
|
+
public importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
|
|
11919
12067
|
|
|
11920
|
-
/**
|
|
11921
|
-
public
|
|
12068
|
+
/** JobStartRequest config. */
|
|
12069
|
+
public config?: ("exportRequest"|"importRequest");
|
|
11922
12070
|
|
|
11923
12071
|
/**
|
|
11924
|
-
* Creates a new
|
|
12072
|
+
* Creates a new JobStartRequest instance using the specified properties.
|
|
11925
12073
|
* @param [properties] Properties to set
|
|
11926
|
-
* @returns
|
|
12074
|
+
* @returns JobStartRequest instance
|
|
11927
12075
|
*/
|
|
11928
|
-
public static create(properties?: sesame.v1.jobs.
|
|
12076
|
+
public static create(properties?: sesame.v1.jobs.IJobStartRequest): sesame.v1.jobs.JobStartRequest;
|
|
11929
12077
|
|
|
11930
12078
|
/**
|
|
11931
|
-
* Encodes the specified
|
|
11932
|
-
* @param message
|
|
12079
|
+
* Encodes the specified JobStartRequest message. Does not implicitly {@link sesame.v1.jobs.JobStartRequest.verify|verify} messages.
|
|
12080
|
+
* @param message JobStartRequest message or plain object to encode
|
|
11933
12081
|
* @param [writer] Writer to encode to
|
|
11934
12082
|
* @returns Writer
|
|
11935
12083
|
*/
|
|
11936
|
-
public static encode(message: sesame.v1.jobs.
|
|
12084
|
+
public static encode(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11937
12085
|
|
|
11938
12086
|
/**
|
|
11939
|
-
* Encodes the specified
|
|
11940
|
-
* @param message
|
|
12087
|
+
* Encodes the specified JobStartRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobStartRequest.verify|verify} messages.
|
|
12088
|
+
* @param message JobStartRequest message or plain object to encode
|
|
11941
12089
|
* @param [writer] Writer to encode to
|
|
11942
12090
|
* @returns Writer
|
|
11943
12091
|
*/
|
|
11944
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
12092
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11945
12093
|
|
|
11946
12094
|
/**
|
|
11947
|
-
* Decodes a
|
|
12095
|
+
* Decodes a JobStartRequest message from the specified reader or buffer.
|
|
11948
12096
|
* @param reader Reader or buffer to decode from
|
|
11949
12097
|
* @param [length] Message length if known beforehand
|
|
11950
|
-
* @returns
|
|
12098
|
+
* @returns JobStartRequest
|
|
11951
12099
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11952
12100
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11953
12101
|
*/
|
|
11954
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
12102
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobStartRequest;
|
|
11955
12103
|
|
|
11956
12104
|
/**
|
|
11957
|
-
* Decodes a
|
|
12105
|
+
* Decodes a JobStartRequest message from the specified reader or buffer, length delimited.
|
|
11958
12106
|
* @param reader Reader or buffer to decode from
|
|
11959
|
-
* @returns
|
|
12107
|
+
* @returns JobStartRequest
|
|
11960
12108
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11961
12109
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11962
12110
|
*/
|
|
11963
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12111
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobStartRequest;
|
|
11964
12112
|
|
|
11965
12113
|
/**
|
|
11966
|
-
* Verifies a
|
|
12114
|
+
* Verifies a JobStartRequest message.
|
|
11967
12115
|
* @param message Plain object to verify
|
|
11968
12116
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11969
12117
|
*/
|
|
11970
12118
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11971
12119
|
|
|
11972
12120
|
/**
|
|
11973
|
-
* Creates a
|
|
12121
|
+
* Creates a JobStartRequest message from a plain object. Also converts values to their respective internal types.
|
|
11974
12122
|
* @param object Plain object
|
|
11975
|
-
* @returns
|
|
12123
|
+
* @returns JobStartRequest
|
|
11976
12124
|
*/
|
|
11977
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12125
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStartRequest;
|
|
11978
12126
|
|
|
11979
12127
|
/**
|
|
11980
|
-
* Creates a plain object from a
|
|
11981
|
-
* @param message
|
|
12128
|
+
* Creates a plain object from a JobStartRequest message. Also converts values to other types if specified.
|
|
12129
|
+
* @param message JobStartRequest
|
|
11982
12130
|
* @param [options] Conversion options
|
|
11983
12131
|
* @returns Plain object
|
|
11984
12132
|
*/
|
|
11985
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12133
|
+
public static toObject(message: sesame.v1.jobs.JobStartRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11986
12134
|
|
|
11987
12135
|
/**
|
|
11988
|
-
* Converts this
|
|
12136
|
+
* Converts this JobStartRequest to JSON.
|
|
11989
12137
|
* @returns JSON object
|
|
11990
12138
|
*/
|
|
11991
12139
|
public toJSON(): { [k: string]: any };
|
|
11992
12140
|
|
|
11993
12141
|
/**
|
|
11994
|
-
* Gets the default type url for
|
|
12142
|
+
* Gets the default type url for JobStartRequest
|
|
11995
12143
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11996
12144
|
* @returns The default type url
|
|
11997
12145
|
*/
|
|
11998
12146
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11999
12147
|
}
|
|
12000
12148
|
|
|
12001
|
-
/** Properties of a
|
|
12002
|
-
interface
|
|
12149
|
+
/** Properties of a JobAbortRequest. */
|
|
12150
|
+
interface IJobAbortRequest {
|
|
12003
12151
|
|
|
12004
|
-
/**
|
|
12152
|
+
/** JobAbortRequest jobId */
|
|
12005
12153
|
jobId?: (number|null);
|
|
12154
|
+
}
|
|
12006
12155
|
|
|
12007
|
-
|
|
12008
|
-
|
|
12156
|
+
/** Represents a JobAbortRequest. */
|
|
12157
|
+
class JobAbortRequest implements IJobAbortRequest {
|
|
12009
12158
|
|
|
12010
|
-
/**
|
|
12011
|
-
|
|
12159
|
+
/**
|
|
12160
|
+
* Constructs a new JobAbortRequest.
|
|
12161
|
+
* @param [properties] Properties to set
|
|
12162
|
+
*/
|
|
12163
|
+
constructor(properties?: sesame.v1.jobs.IJobAbortRequest);
|
|
12012
12164
|
|
|
12013
|
-
/**
|
|
12014
|
-
|
|
12165
|
+
/** JobAbortRequest jobId. */
|
|
12166
|
+
public jobId: number;
|
|
12015
12167
|
|
|
12016
|
-
/**
|
|
12017
|
-
|
|
12168
|
+
/**
|
|
12169
|
+
* Creates a new JobAbortRequest instance using the specified properties.
|
|
12170
|
+
* @param [properties] Properties to set
|
|
12171
|
+
* @returns JobAbortRequest instance
|
|
12172
|
+
*/
|
|
12173
|
+
public static create(properties?: sesame.v1.jobs.IJobAbortRequest): sesame.v1.jobs.JobAbortRequest;
|
|
12018
12174
|
|
|
12019
|
-
/**
|
|
12020
|
-
|
|
12175
|
+
/**
|
|
12176
|
+
* Encodes the specified JobAbortRequest message. Does not implicitly {@link sesame.v1.jobs.JobAbortRequest.verify|verify} messages.
|
|
12177
|
+
* @param message JobAbortRequest message or plain object to encode
|
|
12178
|
+
* @param [writer] Writer to encode to
|
|
12179
|
+
* @returns Writer
|
|
12180
|
+
*/
|
|
12181
|
+
public static encode(message: sesame.v1.jobs.IJobAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12182
|
+
|
|
12183
|
+
/**
|
|
12184
|
+
* Encodes the specified JobAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobAbortRequest.verify|verify} messages.
|
|
12185
|
+
* @param message JobAbortRequest message or plain object to encode
|
|
12186
|
+
* @param [writer] Writer to encode to
|
|
12187
|
+
* @returns Writer
|
|
12188
|
+
*/
|
|
12189
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12190
|
+
|
|
12191
|
+
/**
|
|
12192
|
+
* Decodes a JobAbortRequest message from the specified reader or buffer.
|
|
12193
|
+
* @param reader Reader or buffer to decode from
|
|
12194
|
+
* @param [length] Message length if known beforehand
|
|
12195
|
+
* @returns JobAbortRequest
|
|
12196
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12197
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12198
|
+
*/
|
|
12199
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobAbortRequest;
|
|
12200
|
+
|
|
12201
|
+
/**
|
|
12202
|
+
* Decodes a JobAbortRequest message from the specified reader or buffer, length delimited.
|
|
12203
|
+
* @param reader Reader or buffer to decode from
|
|
12204
|
+
* @returns JobAbortRequest
|
|
12205
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12206
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12207
|
+
*/
|
|
12208
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobAbortRequest;
|
|
12209
|
+
|
|
12210
|
+
/**
|
|
12211
|
+
* Verifies a JobAbortRequest message.
|
|
12212
|
+
* @param message Plain object to verify
|
|
12213
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12214
|
+
*/
|
|
12215
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12216
|
+
|
|
12217
|
+
/**
|
|
12218
|
+
* Creates a JobAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
12219
|
+
* @param object Plain object
|
|
12220
|
+
* @returns JobAbortRequest
|
|
12221
|
+
*/
|
|
12222
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobAbortRequest;
|
|
12223
|
+
|
|
12224
|
+
/**
|
|
12225
|
+
* Creates a plain object from a JobAbortRequest message. Also converts values to other types if specified.
|
|
12226
|
+
* @param message JobAbortRequest
|
|
12227
|
+
* @param [options] Conversion options
|
|
12228
|
+
* @returns Plain object
|
|
12229
|
+
*/
|
|
12230
|
+
public static toObject(message: sesame.v1.jobs.JobAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12231
|
+
|
|
12232
|
+
/**
|
|
12233
|
+
* Converts this JobAbortRequest to JSON.
|
|
12234
|
+
* @returns JSON object
|
|
12235
|
+
*/
|
|
12236
|
+
public toJSON(): { [k: string]: any };
|
|
12237
|
+
|
|
12238
|
+
/**
|
|
12239
|
+
* Gets the default type url for JobAbortRequest
|
|
12240
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12241
|
+
* @returns The default type url
|
|
12242
|
+
*/
|
|
12243
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12244
|
+
}
|
|
12245
|
+
|
|
12246
|
+
/** Properties of a JobStatusRequest. */
|
|
12247
|
+
interface IJobStatusRequest {
|
|
12248
|
+
|
|
12249
|
+
/** JobStatusRequest jobId */
|
|
12250
|
+
jobId?: (number|null);
|
|
12021
12251
|
}
|
|
12022
12252
|
|
|
12023
|
-
/** Represents a
|
|
12024
|
-
class
|
|
12253
|
+
/** Represents a JobStatusRequest. */
|
|
12254
|
+
class JobStatusRequest implements IJobStatusRequest {
|
|
12025
12255
|
|
|
12026
12256
|
/**
|
|
12027
|
-
* Constructs a new
|
|
12257
|
+
* Constructs a new JobStatusRequest.
|
|
12028
12258
|
* @param [properties] Properties to set
|
|
12029
12259
|
*/
|
|
12030
|
-
constructor(properties?: sesame.v1.jobs.
|
|
12260
|
+
constructor(properties?: sesame.v1.jobs.IJobStatusRequest);
|
|
12031
12261
|
|
|
12032
|
-
/**
|
|
12262
|
+
/** JobStatusRequest jobId. */
|
|
12033
12263
|
public jobId: number;
|
|
12034
12264
|
|
|
12035
|
-
/**
|
|
12036
|
-
|
|
12265
|
+
/**
|
|
12266
|
+
* Creates a new JobStatusRequest instance using the specified properties.
|
|
12267
|
+
* @param [properties] Properties to set
|
|
12268
|
+
* @returns JobStatusRequest instance
|
|
12269
|
+
*/
|
|
12270
|
+
public static create(properties?: sesame.v1.jobs.IJobStatusRequest): sesame.v1.jobs.JobStatusRequest;
|
|
12037
12271
|
|
|
12038
|
-
/**
|
|
12039
|
-
|
|
12272
|
+
/**
|
|
12273
|
+
* Encodes the specified JobStatusRequest message. Does not implicitly {@link sesame.v1.jobs.JobStatusRequest.verify|verify} messages.
|
|
12274
|
+
* @param message JobStatusRequest message or plain object to encode
|
|
12275
|
+
* @param [writer] Writer to encode to
|
|
12276
|
+
* @returns Writer
|
|
12277
|
+
*/
|
|
12278
|
+
public static encode(message: sesame.v1.jobs.IJobStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12040
12279
|
|
|
12041
|
-
/**
|
|
12042
|
-
|
|
12280
|
+
/**
|
|
12281
|
+
* Encodes the specified JobStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobStatusRequest.verify|verify} messages.
|
|
12282
|
+
* @param message JobStatusRequest message or plain object to encode
|
|
12283
|
+
* @param [writer] Writer to encode to
|
|
12284
|
+
* @returns Writer
|
|
12285
|
+
*/
|
|
12286
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12043
12287
|
|
|
12044
|
-
/**
|
|
12045
|
-
|
|
12288
|
+
/**
|
|
12289
|
+
* Decodes a JobStatusRequest message from the specified reader or buffer.
|
|
12290
|
+
* @param reader Reader or buffer to decode from
|
|
12291
|
+
* @param [length] Message length if known beforehand
|
|
12292
|
+
* @returns JobStatusRequest
|
|
12293
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12294
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12295
|
+
*/
|
|
12296
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobStatusRequest;
|
|
12046
12297
|
|
|
12047
|
-
/**
|
|
12048
|
-
|
|
12298
|
+
/**
|
|
12299
|
+
* Decodes a JobStatusRequest message from the specified reader or buffer, length delimited.
|
|
12300
|
+
* @param reader Reader or buffer to decode from
|
|
12301
|
+
* @returns JobStatusRequest
|
|
12302
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12303
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12304
|
+
*/
|
|
12305
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobStatusRequest;
|
|
12306
|
+
|
|
12307
|
+
/**
|
|
12308
|
+
* Verifies a JobStatusRequest message.
|
|
12309
|
+
* @param message Plain object to verify
|
|
12310
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12311
|
+
*/
|
|
12312
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12313
|
+
|
|
12314
|
+
/**
|
|
12315
|
+
* Creates a JobStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
12316
|
+
* @param object Plain object
|
|
12317
|
+
* @returns JobStatusRequest
|
|
12318
|
+
*/
|
|
12319
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStatusRequest;
|
|
12320
|
+
|
|
12321
|
+
/**
|
|
12322
|
+
* Creates a plain object from a JobStatusRequest message. Also converts values to other types if specified.
|
|
12323
|
+
* @param message JobStatusRequest
|
|
12324
|
+
* @param [options] Conversion options
|
|
12325
|
+
* @returns Plain object
|
|
12326
|
+
*/
|
|
12327
|
+
public static toObject(message: sesame.v1.jobs.JobStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12328
|
+
|
|
12329
|
+
/**
|
|
12330
|
+
* Converts this JobStatusRequest to JSON.
|
|
12331
|
+
* @returns JSON object
|
|
12332
|
+
*/
|
|
12333
|
+
public toJSON(): { [k: string]: any };
|
|
12334
|
+
|
|
12335
|
+
/**
|
|
12336
|
+
* Gets the default type url for JobStatusRequest
|
|
12337
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12338
|
+
* @returns The default type url
|
|
12339
|
+
*/
|
|
12340
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12341
|
+
}
|
|
12342
|
+
|
|
12343
|
+
/** Properties of a JobListRequest. */
|
|
12344
|
+
interface IJobListRequest {
|
|
12345
|
+
}
|
|
12346
|
+
|
|
12347
|
+
/** Represents a JobListRequest. */
|
|
12348
|
+
class JobListRequest implements IJobListRequest {
|
|
12349
|
+
|
|
12350
|
+
/**
|
|
12351
|
+
* Constructs a new JobListRequest.
|
|
12352
|
+
* @param [properties] Properties to set
|
|
12353
|
+
*/
|
|
12354
|
+
constructor(properties?: sesame.v1.jobs.IJobListRequest);
|
|
12049
12355
|
|
|
12050
12356
|
/**
|
|
12051
|
-
* Creates a new
|
|
12357
|
+
* Creates a new JobListRequest instance using the specified properties.
|
|
12052
12358
|
* @param [properties] Properties to set
|
|
12053
|
-
* @returns
|
|
12359
|
+
* @returns JobListRequest instance
|
|
12054
12360
|
*/
|
|
12055
|
-
public static create(properties?: sesame.v1.jobs.
|
|
12361
|
+
public static create(properties?: sesame.v1.jobs.IJobListRequest): sesame.v1.jobs.JobListRequest;
|
|
12056
12362
|
|
|
12057
12363
|
/**
|
|
12058
|
-
* Encodes the specified
|
|
12059
|
-
* @param message
|
|
12364
|
+
* Encodes the specified JobListRequest message. Does not implicitly {@link sesame.v1.jobs.JobListRequest.verify|verify} messages.
|
|
12365
|
+
* @param message JobListRequest message or plain object to encode
|
|
12060
12366
|
* @param [writer] Writer to encode to
|
|
12061
12367
|
* @returns Writer
|
|
12062
12368
|
*/
|
|
12063
|
-
public static encode(message: sesame.v1.jobs.
|
|
12369
|
+
public static encode(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12064
12370
|
|
|
12065
12371
|
/**
|
|
12066
|
-
* Encodes the specified
|
|
12067
|
-
* @param message
|
|
12372
|
+
* Encodes the specified JobListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobListRequest.verify|verify} messages.
|
|
12373
|
+
* @param message JobListRequest message or plain object to encode
|
|
12068
12374
|
* @param [writer] Writer to encode to
|
|
12069
12375
|
* @returns Writer
|
|
12070
12376
|
*/
|
|
12071
|
-
public static encodeDelimited(message: sesame.v1.jobs.
|
|
12377
|
+
public static encodeDelimited(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12072
12378
|
|
|
12073
12379
|
/**
|
|
12074
|
-
* Decodes a
|
|
12380
|
+
* Decodes a JobListRequest message from the specified reader or buffer.
|
|
12075
12381
|
* @param reader Reader or buffer to decode from
|
|
12076
12382
|
* @param [length] Message length if known beforehand
|
|
12077
|
-
* @returns
|
|
12383
|
+
* @returns JobListRequest
|
|
12078
12384
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12079
12385
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12080
12386
|
*/
|
|
12081
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.
|
|
12387
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobListRequest;
|
|
12082
12388
|
|
|
12083
12389
|
/**
|
|
12084
|
-
* Decodes a
|
|
12390
|
+
* Decodes a JobListRequest message from the specified reader or buffer, length delimited.
|
|
12085
12391
|
* @param reader Reader or buffer to decode from
|
|
12086
|
-
* @returns
|
|
12392
|
+
* @returns JobListRequest
|
|
12087
12393
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12088
12394
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12089
12395
|
*/
|
|
12090
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.
|
|
12396
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobListRequest;
|
|
12091
12397
|
|
|
12092
12398
|
/**
|
|
12093
|
-
* Verifies a
|
|
12399
|
+
* Verifies a JobListRequest message.
|
|
12094
12400
|
* @param message Plain object to verify
|
|
12095
12401
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
12096
12402
|
*/
|
|
12097
12403
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
12098
12404
|
|
|
12099
12405
|
/**
|
|
12100
|
-
* Creates a
|
|
12406
|
+
* Creates a JobListRequest message from a plain object. Also converts values to their respective internal types.
|
|
12101
12407
|
* @param object Plain object
|
|
12102
|
-
* @returns
|
|
12408
|
+
* @returns JobListRequest
|
|
12103
12409
|
*/
|
|
12104
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.
|
|
12410
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobListRequest;
|
|
12105
12411
|
|
|
12106
12412
|
/**
|
|
12107
|
-
* Creates a plain object from a
|
|
12108
|
-
* @param message
|
|
12413
|
+
* Creates a plain object from a JobListRequest message. Also converts values to other types if specified.
|
|
12414
|
+
* @param message JobListRequest
|
|
12109
12415
|
* @param [options] Conversion options
|
|
12110
12416
|
* @returns Plain object
|
|
12111
12417
|
*/
|
|
12112
|
-
public static toObject(message: sesame.v1.jobs.
|
|
12418
|
+
public static toObject(message: sesame.v1.jobs.JobListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12113
12419
|
|
|
12114
12420
|
/**
|
|
12115
|
-
* Converts this
|
|
12421
|
+
* Converts this JobListRequest to JSON.
|
|
12116
12422
|
* @returns JSON object
|
|
12117
12423
|
*/
|
|
12118
12424
|
public toJSON(): { [k: string]: any };
|
|
12119
12425
|
|
|
12120
12426
|
/**
|
|
12121
|
-
* Gets the default type url for
|
|
12427
|
+
* Gets the default type url for JobListRequest
|
|
12122
12428
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12123
12429
|
* @returns The default type url
|
|
12124
12430
|
*/
|
|
@@ -12135,7 +12441,7 @@ export namespace sesame {
|
|
|
12135
12441
|
container?: (sesame.v1.jobs.ContainerFormat|null);
|
|
12136
12442
|
|
|
12137
12443
|
/** ExportConfiguration videoCodec */
|
|
12138
|
-
videoCodec?: (sesame.v1.common.
|
|
12444
|
+
videoCodec?: (sesame.v1.common.CodecType|null);
|
|
12139
12445
|
|
|
12140
12446
|
/** ExportConfiguration width */
|
|
12141
12447
|
width?: (number|null);
|
|
@@ -12186,7 +12492,7 @@ export namespace sesame {
|
|
|
12186
12492
|
fullRange?: (boolean|null);
|
|
12187
12493
|
|
|
12188
12494
|
/** ExportConfiguration audioCodec */
|
|
12189
|
-
audioCodec?: (sesame.v1.
|
|
12495
|
+
audioCodec?: (sesame.v1.common.CodecType|null);
|
|
12190
12496
|
|
|
12191
12497
|
/** ExportConfiguration audioBitrateKbps */
|
|
12192
12498
|
audioBitrateKbps?: (number|null);
|
|
@@ -12217,7 +12523,7 @@ export namespace sesame {
|
|
|
12217
12523
|
public container: sesame.v1.jobs.ContainerFormat;
|
|
12218
12524
|
|
|
12219
12525
|
/** ExportConfiguration videoCodec. */
|
|
12220
|
-
public videoCodec: sesame.v1.common.
|
|
12526
|
+
public videoCodec: sesame.v1.common.CodecType;
|
|
12221
12527
|
|
|
12222
12528
|
/** ExportConfiguration width. */
|
|
12223
12529
|
public width: number;
|
|
@@ -12268,7 +12574,7 @@ export namespace sesame {
|
|
|
12268
12574
|
public fullRange: boolean;
|
|
12269
12575
|
|
|
12270
12576
|
/** ExportConfiguration audioCodec. */
|
|
12271
|
-
public audioCodec: sesame.v1.
|
|
12577
|
+
public audioCodec: sesame.v1.common.CodecType;
|
|
12272
12578
|
|
|
12273
12579
|
/** ExportConfiguration audioBitrateKbps. */
|
|
12274
12580
|
public audioBitrateKbps: number;
|
|
@@ -12463,308 +12769,23 @@ export namespace sesame {
|
|
|
12463
12769
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12464
12770
|
}
|
|
12465
12771
|
|
|
12466
|
-
/** Properties of an
|
|
12467
|
-
interface
|
|
12772
|
+
/** Properties of an ImportConfiguration. */
|
|
12773
|
+
interface IImportConfiguration {
|
|
12468
12774
|
|
|
12469
|
-
/**
|
|
12470
|
-
|
|
12471
|
-
}
|
|
12775
|
+
/** ImportConfiguration srcFilename */
|
|
12776
|
+
srcFilename?: (string|null);
|
|
12472
12777
|
|
|
12473
|
-
|
|
12474
|
-
|
|
12778
|
+
/** ImportConfiguration audioRouting */
|
|
12779
|
+
audioRouting?: (number[]|null);
|
|
12475
12780
|
|
|
12476
|
-
/**
|
|
12477
|
-
|
|
12478
|
-
* @param [properties] Properties to set
|
|
12479
|
-
*/
|
|
12480
|
-
constructor(properties?: sesame.v1.jobs.IExportAbortRequest);
|
|
12781
|
+
/** ImportConfiguration dstRecorderId */
|
|
12782
|
+
dstRecorderId?: (string|null);
|
|
12481
12783
|
|
|
12482
|
-
/**
|
|
12483
|
-
|
|
12784
|
+
/** ImportConfiguration dstClipId */
|
|
12785
|
+
dstClipId?: (number|Long|null);
|
|
12484
12786
|
|
|
12485
|
-
/**
|
|
12486
|
-
|
|
12487
|
-
* @param [properties] Properties to set
|
|
12488
|
-
* @returns ExportAbortRequest instance
|
|
12489
|
-
*/
|
|
12490
|
-
public static create(properties?: sesame.v1.jobs.IExportAbortRequest): sesame.v1.jobs.ExportAbortRequest;
|
|
12491
|
-
|
|
12492
|
-
/**
|
|
12493
|
-
* Encodes the specified ExportAbortRequest message. Does not implicitly {@link sesame.v1.jobs.ExportAbortRequest.verify|verify} messages.
|
|
12494
|
-
* @param message ExportAbortRequest message or plain object to encode
|
|
12495
|
-
* @param [writer] Writer to encode to
|
|
12496
|
-
* @returns Writer
|
|
12497
|
-
*/
|
|
12498
|
-
public static encode(message: sesame.v1.jobs.IExportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12499
|
-
|
|
12500
|
-
/**
|
|
12501
|
-
* Encodes the specified ExportAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportAbortRequest.verify|verify} messages.
|
|
12502
|
-
* @param message ExportAbortRequest message or plain object to encode
|
|
12503
|
-
* @param [writer] Writer to encode to
|
|
12504
|
-
* @returns Writer
|
|
12505
|
-
*/
|
|
12506
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12507
|
-
|
|
12508
|
-
/**
|
|
12509
|
-
* Decodes an ExportAbortRequest message from the specified reader or buffer.
|
|
12510
|
-
* @param reader Reader or buffer to decode from
|
|
12511
|
-
* @param [length] Message length if known beforehand
|
|
12512
|
-
* @returns ExportAbortRequest
|
|
12513
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12514
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12515
|
-
*/
|
|
12516
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportAbortRequest;
|
|
12517
|
-
|
|
12518
|
-
/**
|
|
12519
|
-
* Decodes an ExportAbortRequest message from the specified reader or buffer, length delimited.
|
|
12520
|
-
* @param reader Reader or buffer to decode from
|
|
12521
|
-
* @returns ExportAbortRequest
|
|
12522
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12523
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12524
|
-
*/
|
|
12525
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportAbortRequest;
|
|
12526
|
-
|
|
12527
|
-
/**
|
|
12528
|
-
* Verifies an ExportAbortRequest message.
|
|
12529
|
-
* @param message Plain object to verify
|
|
12530
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12531
|
-
*/
|
|
12532
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12533
|
-
|
|
12534
|
-
/**
|
|
12535
|
-
* Creates an ExportAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
12536
|
-
* @param object Plain object
|
|
12537
|
-
* @returns ExportAbortRequest
|
|
12538
|
-
*/
|
|
12539
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportAbortRequest;
|
|
12540
|
-
|
|
12541
|
-
/**
|
|
12542
|
-
* Creates a plain object from an ExportAbortRequest message. Also converts values to other types if specified.
|
|
12543
|
-
* @param message ExportAbortRequest
|
|
12544
|
-
* @param [options] Conversion options
|
|
12545
|
-
* @returns Plain object
|
|
12546
|
-
*/
|
|
12547
|
-
public static toObject(message: sesame.v1.jobs.ExportAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12548
|
-
|
|
12549
|
-
/**
|
|
12550
|
-
* Converts this ExportAbortRequest to JSON.
|
|
12551
|
-
* @returns JSON object
|
|
12552
|
-
*/
|
|
12553
|
-
public toJSON(): { [k: string]: any };
|
|
12554
|
-
|
|
12555
|
-
/**
|
|
12556
|
-
* Gets the default type url for ExportAbortRequest
|
|
12557
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12558
|
-
* @returns The default type url
|
|
12559
|
-
*/
|
|
12560
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12561
|
-
}
|
|
12562
|
-
|
|
12563
|
-
/** Properties of an ExportStatusRequest. */
|
|
12564
|
-
interface IExportStatusRequest {
|
|
12565
|
-
|
|
12566
|
-
/** ExportStatusRequest jobId */
|
|
12567
|
-
jobId?: (number|null);
|
|
12568
|
-
}
|
|
12569
|
-
|
|
12570
|
-
/** Represents an ExportStatusRequest. */
|
|
12571
|
-
class ExportStatusRequest implements IExportStatusRequest {
|
|
12572
|
-
|
|
12573
|
-
/**
|
|
12574
|
-
* Constructs a new ExportStatusRequest.
|
|
12575
|
-
* @param [properties] Properties to set
|
|
12576
|
-
*/
|
|
12577
|
-
constructor(properties?: sesame.v1.jobs.IExportStatusRequest);
|
|
12578
|
-
|
|
12579
|
-
/** ExportStatusRequest jobId. */
|
|
12580
|
-
public jobId: number;
|
|
12581
|
-
|
|
12582
|
-
/**
|
|
12583
|
-
* Creates a new ExportStatusRequest instance using the specified properties.
|
|
12584
|
-
* @param [properties] Properties to set
|
|
12585
|
-
* @returns ExportStatusRequest instance
|
|
12586
|
-
*/
|
|
12587
|
-
public static create(properties?: sesame.v1.jobs.IExportStatusRequest): sesame.v1.jobs.ExportStatusRequest;
|
|
12588
|
-
|
|
12589
|
-
/**
|
|
12590
|
-
* Encodes the specified ExportStatusRequest message. Does not implicitly {@link sesame.v1.jobs.ExportStatusRequest.verify|verify} messages.
|
|
12591
|
-
* @param message ExportStatusRequest message or plain object to encode
|
|
12592
|
-
* @param [writer] Writer to encode to
|
|
12593
|
-
* @returns Writer
|
|
12594
|
-
*/
|
|
12595
|
-
public static encode(message: sesame.v1.jobs.IExportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12596
|
-
|
|
12597
|
-
/**
|
|
12598
|
-
* Encodes the specified ExportStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportStatusRequest.verify|verify} messages.
|
|
12599
|
-
* @param message ExportStatusRequest message or plain object to encode
|
|
12600
|
-
* @param [writer] Writer to encode to
|
|
12601
|
-
* @returns Writer
|
|
12602
|
-
*/
|
|
12603
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12604
|
-
|
|
12605
|
-
/**
|
|
12606
|
-
* Decodes an ExportStatusRequest message from the specified reader or buffer.
|
|
12607
|
-
* @param reader Reader or buffer to decode from
|
|
12608
|
-
* @param [length] Message length if known beforehand
|
|
12609
|
-
* @returns ExportStatusRequest
|
|
12610
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12611
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12612
|
-
*/
|
|
12613
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportStatusRequest;
|
|
12614
|
-
|
|
12615
|
-
/**
|
|
12616
|
-
* Decodes an ExportStatusRequest message from the specified reader or buffer, length delimited.
|
|
12617
|
-
* @param reader Reader or buffer to decode from
|
|
12618
|
-
* @returns ExportStatusRequest
|
|
12619
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12620
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12621
|
-
*/
|
|
12622
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportStatusRequest;
|
|
12623
|
-
|
|
12624
|
-
/**
|
|
12625
|
-
* Verifies an ExportStatusRequest message.
|
|
12626
|
-
* @param message Plain object to verify
|
|
12627
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12628
|
-
*/
|
|
12629
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12630
|
-
|
|
12631
|
-
/**
|
|
12632
|
-
* Creates an ExportStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
12633
|
-
* @param object Plain object
|
|
12634
|
-
* @returns ExportStatusRequest
|
|
12635
|
-
*/
|
|
12636
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportStatusRequest;
|
|
12637
|
-
|
|
12638
|
-
/**
|
|
12639
|
-
* Creates a plain object from an ExportStatusRequest message. Also converts values to other types if specified.
|
|
12640
|
-
* @param message ExportStatusRequest
|
|
12641
|
-
* @param [options] Conversion options
|
|
12642
|
-
* @returns Plain object
|
|
12643
|
-
*/
|
|
12644
|
-
public static toObject(message: sesame.v1.jobs.ExportStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12645
|
-
|
|
12646
|
-
/**
|
|
12647
|
-
* Converts this ExportStatusRequest to JSON.
|
|
12648
|
-
* @returns JSON object
|
|
12649
|
-
*/
|
|
12650
|
-
public toJSON(): { [k: string]: any };
|
|
12651
|
-
|
|
12652
|
-
/**
|
|
12653
|
-
* Gets the default type url for ExportStatusRequest
|
|
12654
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12655
|
-
* @returns The default type url
|
|
12656
|
-
*/
|
|
12657
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12658
|
-
}
|
|
12659
|
-
|
|
12660
|
-
/** Properties of an ExportListRequest. */
|
|
12661
|
-
interface IExportListRequest {
|
|
12662
|
-
}
|
|
12663
|
-
|
|
12664
|
-
/** Represents an ExportListRequest. */
|
|
12665
|
-
class ExportListRequest implements IExportListRequest {
|
|
12666
|
-
|
|
12667
|
-
/**
|
|
12668
|
-
* Constructs a new ExportListRequest.
|
|
12669
|
-
* @param [properties] Properties to set
|
|
12670
|
-
*/
|
|
12671
|
-
constructor(properties?: sesame.v1.jobs.IExportListRequest);
|
|
12672
|
-
|
|
12673
|
-
/**
|
|
12674
|
-
* Creates a new ExportListRequest instance using the specified properties.
|
|
12675
|
-
* @param [properties] Properties to set
|
|
12676
|
-
* @returns ExportListRequest instance
|
|
12677
|
-
*/
|
|
12678
|
-
public static create(properties?: sesame.v1.jobs.IExportListRequest): sesame.v1.jobs.ExportListRequest;
|
|
12679
|
-
|
|
12680
|
-
/**
|
|
12681
|
-
* Encodes the specified ExportListRequest message. Does not implicitly {@link sesame.v1.jobs.ExportListRequest.verify|verify} messages.
|
|
12682
|
-
* @param message ExportListRequest message or plain object to encode
|
|
12683
|
-
* @param [writer] Writer to encode to
|
|
12684
|
-
* @returns Writer
|
|
12685
|
-
*/
|
|
12686
|
-
public static encode(message: sesame.v1.jobs.IExportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12687
|
-
|
|
12688
|
-
/**
|
|
12689
|
-
* Encodes the specified ExportListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ExportListRequest.verify|verify} messages.
|
|
12690
|
-
* @param message ExportListRequest message or plain object to encode
|
|
12691
|
-
* @param [writer] Writer to encode to
|
|
12692
|
-
* @returns Writer
|
|
12693
|
-
*/
|
|
12694
|
-
public static encodeDelimited(message: sesame.v1.jobs.IExportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12695
|
-
|
|
12696
|
-
/**
|
|
12697
|
-
* Decodes an ExportListRequest message from the specified reader or buffer.
|
|
12698
|
-
* @param reader Reader or buffer to decode from
|
|
12699
|
-
* @param [length] Message length if known beforehand
|
|
12700
|
-
* @returns ExportListRequest
|
|
12701
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12702
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12703
|
-
*/
|
|
12704
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ExportListRequest;
|
|
12705
|
-
|
|
12706
|
-
/**
|
|
12707
|
-
* Decodes an ExportListRequest message from the specified reader or buffer, length delimited.
|
|
12708
|
-
* @param reader Reader or buffer to decode from
|
|
12709
|
-
* @returns ExportListRequest
|
|
12710
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12711
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12712
|
-
*/
|
|
12713
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ExportListRequest;
|
|
12714
|
-
|
|
12715
|
-
/**
|
|
12716
|
-
* Verifies an ExportListRequest message.
|
|
12717
|
-
* @param message Plain object to verify
|
|
12718
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
12719
|
-
*/
|
|
12720
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
12721
|
-
|
|
12722
|
-
/**
|
|
12723
|
-
* Creates an ExportListRequest message from a plain object. Also converts values to their respective internal types.
|
|
12724
|
-
* @param object Plain object
|
|
12725
|
-
* @returns ExportListRequest
|
|
12726
|
-
*/
|
|
12727
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ExportListRequest;
|
|
12728
|
-
|
|
12729
|
-
/**
|
|
12730
|
-
* Creates a plain object from an ExportListRequest message. Also converts values to other types if specified.
|
|
12731
|
-
* @param message ExportListRequest
|
|
12732
|
-
* @param [options] Conversion options
|
|
12733
|
-
* @returns Plain object
|
|
12734
|
-
*/
|
|
12735
|
-
public static toObject(message: sesame.v1.jobs.ExportListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12736
|
-
|
|
12737
|
-
/**
|
|
12738
|
-
* Converts this ExportListRequest to JSON.
|
|
12739
|
-
* @returns JSON object
|
|
12740
|
-
*/
|
|
12741
|
-
public toJSON(): { [k: string]: any };
|
|
12742
|
-
|
|
12743
|
-
/**
|
|
12744
|
-
* Gets the default type url for ExportListRequest
|
|
12745
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12746
|
-
* @returns The default type url
|
|
12747
|
-
*/
|
|
12748
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12749
|
-
}
|
|
12750
|
-
|
|
12751
|
-
/** Properties of an ImportConfiguration. */
|
|
12752
|
-
interface IImportConfiguration {
|
|
12753
|
-
|
|
12754
|
-
/** ImportConfiguration srcFilename */
|
|
12755
|
-
srcFilename?: (string|null);
|
|
12756
|
-
|
|
12757
|
-
/** ImportConfiguration audioRouting */
|
|
12758
|
-
audioRouting?: (number[]|null);
|
|
12759
|
-
|
|
12760
|
-
/** ImportConfiguration dstRecorderId */
|
|
12761
|
-
dstRecorderId?: (string|null);
|
|
12762
|
-
|
|
12763
|
-
/** ImportConfiguration dstClipId */
|
|
12764
|
-
dstClipId?: (number|Long|null);
|
|
12765
|
-
|
|
12766
|
-
/** ImportConfiguration dstClipName */
|
|
12767
|
-
dstClipName?: (string|null);
|
|
12787
|
+
/** ImportConfiguration dstClipName */
|
|
12788
|
+
dstClipName?: (string|null);
|
|
12768
12789
|
|
|
12769
12790
|
/** ImportConfiguration dstClipUserData */
|
|
12770
12791
|
dstClipUserData?: (string|null);
|
|
@@ -12971,291 +12992,6 @@ export namespace sesame {
|
|
|
12971
12992
|
*/
|
|
12972
12993
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12973
12994
|
}
|
|
12974
|
-
|
|
12975
|
-
/** Properties of an ImportAbortRequest. */
|
|
12976
|
-
interface IImportAbortRequest {
|
|
12977
|
-
|
|
12978
|
-
/** ImportAbortRequest jobId */
|
|
12979
|
-
jobId?: (number|null);
|
|
12980
|
-
}
|
|
12981
|
-
|
|
12982
|
-
/** Represents an ImportAbortRequest. */
|
|
12983
|
-
class ImportAbortRequest implements IImportAbortRequest {
|
|
12984
|
-
|
|
12985
|
-
/**
|
|
12986
|
-
* Constructs a new ImportAbortRequest.
|
|
12987
|
-
* @param [properties] Properties to set
|
|
12988
|
-
*/
|
|
12989
|
-
constructor(properties?: sesame.v1.jobs.IImportAbortRequest);
|
|
12990
|
-
|
|
12991
|
-
/** ImportAbortRequest jobId. */
|
|
12992
|
-
public jobId: number;
|
|
12993
|
-
|
|
12994
|
-
/**
|
|
12995
|
-
* Creates a new ImportAbortRequest instance using the specified properties.
|
|
12996
|
-
* @param [properties] Properties to set
|
|
12997
|
-
* @returns ImportAbortRequest instance
|
|
12998
|
-
*/
|
|
12999
|
-
public static create(properties?: sesame.v1.jobs.IImportAbortRequest): sesame.v1.jobs.ImportAbortRequest;
|
|
13000
|
-
|
|
13001
|
-
/**
|
|
13002
|
-
* Encodes the specified ImportAbortRequest message. Does not implicitly {@link sesame.v1.jobs.ImportAbortRequest.verify|verify} messages.
|
|
13003
|
-
* @param message ImportAbortRequest message or plain object to encode
|
|
13004
|
-
* @param [writer] Writer to encode to
|
|
13005
|
-
* @returns Writer
|
|
13006
|
-
*/
|
|
13007
|
-
public static encode(message: sesame.v1.jobs.IImportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13008
|
-
|
|
13009
|
-
/**
|
|
13010
|
-
* Encodes the specified ImportAbortRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportAbortRequest.verify|verify} messages.
|
|
13011
|
-
* @param message ImportAbortRequest message or plain object to encode
|
|
13012
|
-
* @param [writer] Writer to encode to
|
|
13013
|
-
* @returns Writer
|
|
13014
|
-
*/
|
|
13015
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportAbortRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13016
|
-
|
|
13017
|
-
/**
|
|
13018
|
-
* Decodes an ImportAbortRequest message from the specified reader or buffer.
|
|
13019
|
-
* @param reader Reader or buffer to decode from
|
|
13020
|
-
* @param [length] Message length if known beforehand
|
|
13021
|
-
* @returns ImportAbortRequest
|
|
13022
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13023
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13024
|
-
*/
|
|
13025
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportAbortRequest;
|
|
13026
|
-
|
|
13027
|
-
/**
|
|
13028
|
-
* Decodes an ImportAbortRequest message from the specified reader or buffer, length delimited.
|
|
13029
|
-
* @param reader Reader or buffer to decode from
|
|
13030
|
-
* @returns ImportAbortRequest
|
|
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 decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportAbortRequest;
|
|
13035
|
-
|
|
13036
|
-
/**
|
|
13037
|
-
* Verifies an ImportAbortRequest message.
|
|
13038
|
-
* @param message Plain object to verify
|
|
13039
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13040
|
-
*/
|
|
13041
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13042
|
-
|
|
13043
|
-
/**
|
|
13044
|
-
* Creates an ImportAbortRequest message from a plain object. Also converts values to their respective internal types.
|
|
13045
|
-
* @param object Plain object
|
|
13046
|
-
* @returns ImportAbortRequest
|
|
13047
|
-
*/
|
|
13048
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportAbortRequest;
|
|
13049
|
-
|
|
13050
|
-
/**
|
|
13051
|
-
* Creates a plain object from an ImportAbortRequest message. Also converts values to other types if specified.
|
|
13052
|
-
* @param message ImportAbortRequest
|
|
13053
|
-
* @param [options] Conversion options
|
|
13054
|
-
* @returns Plain object
|
|
13055
|
-
*/
|
|
13056
|
-
public static toObject(message: sesame.v1.jobs.ImportAbortRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13057
|
-
|
|
13058
|
-
/**
|
|
13059
|
-
* Converts this ImportAbortRequest to JSON.
|
|
13060
|
-
* @returns JSON object
|
|
13061
|
-
*/
|
|
13062
|
-
public toJSON(): { [k: string]: any };
|
|
13063
|
-
|
|
13064
|
-
/**
|
|
13065
|
-
* Gets the default type url for ImportAbortRequest
|
|
13066
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13067
|
-
* @returns The default type url
|
|
13068
|
-
*/
|
|
13069
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13070
|
-
}
|
|
13071
|
-
|
|
13072
|
-
/** Properties of an ImportStatusRequest. */
|
|
13073
|
-
interface IImportStatusRequest {
|
|
13074
|
-
|
|
13075
|
-
/** ImportStatusRequest jobId */
|
|
13076
|
-
jobId?: (number|null);
|
|
13077
|
-
}
|
|
13078
|
-
|
|
13079
|
-
/** Represents an ImportStatusRequest. */
|
|
13080
|
-
class ImportStatusRequest implements IImportStatusRequest {
|
|
13081
|
-
|
|
13082
|
-
/**
|
|
13083
|
-
* Constructs a new ImportStatusRequest.
|
|
13084
|
-
* @param [properties] Properties to set
|
|
13085
|
-
*/
|
|
13086
|
-
constructor(properties?: sesame.v1.jobs.IImportStatusRequest);
|
|
13087
|
-
|
|
13088
|
-
/** ImportStatusRequest jobId. */
|
|
13089
|
-
public jobId: number;
|
|
13090
|
-
|
|
13091
|
-
/**
|
|
13092
|
-
* Creates a new ImportStatusRequest instance using the specified properties.
|
|
13093
|
-
* @param [properties] Properties to set
|
|
13094
|
-
* @returns ImportStatusRequest instance
|
|
13095
|
-
*/
|
|
13096
|
-
public static create(properties?: sesame.v1.jobs.IImportStatusRequest): sesame.v1.jobs.ImportStatusRequest;
|
|
13097
|
-
|
|
13098
|
-
/**
|
|
13099
|
-
* Encodes the specified ImportStatusRequest message. Does not implicitly {@link sesame.v1.jobs.ImportStatusRequest.verify|verify} messages.
|
|
13100
|
-
* @param message ImportStatusRequest message or plain object to encode
|
|
13101
|
-
* @param [writer] Writer to encode to
|
|
13102
|
-
* @returns Writer
|
|
13103
|
-
*/
|
|
13104
|
-
public static encode(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13105
|
-
|
|
13106
|
-
/**
|
|
13107
|
-
* Encodes the specified ImportStatusRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportStatusRequest.verify|verify} messages.
|
|
13108
|
-
* @param message ImportStatusRequest message or plain object to encode
|
|
13109
|
-
* @param [writer] Writer to encode to
|
|
13110
|
-
* @returns Writer
|
|
13111
|
-
*/
|
|
13112
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13113
|
-
|
|
13114
|
-
/**
|
|
13115
|
-
* Decodes an ImportStatusRequest message from the specified reader or buffer.
|
|
13116
|
-
* @param reader Reader or buffer to decode from
|
|
13117
|
-
* @param [length] Message length if known beforehand
|
|
13118
|
-
* @returns ImportStatusRequest
|
|
13119
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13120
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13121
|
-
*/
|
|
13122
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportStatusRequest;
|
|
13123
|
-
|
|
13124
|
-
/**
|
|
13125
|
-
* Decodes an ImportStatusRequest message from the specified reader or buffer, length delimited.
|
|
13126
|
-
* @param reader Reader or buffer to decode from
|
|
13127
|
-
* @returns ImportStatusRequest
|
|
13128
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13129
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13130
|
-
*/
|
|
13131
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportStatusRequest;
|
|
13132
|
-
|
|
13133
|
-
/**
|
|
13134
|
-
* Verifies an ImportStatusRequest message.
|
|
13135
|
-
* @param message Plain object to verify
|
|
13136
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13137
|
-
*/
|
|
13138
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13139
|
-
|
|
13140
|
-
/**
|
|
13141
|
-
* Creates an ImportStatusRequest message from a plain object. Also converts values to their respective internal types.
|
|
13142
|
-
* @param object Plain object
|
|
13143
|
-
* @returns ImportStatusRequest
|
|
13144
|
-
*/
|
|
13145
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportStatusRequest;
|
|
13146
|
-
|
|
13147
|
-
/**
|
|
13148
|
-
* Creates a plain object from an ImportStatusRequest message. Also converts values to other types if specified.
|
|
13149
|
-
* @param message ImportStatusRequest
|
|
13150
|
-
* @param [options] Conversion options
|
|
13151
|
-
* @returns Plain object
|
|
13152
|
-
*/
|
|
13153
|
-
public static toObject(message: sesame.v1.jobs.ImportStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13154
|
-
|
|
13155
|
-
/**
|
|
13156
|
-
* Converts this ImportStatusRequest to JSON.
|
|
13157
|
-
* @returns JSON object
|
|
13158
|
-
*/
|
|
13159
|
-
public toJSON(): { [k: string]: any };
|
|
13160
|
-
|
|
13161
|
-
/**
|
|
13162
|
-
* Gets the default type url for ImportStatusRequest
|
|
13163
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13164
|
-
* @returns The default type url
|
|
13165
|
-
*/
|
|
13166
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13167
|
-
}
|
|
13168
|
-
|
|
13169
|
-
/** Properties of an ImportListRequest. */
|
|
13170
|
-
interface IImportListRequest {
|
|
13171
|
-
}
|
|
13172
|
-
|
|
13173
|
-
/** Represents an ImportListRequest. */
|
|
13174
|
-
class ImportListRequest implements IImportListRequest {
|
|
13175
|
-
|
|
13176
|
-
/**
|
|
13177
|
-
* Constructs a new ImportListRequest.
|
|
13178
|
-
* @param [properties] Properties to set
|
|
13179
|
-
*/
|
|
13180
|
-
constructor(properties?: sesame.v1.jobs.IImportListRequest);
|
|
13181
|
-
|
|
13182
|
-
/**
|
|
13183
|
-
* Creates a new ImportListRequest instance using the specified properties.
|
|
13184
|
-
* @param [properties] Properties to set
|
|
13185
|
-
* @returns ImportListRequest instance
|
|
13186
|
-
*/
|
|
13187
|
-
public static create(properties?: sesame.v1.jobs.IImportListRequest): sesame.v1.jobs.ImportListRequest;
|
|
13188
|
-
|
|
13189
|
-
/**
|
|
13190
|
-
* Encodes the specified ImportListRequest message. Does not implicitly {@link sesame.v1.jobs.ImportListRequest.verify|verify} messages.
|
|
13191
|
-
* @param message ImportListRequest message or plain object to encode
|
|
13192
|
-
* @param [writer] Writer to encode to
|
|
13193
|
-
* @returns Writer
|
|
13194
|
-
*/
|
|
13195
|
-
public static encode(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13196
|
-
|
|
13197
|
-
/**
|
|
13198
|
-
* Encodes the specified ImportListRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportListRequest.verify|verify} messages.
|
|
13199
|
-
* @param message ImportListRequest message or plain object to encode
|
|
13200
|
-
* @param [writer] Writer to encode to
|
|
13201
|
-
* @returns Writer
|
|
13202
|
-
*/
|
|
13203
|
-
public static encodeDelimited(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13204
|
-
|
|
13205
|
-
/**
|
|
13206
|
-
* Decodes an ImportListRequest message from the specified reader or buffer.
|
|
13207
|
-
* @param reader Reader or buffer to decode from
|
|
13208
|
-
* @param [length] Message length if known beforehand
|
|
13209
|
-
* @returns ImportListRequest
|
|
13210
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13211
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13212
|
-
*/
|
|
13213
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportListRequest;
|
|
13214
|
-
|
|
13215
|
-
/**
|
|
13216
|
-
* Decodes an ImportListRequest message from the specified reader or buffer, length delimited.
|
|
13217
|
-
* @param reader Reader or buffer to decode from
|
|
13218
|
-
* @returns ImportListRequest
|
|
13219
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13220
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13221
|
-
*/
|
|
13222
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportListRequest;
|
|
13223
|
-
|
|
13224
|
-
/**
|
|
13225
|
-
* Verifies an ImportListRequest message.
|
|
13226
|
-
* @param message Plain object to verify
|
|
13227
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
13228
|
-
*/
|
|
13229
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
13230
|
-
|
|
13231
|
-
/**
|
|
13232
|
-
* Creates an ImportListRequest message from a plain object. Also converts values to their respective internal types.
|
|
13233
|
-
* @param object Plain object
|
|
13234
|
-
* @returns ImportListRequest
|
|
13235
|
-
*/
|
|
13236
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportListRequest;
|
|
13237
|
-
|
|
13238
|
-
/**
|
|
13239
|
-
* Creates a plain object from an ImportListRequest message. Also converts values to other types if specified.
|
|
13240
|
-
* @param message ImportListRequest
|
|
13241
|
-
* @param [options] Conversion options
|
|
13242
|
-
* @returns Plain object
|
|
13243
|
-
*/
|
|
13244
|
-
public static toObject(message: sesame.v1.jobs.ImportListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13245
|
-
|
|
13246
|
-
/**
|
|
13247
|
-
* Converts this ImportListRequest to JSON.
|
|
13248
|
-
* @returns JSON object
|
|
13249
|
-
*/
|
|
13250
|
-
public toJSON(): { [k: string]: any };
|
|
13251
|
-
|
|
13252
|
-
/**
|
|
13253
|
-
* Gets the default type url for ImportListRequest
|
|
13254
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13255
|
-
* @returns The default type url
|
|
13256
|
-
*/
|
|
13257
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13258
|
-
}
|
|
13259
12995
|
}
|
|
13260
12996
|
|
|
13261
12997
|
/** Namespace rpc. */
|
|
@@ -13805,116 +13541,60 @@ export namespace sesame {
|
|
|
13805
13541
|
public requestRecorderOperation(request: sesame.v1.recorder.IRecorderRequest): Promise<sesame.v1.recorder.RecorderResponse>;
|
|
13806
13542
|
|
|
13807
13543
|
/**
|
|
13808
|
-
* Calls
|
|
13809
|
-
* @param request
|
|
13810
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13544
|
+
* Calls StartJob.
|
|
13545
|
+
* @param request JobStartRequest message or plain object
|
|
13546
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13811
13547
|
*/
|
|
13812
|
-
public
|
|
13548
|
+
public startJob(request: sesame.v1.jobs.IJobStartRequest, callback: sesame.v1.rpc.SesameAPIService.StartJobCallback): void;
|
|
13813
13549
|
|
|
13814
13550
|
/**
|
|
13815
|
-
* Calls
|
|
13816
|
-
* @param request
|
|
13551
|
+
* Calls StartJob.
|
|
13552
|
+
* @param request JobStartRequest message or plain object
|
|
13817
13553
|
* @returns Promise
|
|
13818
13554
|
*/
|
|
13819
|
-
public
|
|
13555
|
+
public startJob(request: sesame.v1.jobs.IJobStartRequest): Promise<sesame.v1.jobs.Job>;
|
|
13820
13556
|
|
|
13821
13557
|
/**
|
|
13822
|
-
* Calls
|
|
13823
|
-
* @param request
|
|
13824
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13558
|
+
* Calls AbortJob.
|
|
13559
|
+
* @param request JobAbortRequest message or plain object
|
|
13560
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13825
13561
|
*/
|
|
13826
|
-
public
|
|
13562
|
+
public abortJob(request: sesame.v1.jobs.IJobAbortRequest, callback: sesame.v1.rpc.SesameAPIService.AbortJobCallback): void;
|
|
13827
13563
|
|
|
13828
13564
|
/**
|
|
13829
|
-
* Calls
|
|
13830
|
-
* @param request
|
|
13565
|
+
* Calls AbortJob.
|
|
13566
|
+
* @param request JobAbortRequest message or plain object
|
|
13831
13567
|
* @returns Promise
|
|
13832
13568
|
*/
|
|
13833
|
-
public
|
|
13569
|
+
public abortJob(request: sesame.v1.jobs.IJobAbortRequest): Promise<sesame.v1.jobs.Job>;
|
|
13834
13570
|
|
|
13835
13571
|
/**
|
|
13836
|
-
* Calls
|
|
13837
|
-
* @param request
|
|
13838
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13572
|
+
* Calls GetJobStatus.
|
|
13573
|
+
* @param request JobStatusRequest message or plain object
|
|
13574
|
+
* @param callback Node-style callback called with the error, if any, and Job
|
|
13839
13575
|
*/
|
|
13840
|
-
public
|
|
13576
|
+
public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest, callback: sesame.v1.rpc.SesameAPIService.GetJobStatusCallback): void;
|
|
13841
13577
|
|
|
13842
13578
|
/**
|
|
13843
|
-
* Calls
|
|
13844
|
-
* @param request
|
|
13579
|
+
* Calls GetJobStatus.
|
|
13580
|
+
* @param request JobStatusRequest message or plain object
|
|
13845
13581
|
* @returns Promise
|
|
13846
13582
|
*/
|
|
13847
|
-
public
|
|
13583
|
+
public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest): Promise<sesame.v1.jobs.Job>;
|
|
13848
13584
|
|
|
13849
13585
|
/**
|
|
13850
|
-
* Calls
|
|
13851
|
-
* @param request
|
|
13852
|
-
* @param callback Node-style callback called with the error, if any, and
|
|
13586
|
+
* Calls ListJobs.
|
|
13587
|
+
* @param request JobListRequest message or plain object
|
|
13588
|
+
* @param callback Node-style callback called with the error, if any, and JobList
|
|
13853
13589
|
*/
|
|
13854
|
-
public
|
|
13590
|
+
public listJobs(request: sesame.v1.jobs.IJobListRequest, callback: sesame.v1.rpc.SesameAPIService.ListJobsCallback): void;
|
|
13855
13591
|
|
|
13856
13592
|
/**
|
|
13857
|
-
* Calls
|
|
13858
|
-
* @param request
|
|
13593
|
+
* Calls ListJobs.
|
|
13594
|
+
* @param request JobListRequest message or plain object
|
|
13859
13595
|
* @returns Promise
|
|
13860
13596
|
*/
|
|
13861
|
-
public
|
|
13862
|
-
|
|
13863
|
-
/**
|
|
13864
|
-
* Calls RequestClipImportStart.
|
|
13865
|
-
* @param request ImportStartRequest message or plain object
|
|
13866
|
-
* @param callback Node-style callback called with the error, if any, and JobStatusResponse
|
|
13867
|
-
*/
|
|
13868
|
-
public requestClipImportStart(request: sesame.v1.jobs.IImportStartRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportStartCallback): void;
|
|
13869
|
-
|
|
13870
|
-
/**
|
|
13871
|
-
* Calls RequestClipImportStart.
|
|
13872
|
-
* @param request ImportStartRequest message or plain object
|
|
13873
|
-
* @returns Promise
|
|
13874
|
-
*/
|
|
13875
|
-
public requestClipImportStart(request: sesame.v1.jobs.IImportStartRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13876
|
-
|
|
13877
|
-
/**
|
|
13878
|
-
* Calls RequestClipImportAbort.
|
|
13879
|
-
* @param request ImportAbortRequest message or plain object
|
|
13880
|
-
* @param callback Node-style callback called with the error, if any, and JobStatusResponse
|
|
13881
|
-
*/
|
|
13882
|
-
public requestClipImportAbort(request: sesame.v1.jobs.IImportAbortRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportAbortCallback): void;
|
|
13883
|
-
|
|
13884
|
-
/**
|
|
13885
|
-
* Calls RequestClipImportAbort.
|
|
13886
|
-
* @param request ImportAbortRequest message or plain object
|
|
13887
|
-
* @returns Promise
|
|
13888
|
-
*/
|
|
13889
|
-
public requestClipImportAbort(request: sesame.v1.jobs.IImportAbortRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13890
|
-
|
|
13891
|
-
/**
|
|
13892
|
-
* Calls RequestClipImportStatus.
|
|
13893
|
-
* @param request ImportStatusRequest message or plain object
|
|
13894
|
-
* @param callback Node-style callback called with the error, if any, and JobStatusResponse
|
|
13895
|
-
*/
|
|
13896
|
-
public requestClipImportStatus(request: sesame.v1.jobs.IImportStatusRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportStatusCallback): void;
|
|
13897
|
-
|
|
13898
|
-
/**
|
|
13899
|
-
* Calls RequestClipImportStatus.
|
|
13900
|
-
* @param request ImportStatusRequest message or plain object
|
|
13901
|
-
* @returns Promise
|
|
13902
|
-
*/
|
|
13903
|
-
public requestClipImportStatus(request: sesame.v1.jobs.IImportStatusRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
|
|
13904
|
-
|
|
13905
|
-
/**
|
|
13906
|
-
* Calls RequestClipImportList.
|
|
13907
|
-
* @param request ImportListRequest message or plain object
|
|
13908
|
-
* @param callback Node-style callback called with the error, if any, and JobListResponse
|
|
13909
|
-
*/
|
|
13910
|
-
public requestClipImportList(request: sesame.v1.jobs.IImportListRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportListCallback): void;
|
|
13911
|
-
|
|
13912
|
-
/**
|
|
13913
|
-
* Calls RequestClipImportList.
|
|
13914
|
-
* @param request ImportListRequest message or plain object
|
|
13915
|
-
* @returns Promise
|
|
13916
|
-
*/
|
|
13917
|
-
public requestClipImportList(request: sesame.v1.jobs.IImportListRequest): Promise<sesame.v1.jobs.JobListResponse>;
|
|
13597
|
+
public listJobs(request: sesame.v1.jobs.IJobListRequest): Promise<sesame.v1.jobs.JobList>;
|
|
13918
13598
|
|
|
13919
13599
|
/**
|
|
13920
13600
|
* Calls RequestKeyframe.
|
|
@@ -13990,74 +13670,433 @@ export namespace sesame {
|
|
|
13990
13670
|
type RequestRecorderOperationCallback = (error: (Error|null), response?: sesame.v1.recorder.RecorderResponse) => void;
|
|
13991
13671
|
|
|
13992
13672
|
/**
|
|
13993
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13673
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#startJob}.
|
|
13994
13674
|
* @param error Error, if any
|
|
13995
|
-
* @param [response]
|
|
13675
|
+
* @param [response] Job
|
|
13996
13676
|
*/
|
|
13997
|
-
type
|
|
13677
|
+
type StartJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
13998
13678
|
|
|
13999
13679
|
/**
|
|
14000
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13680
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#abortJob}.
|
|
14001
13681
|
* @param error Error, if any
|
|
14002
|
-
* @param [response]
|
|
13682
|
+
* @param [response] Job
|
|
14003
13683
|
*/
|
|
14004
|
-
type
|
|
13684
|
+
type AbortJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
14005
13685
|
|
|
14006
13686
|
/**
|
|
14007
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13687
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#getJobStatus}.
|
|
14008
13688
|
* @param error Error, if any
|
|
14009
|
-
* @param [response]
|
|
13689
|
+
* @param [response] Job
|
|
14010
13690
|
*/
|
|
14011
|
-
type
|
|
13691
|
+
type GetJobStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
|
|
14012
13692
|
|
|
14013
13693
|
/**
|
|
14014
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13694
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#listJobs}.
|
|
14015
13695
|
* @param error Error, if any
|
|
14016
|
-
* @param [response]
|
|
13696
|
+
* @param [response] JobList
|
|
14017
13697
|
*/
|
|
14018
|
-
type
|
|
13698
|
+
type ListJobsCallback = (error: (Error|null), response?: sesame.v1.jobs.JobList) => void;
|
|
14019
13699
|
|
|
14020
13700
|
/**
|
|
14021
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13701
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestKeyframe}.
|
|
14022
13702
|
* @param error Error, if any
|
|
14023
|
-
* @param [response]
|
|
13703
|
+
* @param [response] Empty
|
|
14024
13704
|
*/
|
|
14025
|
-
type
|
|
13705
|
+
type RequestKeyframeCallback = (error: (Error|null), response?: sesame.v1.common.Empty) => void;
|
|
14026
13706
|
|
|
14027
13707
|
/**
|
|
14028
|
-
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#
|
|
13708
|
+
* Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestIODeviceList}.
|
|
14029
13709
|
* @param error Error, if any
|
|
14030
|
-
* @param [response]
|
|
13710
|
+
* @param [response] IODeviceListResponse
|
|
14031
13711
|
*/
|
|
14032
|
-
type
|
|
13712
|
+
type RequestIODeviceListCallback = (error: (Error|null), response?: sesame.v1.status.IODeviceListResponse) => void;
|
|
13713
|
+
}
|
|
13714
|
+
}
|
|
13715
|
+
|
|
13716
|
+
/** Namespace wire. */
|
|
13717
|
+
namespace wire {
|
|
13718
|
+
|
|
13719
|
+
/** FrameType enum. */
|
|
13720
|
+
enum FrameType {
|
|
13721
|
+
FRAME_TYPE_UNSPECIFIED = 0,
|
|
13722
|
+
FRAME_TYPE_RPC = 1,
|
|
13723
|
+
FRAME_TYPE_VIDEO = 2,
|
|
13724
|
+
FRAME_TYPE_AUDIO = 3,
|
|
13725
|
+
FRAME_TYPE_MUXED = 4,
|
|
13726
|
+
FRAME_TYPE_DECODER_DATA = 5,
|
|
13727
|
+
FRAME_TYPE_DATA = 6
|
|
13728
|
+
}
|
|
13729
|
+
|
|
13730
|
+
/** Properties of a MediaCodecData. */
|
|
13731
|
+
interface IMediaCodecData {
|
|
13732
|
+
|
|
13733
|
+
/** MediaCodecData codecType */
|
|
13734
|
+
codecType?: (sesame.v1.common.CodecType|null);
|
|
13735
|
+
|
|
13736
|
+
/** MediaCodecData sampleRate */
|
|
13737
|
+
sampleRate?: (number|null);
|
|
13738
|
+
|
|
13739
|
+
/** MediaCodecData timebaseNum */
|
|
13740
|
+
timebaseNum?: (number|null);
|
|
13741
|
+
|
|
13742
|
+
/** MediaCodecData timebaseDen */
|
|
13743
|
+
timebaseDen?: (number|null);
|
|
13744
|
+
|
|
13745
|
+
/** MediaCodecData codecProfile */
|
|
13746
|
+
codecProfile?: (number|null);
|
|
13747
|
+
|
|
13748
|
+
/** MediaCodecData codecLevel */
|
|
13749
|
+
codecLevel?: (number|null);
|
|
13750
|
+
|
|
13751
|
+
/** MediaCodecData width */
|
|
13752
|
+
width?: (number|null);
|
|
13753
|
+
|
|
13754
|
+
/** MediaCodecData height */
|
|
13755
|
+
height?: (number|null);
|
|
13756
|
+
|
|
13757
|
+
/** MediaCodecData channels */
|
|
13758
|
+
channels?: (number|null);
|
|
13759
|
+
|
|
13760
|
+
/** MediaCodecData bitDepth */
|
|
13761
|
+
bitDepth?: (number|null);
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
/** Represents a MediaCodecData. */
|
|
13765
|
+
class MediaCodecData implements IMediaCodecData {
|
|
14033
13766
|
|
|
14034
13767
|
/**
|
|
14035
|
-
*
|
|
14036
|
-
* @param
|
|
14037
|
-
|
|
13768
|
+
* Constructs a new MediaCodecData.
|
|
13769
|
+
* @param [properties] Properties to set
|
|
13770
|
+
*/
|
|
13771
|
+
constructor(properties?: sesame.v1.wire.IMediaCodecData);
|
|
13772
|
+
|
|
13773
|
+
/** MediaCodecData codecType. */
|
|
13774
|
+
public codecType: sesame.v1.common.CodecType;
|
|
13775
|
+
|
|
13776
|
+
/** MediaCodecData sampleRate. */
|
|
13777
|
+
public sampleRate: number;
|
|
13778
|
+
|
|
13779
|
+
/** MediaCodecData timebaseNum. */
|
|
13780
|
+
public timebaseNum: number;
|
|
13781
|
+
|
|
13782
|
+
/** MediaCodecData timebaseDen. */
|
|
13783
|
+
public timebaseDen: number;
|
|
13784
|
+
|
|
13785
|
+
/** MediaCodecData codecProfile. */
|
|
13786
|
+
public codecProfile: number;
|
|
13787
|
+
|
|
13788
|
+
/** MediaCodecData codecLevel. */
|
|
13789
|
+
public codecLevel: number;
|
|
13790
|
+
|
|
13791
|
+
/** MediaCodecData width. */
|
|
13792
|
+
public width: number;
|
|
13793
|
+
|
|
13794
|
+
/** MediaCodecData height. */
|
|
13795
|
+
public height: number;
|
|
13796
|
+
|
|
13797
|
+
/** MediaCodecData channels. */
|
|
13798
|
+
public channels: number;
|
|
13799
|
+
|
|
13800
|
+
/** MediaCodecData bitDepth. */
|
|
13801
|
+
public bitDepth: number;
|
|
13802
|
+
|
|
13803
|
+
/**
|
|
13804
|
+
* Creates a new MediaCodecData instance using the specified properties.
|
|
13805
|
+
* @param [properties] Properties to set
|
|
13806
|
+
* @returns MediaCodecData instance
|
|
14038
13807
|
*/
|
|
14039
|
-
|
|
13808
|
+
public static create(properties?: sesame.v1.wire.IMediaCodecData): sesame.v1.wire.MediaCodecData;
|
|
14040
13809
|
|
|
14041
13810
|
/**
|
|
14042
|
-
*
|
|
14043
|
-
* @param
|
|
14044
|
-
* @param [
|
|
13811
|
+
* Encodes the specified MediaCodecData message. Does not implicitly {@link sesame.v1.wire.MediaCodecData.verify|verify} messages.
|
|
13812
|
+
* @param message MediaCodecData message or plain object to encode
|
|
13813
|
+
* @param [writer] Writer to encode to
|
|
13814
|
+
* @returns Writer
|
|
14045
13815
|
*/
|
|
14046
|
-
|
|
13816
|
+
public static encode(message: sesame.v1.wire.IMediaCodecData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14047
13817
|
|
|
14048
13818
|
/**
|
|
14049
|
-
*
|
|
14050
|
-
* @param
|
|
14051
|
-
* @param [
|
|
13819
|
+
* Encodes the specified MediaCodecData message, length delimited. Does not implicitly {@link sesame.v1.wire.MediaCodecData.verify|verify} messages.
|
|
13820
|
+
* @param message MediaCodecData message or plain object to encode
|
|
13821
|
+
* @param [writer] Writer to encode to
|
|
13822
|
+
* @returns Writer
|
|
14052
13823
|
*/
|
|
14053
|
-
|
|
13824
|
+
public static encodeDelimited(message: sesame.v1.wire.IMediaCodecData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14054
13825
|
|
|
14055
13826
|
/**
|
|
14056
|
-
*
|
|
14057
|
-
* @param
|
|
14058
|
-
* @param [
|
|
13827
|
+
* Decodes a MediaCodecData message from the specified reader or buffer.
|
|
13828
|
+
* @param reader Reader or buffer to decode from
|
|
13829
|
+
* @param [length] Message length if known beforehand
|
|
13830
|
+
* @returns MediaCodecData
|
|
13831
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13832
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14059
13833
|
*/
|
|
14060
|
-
|
|
13834
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.wire.MediaCodecData;
|
|
13835
|
+
|
|
13836
|
+
/**
|
|
13837
|
+
* Decodes a MediaCodecData message from the specified reader or buffer, length delimited.
|
|
13838
|
+
* @param reader Reader or buffer to decode from
|
|
13839
|
+
* @returns MediaCodecData
|
|
13840
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13841
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13842
|
+
*/
|
|
13843
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.wire.MediaCodecData;
|
|
13844
|
+
|
|
13845
|
+
/**
|
|
13846
|
+
* Verifies a MediaCodecData message.
|
|
13847
|
+
* @param message Plain object to verify
|
|
13848
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13849
|
+
*/
|
|
13850
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13851
|
+
|
|
13852
|
+
/**
|
|
13853
|
+
* Creates a MediaCodecData message from a plain object. Also converts values to their respective internal types.
|
|
13854
|
+
* @param object Plain object
|
|
13855
|
+
* @returns MediaCodecData
|
|
13856
|
+
*/
|
|
13857
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.wire.MediaCodecData;
|
|
13858
|
+
|
|
13859
|
+
/**
|
|
13860
|
+
* Creates a plain object from a MediaCodecData message. Also converts values to other types if specified.
|
|
13861
|
+
* @param message MediaCodecData
|
|
13862
|
+
* @param [options] Conversion options
|
|
13863
|
+
* @returns Plain object
|
|
13864
|
+
*/
|
|
13865
|
+
public static toObject(message: sesame.v1.wire.MediaCodecData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13866
|
+
|
|
13867
|
+
/**
|
|
13868
|
+
* Converts this MediaCodecData to JSON.
|
|
13869
|
+
* @returns JSON object
|
|
13870
|
+
*/
|
|
13871
|
+
public toJSON(): { [k: string]: any };
|
|
13872
|
+
|
|
13873
|
+
/**
|
|
13874
|
+
* Gets the default type url for MediaCodecData
|
|
13875
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13876
|
+
* @returns The default type url
|
|
13877
|
+
*/
|
|
13878
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13879
|
+
}
|
|
13880
|
+
|
|
13881
|
+
/** Properties of a MediaFrameData. */
|
|
13882
|
+
interface IMediaFrameData {
|
|
13883
|
+
|
|
13884
|
+
/** MediaFrameData pts */
|
|
13885
|
+
pts?: (number|Long|null);
|
|
13886
|
+
|
|
13887
|
+
/** MediaFrameData keyframe */
|
|
13888
|
+
keyframe?: (boolean|null);
|
|
13889
|
+
|
|
13890
|
+
/** MediaFrameData codecData */
|
|
13891
|
+
codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
13892
|
+
}
|
|
13893
|
+
|
|
13894
|
+
/** Represents a MediaFrameData. */
|
|
13895
|
+
class MediaFrameData implements IMediaFrameData {
|
|
13896
|
+
|
|
13897
|
+
/**
|
|
13898
|
+
* Constructs a new MediaFrameData.
|
|
13899
|
+
* @param [properties] Properties to set
|
|
13900
|
+
*/
|
|
13901
|
+
constructor(properties?: sesame.v1.wire.IMediaFrameData);
|
|
13902
|
+
|
|
13903
|
+
/** MediaFrameData pts. */
|
|
13904
|
+
public pts: (number|Long);
|
|
13905
|
+
|
|
13906
|
+
/** MediaFrameData keyframe. */
|
|
13907
|
+
public keyframe: boolean;
|
|
13908
|
+
|
|
13909
|
+
/** MediaFrameData codecData. */
|
|
13910
|
+
public codecData?: (sesame.v1.wire.IMediaCodecData|null);
|
|
13911
|
+
|
|
13912
|
+
/**
|
|
13913
|
+
* Creates a new MediaFrameData instance using the specified properties.
|
|
13914
|
+
* @param [properties] Properties to set
|
|
13915
|
+
* @returns MediaFrameData instance
|
|
13916
|
+
*/
|
|
13917
|
+
public static create(properties?: sesame.v1.wire.IMediaFrameData): sesame.v1.wire.MediaFrameData;
|
|
13918
|
+
|
|
13919
|
+
/**
|
|
13920
|
+
* Encodes the specified MediaFrameData message. Does not implicitly {@link sesame.v1.wire.MediaFrameData.verify|verify} messages.
|
|
13921
|
+
* @param message MediaFrameData message or plain object to encode
|
|
13922
|
+
* @param [writer] Writer to encode to
|
|
13923
|
+
* @returns Writer
|
|
13924
|
+
*/
|
|
13925
|
+
public static encode(message: sesame.v1.wire.IMediaFrameData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13926
|
+
|
|
13927
|
+
/**
|
|
13928
|
+
* Encodes the specified MediaFrameData message, length delimited. Does not implicitly {@link sesame.v1.wire.MediaFrameData.verify|verify} messages.
|
|
13929
|
+
* @param message MediaFrameData message or plain object to encode
|
|
13930
|
+
* @param [writer] Writer to encode to
|
|
13931
|
+
* @returns Writer
|
|
13932
|
+
*/
|
|
13933
|
+
public static encodeDelimited(message: sesame.v1.wire.IMediaFrameData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13934
|
+
|
|
13935
|
+
/**
|
|
13936
|
+
* Decodes a MediaFrameData message from the specified reader or buffer.
|
|
13937
|
+
* @param reader Reader or buffer to decode from
|
|
13938
|
+
* @param [length] Message length if known beforehand
|
|
13939
|
+
* @returns MediaFrameData
|
|
13940
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13941
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13942
|
+
*/
|
|
13943
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.wire.MediaFrameData;
|
|
13944
|
+
|
|
13945
|
+
/**
|
|
13946
|
+
* Decodes a MediaFrameData message from the specified reader or buffer, length delimited.
|
|
13947
|
+
* @param reader Reader or buffer to decode from
|
|
13948
|
+
* @returns MediaFrameData
|
|
13949
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13950
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13951
|
+
*/
|
|
13952
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.wire.MediaFrameData;
|
|
13953
|
+
|
|
13954
|
+
/**
|
|
13955
|
+
* Verifies a MediaFrameData message.
|
|
13956
|
+
* @param message Plain object to verify
|
|
13957
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13958
|
+
*/
|
|
13959
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13960
|
+
|
|
13961
|
+
/**
|
|
13962
|
+
* Creates a MediaFrameData message from a plain object. Also converts values to their respective internal types.
|
|
13963
|
+
* @param object Plain object
|
|
13964
|
+
* @returns MediaFrameData
|
|
13965
|
+
*/
|
|
13966
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.wire.MediaFrameData;
|
|
13967
|
+
|
|
13968
|
+
/**
|
|
13969
|
+
* Creates a plain object from a MediaFrameData message. Also converts values to other types if specified.
|
|
13970
|
+
* @param message MediaFrameData
|
|
13971
|
+
* @param [options] Conversion options
|
|
13972
|
+
* @returns Plain object
|
|
13973
|
+
*/
|
|
13974
|
+
public static toObject(message: sesame.v1.wire.MediaFrameData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
13975
|
+
|
|
13976
|
+
/**
|
|
13977
|
+
* Converts this MediaFrameData to JSON.
|
|
13978
|
+
* @returns JSON object
|
|
13979
|
+
*/
|
|
13980
|
+
public toJSON(): { [k: string]: any };
|
|
13981
|
+
|
|
13982
|
+
/**
|
|
13983
|
+
* Gets the default type url for MediaFrameData
|
|
13984
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
13985
|
+
* @returns The default type url
|
|
13986
|
+
*/
|
|
13987
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13990
|
+
/** Properties of a FrameHeader. */
|
|
13991
|
+
interface IFrameHeader {
|
|
13992
|
+
|
|
13993
|
+
/** FrameHeader type */
|
|
13994
|
+
type?: (sesame.v1.wire.FrameType|null);
|
|
13995
|
+
|
|
13996
|
+
/** FrameHeader routingMetadata */
|
|
13997
|
+
routingMetadata?: (string|null);
|
|
13998
|
+
|
|
13999
|
+
/** FrameHeader media */
|
|
14000
|
+
media?: (sesame.v1.wire.IMediaFrameData|null);
|
|
14001
|
+
}
|
|
14002
|
+
|
|
14003
|
+
/** Represents a FrameHeader. */
|
|
14004
|
+
class FrameHeader implements IFrameHeader {
|
|
14005
|
+
|
|
14006
|
+
/**
|
|
14007
|
+
* Constructs a new FrameHeader.
|
|
14008
|
+
* @param [properties] Properties to set
|
|
14009
|
+
*/
|
|
14010
|
+
constructor(properties?: sesame.v1.wire.IFrameHeader);
|
|
14011
|
+
|
|
14012
|
+
/** FrameHeader type. */
|
|
14013
|
+
public type: sesame.v1.wire.FrameType;
|
|
14014
|
+
|
|
14015
|
+
/** FrameHeader routingMetadata. */
|
|
14016
|
+
public routingMetadata: string;
|
|
14017
|
+
|
|
14018
|
+
/** FrameHeader media. */
|
|
14019
|
+
public media?: (sesame.v1.wire.IMediaFrameData|null);
|
|
14020
|
+
|
|
14021
|
+
/** FrameHeader typeData. */
|
|
14022
|
+
public typeData?: "media";
|
|
14023
|
+
|
|
14024
|
+
/**
|
|
14025
|
+
* Creates a new FrameHeader instance using the specified properties.
|
|
14026
|
+
* @param [properties] Properties to set
|
|
14027
|
+
* @returns FrameHeader instance
|
|
14028
|
+
*/
|
|
14029
|
+
public static create(properties?: sesame.v1.wire.IFrameHeader): sesame.v1.wire.FrameHeader;
|
|
14030
|
+
|
|
14031
|
+
/**
|
|
14032
|
+
* Encodes the specified FrameHeader message. Does not implicitly {@link sesame.v1.wire.FrameHeader.verify|verify} messages.
|
|
14033
|
+
* @param message FrameHeader message or plain object to encode
|
|
14034
|
+
* @param [writer] Writer to encode to
|
|
14035
|
+
* @returns Writer
|
|
14036
|
+
*/
|
|
14037
|
+
public static encode(message: sesame.v1.wire.IFrameHeader, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14038
|
+
|
|
14039
|
+
/**
|
|
14040
|
+
* Encodes the specified FrameHeader message, length delimited. Does not implicitly {@link sesame.v1.wire.FrameHeader.verify|verify} messages.
|
|
14041
|
+
* @param message FrameHeader message or plain object to encode
|
|
14042
|
+
* @param [writer] Writer to encode to
|
|
14043
|
+
* @returns Writer
|
|
14044
|
+
*/
|
|
14045
|
+
public static encodeDelimited(message: sesame.v1.wire.IFrameHeader, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
14046
|
+
|
|
14047
|
+
/**
|
|
14048
|
+
* Decodes a FrameHeader message from the specified reader or buffer.
|
|
14049
|
+
* @param reader Reader or buffer to decode from
|
|
14050
|
+
* @param [length] Message length if known beforehand
|
|
14051
|
+
* @returns FrameHeader
|
|
14052
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14053
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14054
|
+
*/
|
|
14055
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.wire.FrameHeader;
|
|
14056
|
+
|
|
14057
|
+
/**
|
|
14058
|
+
* Decodes a FrameHeader message from the specified reader or buffer, length delimited.
|
|
14059
|
+
* @param reader Reader or buffer to decode from
|
|
14060
|
+
* @returns FrameHeader
|
|
14061
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
14062
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
14063
|
+
*/
|
|
14064
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.wire.FrameHeader;
|
|
14065
|
+
|
|
14066
|
+
/**
|
|
14067
|
+
* Verifies a FrameHeader message.
|
|
14068
|
+
* @param message Plain object to verify
|
|
14069
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
14070
|
+
*/
|
|
14071
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
14072
|
+
|
|
14073
|
+
/**
|
|
14074
|
+
* Creates a FrameHeader message from a plain object. Also converts values to their respective internal types.
|
|
14075
|
+
* @param object Plain object
|
|
14076
|
+
* @returns FrameHeader
|
|
14077
|
+
*/
|
|
14078
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.wire.FrameHeader;
|
|
14079
|
+
|
|
14080
|
+
/**
|
|
14081
|
+
* Creates a plain object from a FrameHeader message. Also converts values to other types if specified.
|
|
14082
|
+
* @param message FrameHeader
|
|
14083
|
+
* @param [options] Conversion options
|
|
14084
|
+
* @returns Plain object
|
|
14085
|
+
*/
|
|
14086
|
+
public static toObject(message: sesame.v1.wire.FrameHeader, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
14087
|
+
|
|
14088
|
+
/**
|
|
14089
|
+
* Converts this FrameHeader to JSON.
|
|
14090
|
+
* @returns JSON object
|
|
14091
|
+
*/
|
|
14092
|
+
public toJSON(): { [k: string]: any };
|
|
14093
|
+
|
|
14094
|
+
/**
|
|
14095
|
+
* Gets the default type url for FrameHeader
|
|
14096
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
14097
|
+
* @returns The default type url
|
|
14098
|
+
*/
|
|
14099
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
14061
14100
|
}
|
|
14062
14101
|
}
|
|
14063
14102
|
}
|