@stinkycomputing/sesame-api-client 1.4.1-beta.1 → 1.4.1-beta.11

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.
@@ -1929,15 +1929,20 @@ export namespace sesame {
1929
1929
  VIDEO_FORMAT_1080_60P = 4
1930
1930
  }
1931
1931
 
1932
- /** CodecId enum. */
1933
- enum CodecId {
1934
- CODEC_ID_UNSPECIFIED = 0,
1935
- CODEC_ID_H264 = 1,
1936
- CODEC_ID_HEVC = 2,
1937
- CODEC_ID_AV1 = 3,
1938
- CODEC_ID_VP8 = 4,
1939
- CODEC_ID_PRORES = 5,
1940
- CODEC_ID_DNXHR = 6
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?: (string|null);
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: string;
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
- EVENT_TOPIC_PLAYLIST_EXPORT = 4,
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 decoderType */
3251
- decoderType?: (sesame.v1.sources.DecoderType|null);
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 decoderType. */
3267
- public decoderType: sesame.v1.sources.DecoderType;
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 userTimeMs */
5442
- userTimeMs?: (number|Long|null);
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 userTimeMs. */
5479
- public userTimeMs: (number|Long);
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 playlistExportEvent */
8908
- playlistExportEvent?: (sesame.v1.jobs.IJobEvent|null);
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 playlistExportEvent. */
8936
- public playlistExportEvent?: (sesame.v1.jobs.IJobEvent|null);
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"|"playlistExportEvent"|"clipImportEvent"|"recorderEvent");
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 codecId */
9163
- codecId?: (sesame.v1.common.CodecId|null);
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 codecId. */
9194
- public codecId: sesame.v1.common.CodecId;
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 JobStatusResponse. */
11772
- interface IJobStatusResponse {
11801
+ /** Properties of a Job. */
11802
+ interface IJob {
11773
11803
 
11774
- /** JobStatusResponse jobId */
11775
- jobId?: (number|null);
11804
+ /** Job id */
11805
+ id?: (number|null);
11776
11806
 
11777
- /** JobStatusResponse name */
11807
+ /** Job type */
11808
+ type?: (sesame.v1.jobs.JobType|null);
11809
+
11810
+ /** Job status */
11811
+ status?: (sesame.v1.jobs.JobStatus|null);
11812
+
11813
+ /** Job name */
11778
11814
  name?: (string|null);
11779
11815
 
11780
- /** JobStatusResponse description */
11816
+ /** Job description */
11781
11817
  description?: (string|null);
11782
11818
 
11783
- /** JobStatusResponse status */
11784
- status?: (sesame.v1.jobs.JobStatus|null);
11785
-
11786
- /** JobStatusResponse error */
11819
+ /** Job error */
11787
11820
  error?: (string|null);
11788
11821
 
11789
- /** JobStatusResponse progress */
11790
- progress?: (number|null);
11822
+ /** Job progress */
11823
+ progress?: (number|Long|null);
11824
+
11825
+ /** Job total */
11826
+ total?: (number|Long|null);
11791
11827
 
11792
- /** JobStatusResponse total */
11793
- total?: (number|null);
11828
+ /** Job timingInfo */
11829
+ timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
11794
11830
  }
11795
11831
 
11796
- /** Represents a JobStatusResponse. */
11797
- class JobStatusResponse implements IJobStatusResponse {
11832
+ /** Represents a Job. */
11833
+ class Job implements IJob {
11798
11834
 
11799
11835
  /**
11800
- * Constructs a new JobStatusResponse.
11836
+ * Constructs a new Job.
11801
11837
  * @param [properties] Properties to set
11802
11838
  */
11803
- constructor(properties?: sesame.v1.jobs.IJobStatusResponse);
11839
+ constructor(properties?: sesame.v1.jobs.IJob);
11804
11840
 
11805
- /** JobStatusResponse jobId. */
11806
- public jobId: number;
11841
+ /** Job id. */
11842
+ public id: number;
11843
+
11844
+ /** Job type. */
11845
+ public type: sesame.v1.jobs.JobType;
11846
+
11847
+ /** Job status. */
11848
+ public status: sesame.v1.jobs.JobStatus;
11807
11849
 
11808
- /** JobStatusResponse name. */
11850
+ /** Job name. */
11809
11851
  public name: string;
11810
11852
 
11811
- /** JobStatusResponse description. */
11853
+ /** Job description. */
11812
11854
  public description: string;
11813
11855
 
11814
- /** JobStatusResponse status. */
11815
- public status: sesame.v1.jobs.JobStatus;
11816
-
11817
- /** JobStatusResponse error. */
11856
+ /** Job error. */
11818
11857
  public error?: (string|null);
11819
11858
 
11820
- /** JobStatusResponse progress. */
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 {
11822
11948
 
11823
- /** JobStatusResponse total. */
11824
- public total: number;
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);
11961
+
11962
+ /** JobList jobs. */
11963
+ public jobs: sesame.v1.jobs.IJob[];
11825
11964
 
11826
11965
  /**
11827
- * Creates a new JobStatusResponse instance using the specified properties.
11966
+ * Creates a new JobList instance using the specified properties.
11828
11967
  * @param [properties] Properties to set
11829
- * @returns JobStatusResponse instance
11968
+ * @returns JobList instance
11830
11969
  */
11831
- public static create(properties?: sesame.v1.jobs.IJobStatusResponse): sesame.v1.jobs.JobStatusResponse;
11970
+ public static create(properties?: sesame.v1.jobs.IJobList): sesame.v1.jobs.JobList;
11832
11971
 
11833
11972
  /**
11834
- * Encodes the specified JobStatusResponse message. Does not implicitly {@link sesame.v1.jobs.JobStatusResponse.verify|verify} messages.
11835
- * @param message JobStatusResponse message or plain object to encode
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.IJobStatusResponse, writer?: $protobuf.Writer): $protobuf.Writer;
11978
+ public static encode(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
11840
11979
 
11841
11980
  /**
11842
- * Encodes the specified JobStatusResponse message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobStatusResponse.verify|verify} messages.
11843
- * @param message JobStatusResponse message or plain object to encode
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.IJobStatusResponse, writer?: $protobuf.Writer): $protobuf.Writer;
11986
+ public static encodeDelimited(message: sesame.v1.jobs.IJobList, writer?: $protobuf.Writer): $protobuf.Writer;
11848
11987
 
11849
11988
  /**
11850
- * Decodes a JobStatusResponse message from the specified reader or buffer.
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 JobStatusResponse
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.JobStatusResponse;
11996
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobList;
11858
11997
 
11859
11998
  /**
11860
- * Decodes a JobStatusResponse message from the specified reader or buffer, length delimited.
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 JobStatusResponse
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.JobStatusResponse;
12005
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobList;
11867
12006
 
11868
12007
  /**
11869
- * Verifies a JobStatusResponse message.
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 JobStatusResponse message from a plain object. Also converts values to their respective internal types.
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 JobStatusResponse
12017
+ * @returns JobList
11879
12018
  */
11880
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStatusResponse;
12019
+ public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobList;
11881
12020
 
11882
12021
  /**
11883
- * Creates a plain object from a JobStatusResponse message. Also converts values to other types if specified.
11884
- * @param message JobStatusResponse
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.JobStatusResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
12027
+ public static toObject(message: sesame.v1.jobs.JobList, options?: $protobuf.IConversionOptions): { [k: string]: any };
11889
12028
 
11890
12029
  /**
11891
- * Converts this JobStatusResponse to JSON.
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 JobStatusResponse
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 JobListResponse. */
11905
- interface IJobListResponse {
12043
+ /** Properties of a JobStartRequest. */
12044
+ interface IJobStartRequest {
12045
+
12046
+ /** JobStartRequest exportRequest */
12047
+ exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
11906
12048
 
11907
- /** JobListResponse jobs */
11908
- jobs?: (sesame.v1.jobs.IJobStatusResponse[]|null);
12049
+ /** JobStartRequest importRequest */
12050
+ importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
11909
12051
  }
11910
12052
 
11911
- /** Represents a JobListResponse. */
11912
- class JobListResponse implements IJobListResponse {
12053
+ /** Represents a JobStartRequest. */
12054
+ class JobStartRequest implements IJobStartRequest {
11913
12055
 
11914
12056
  /**
11915
- * Constructs a new JobListResponse.
12057
+ * Constructs a new JobStartRequest.
11916
12058
  * @param [properties] Properties to set
11917
12059
  */
11918
- constructor(properties?: sesame.v1.jobs.IJobListResponse);
12060
+ constructor(properties?: sesame.v1.jobs.IJobStartRequest);
11919
12061
 
11920
- /** JobListResponse jobs. */
11921
- public jobs: sesame.v1.jobs.IJobStatusResponse[];
12062
+ /** JobStartRequest exportRequest. */
12063
+ public exportRequest?: (sesame.v1.jobs.IExportStartRequest|null);
12064
+
12065
+ /** JobStartRequest importRequest. */
12066
+ public importRequest?: (sesame.v1.jobs.IImportStartRequest|null);
12067
+
12068
+ /** JobStartRequest config. */
12069
+ public config?: ("exportRequest"|"importRequest");
11922
12070
 
11923
12071
  /**
11924
- * Creates a new JobListResponse instance using the specified properties.
12072
+ * Creates a new JobStartRequest instance using the specified properties.
11925
12073
  * @param [properties] Properties to set
11926
- * @returns JobListResponse instance
12074
+ * @returns JobStartRequest instance
11927
12075
  */
11928
- public static create(properties?: sesame.v1.jobs.IJobListResponse): sesame.v1.jobs.JobListResponse;
12076
+ public static create(properties?: sesame.v1.jobs.IJobStartRequest): sesame.v1.jobs.JobStartRequest;
11929
12077
 
11930
12078
  /**
11931
- * Encodes the specified JobListResponse message. Does not implicitly {@link sesame.v1.jobs.JobListResponse.verify|verify} messages.
11932
- * @param message JobListResponse message or plain object to encode
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.IJobListResponse, writer?: $protobuf.Writer): $protobuf.Writer;
12084
+ public static encode(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
11937
12085
 
11938
12086
  /**
11939
- * Encodes the specified JobListResponse message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobListResponse.verify|verify} messages.
11940
- * @param message JobListResponse message or plain object to encode
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.IJobListResponse, writer?: $protobuf.Writer): $protobuf.Writer;
12092
+ public static encodeDelimited(message: sesame.v1.jobs.IJobStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
11945
12093
 
11946
12094
  /**
11947
- * Decodes a JobListResponse message from the specified reader or buffer.
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 JobListResponse
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.JobListResponse;
12102
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobStartRequest;
11955
12103
 
11956
12104
  /**
11957
- * Decodes a JobListResponse message from the specified reader or buffer, length delimited.
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 JobListResponse
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.JobListResponse;
12111
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobStartRequest;
11964
12112
 
11965
12113
  /**
11966
- * Verifies a JobListResponse message.
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 JobListResponse message from a plain object. Also converts values to their respective internal types.
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 JobListResponse
12123
+ * @returns JobStartRequest
11976
12124
  */
11977
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobListResponse;
12125
+ public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobStartRequest;
11978
12126
 
11979
12127
  /**
11980
- * Creates a plain object from a JobListResponse message. Also converts values to other types if specified.
11981
- * @param message JobListResponse
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.JobListResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
12133
+ public static toObject(message: sesame.v1.jobs.JobStartRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
11986
12134
 
11987
12135
  /**
11988
- * Converts this JobListResponse to JSON.
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 JobListResponse
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 JobEvent. */
12002
- interface IJobEvent {
12149
+ /** Properties of a JobAbortRequest. */
12150
+ interface IJobAbortRequest {
12003
12151
 
12004
- /** JobEvent jobId */
12152
+ /** JobAbortRequest jobId */
12005
12153
  jobId?: (number|null);
12154
+ }
12006
12155
 
12007
- /** JobEvent source */
12008
- source?: (string|null);
12156
+ /** Represents a JobAbortRequest. */
12157
+ class JobAbortRequest implements IJobAbortRequest {
12009
12158
 
12010
- /** JobEvent status */
12011
- status?: (sesame.v1.jobs.JobStatus|null);
12159
+ /**
12160
+ * Constructs a new JobAbortRequest.
12161
+ * @param [properties] Properties to set
12162
+ */
12163
+ constructor(properties?: sesame.v1.jobs.IJobAbortRequest);
12164
+
12165
+ /** JobAbortRequest jobId. */
12166
+ public jobId: number;
12012
12167
 
12013
- /** JobEvent statusText */
12014
- statusText?: (string|null);
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;
12015
12174
 
12016
- /** JobEvent error */
12017
- error?: (string|null);
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;
12018
12182
 
12019
- /** JobEvent timingInfo */
12020
- timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
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 JobEvent. */
12024
- class JobEvent implements IJobEvent {
12253
+ /** Represents a JobStatusRequest. */
12254
+ class JobStatusRequest implements IJobStatusRequest {
12025
12255
 
12026
12256
  /**
12027
- * Constructs a new JobEvent.
12257
+ * Constructs a new JobStatusRequest.
12028
12258
  * @param [properties] Properties to set
12029
12259
  */
12030
- constructor(properties?: sesame.v1.jobs.IJobEvent);
12260
+ constructor(properties?: sesame.v1.jobs.IJobStatusRequest);
12031
12261
 
12032
- /** JobEvent jobId. */
12262
+ /** JobStatusRequest jobId. */
12033
12263
  public jobId: number;
12034
12264
 
12035
- /** JobEvent source. */
12036
- public source: string;
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
- /** JobEvent status. */
12039
- public status: sesame.v1.jobs.JobStatus;
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
- /** JobEvent statusText. */
12042
- public statusText: string;
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
- /** JobEvent error. */
12045
- public error?: (string|null);
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
- /** JobEvent timingInfo. */
12048
- public timingInfo?: (sesame.v1.jobs.ITimingInfo|null);
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 {
12049
12349
 
12050
12350
  /**
12051
- * Creates a new JobEvent instance using the specified properties.
12351
+ * Constructs a new JobListRequest.
12052
12352
  * @param [properties] Properties to set
12053
- * @returns JobEvent instance
12054
12353
  */
12055
- public static create(properties?: sesame.v1.jobs.IJobEvent): sesame.v1.jobs.JobEvent;
12354
+ constructor(properties?: sesame.v1.jobs.IJobListRequest);
12056
12355
 
12057
12356
  /**
12058
- * Encodes the specified JobEvent message. Does not implicitly {@link sesame.v1.jobs.JobEvent.verify|verify} messages.
12059
- * @param message JobEvent message or plain object to encode
12357
+ * Creates a new JobListRequest instance using the specified properties.
12358
+ * @param [properties] Properties to set
12359
+ * @returns JobListRequest instance
12360
+ */
12361
+ public static create(properties?: sesame.v1.jobs.IJobListRequest): sesame.v1.jobs.JobListRequest;
12362
+
12363
+ /**
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.IJobEvent, writer?: $protobuf.Writer): $protobuf.Writer;
12369
+ public static encode(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12064
12370
 
12065
12371
  /**
12066
- * Encodes the specified JobEvent message, length delimited. Does not implicitly {@link sesame.v1.jobs.JobEvent.verify|verify} messages.
12067
- * @param message JobEvent message or plain object to encode
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.IJobEvent, writer?: $protobuf.Writer): $protobuf.Writer;
12377
+ public static encodeDelimited(message: sesame.v1.jobs.IJobListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12072
12378
 
12073
12379
  /**
12074
- * Decodes a JobEvent message from the specified reader or buffer.
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 JobEvent
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.JobEvent;
12387
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.JobListRequest;
12082
12388
 
12083
12389
  /**
12084
- * Decodes a JobEvent message from the specified reader or buffer, length delimited.
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 JobEvent
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.JobEvent;
12396
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.JobListRequest;
12091
12397
 
12092
12398
  /**
12093
- * Verifies a JobEvent message.
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 JobEvent message from a plain object. Also converts values to their respective internal types.
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 JobEvent
12408
+ * @returns JobListRequest
12103
12409
  */
12104
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobEvent;
12410
+ public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.JobListRequest;
12105
12411
 
12106
12412
  /**
12107
- * Creates a plain object from a JobEvent message. Also converts values to other types if specified.
12108
- * @param message JobEvent
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.JobEvent, options?: $protobuf.IConversionOptions): { [k: string]: any };
12418
+ public static toObject(message: sesame.v1.jobs.JobListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
12113
12419
 
12114
12420
  /**
12115
- * Converts this JobEvent to JSON.
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 JobEvent
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.CodecId|null);
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.jobs.AudioCodecId|null);
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.CodecId;
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.jobs.AudioCodecId;
12577
+ public audioCodec: sesame.v1.common.CodecType;
12272
12578
 
12273
12579
  /** ExportConfiguration audioBitrateKbps. */
12274
12580
  public audioBitrateKbps: number;
@@ -12463,794 +12769,224 @@ export namespace sesame {
12463
12769
  public static getTypeUrl(typeUrlPrefix?: string): string;
12464
12770
  }
12465
12771
 
12466
- /** Properties of an ExportAbortRequest. */
12467
- interface IExportAbortRequest {
12468
-
12469
- /** ExportAbortRequest jobId */
12470
- jobId?: (number|null);
12471
- }
12772
+ /** Properties of an ImportConfiguration. */
12773
+ interface IImportConfiguration {
12472
12774
 
12473
- /** Represents an ExportAbortRequest. */
12474
- class ExportAbortRequest implements IExportAbortRequest {
12775
+ /** ImportConfiguration srcFilename */
12776
+ srcFilename?: (string|null);
12475
12777
 
12476
- /**
12477
- * Constructs a new ExportAbortRequest.
12478
- * @param [properties] Properties to set
12479
- */
12480
- constructor(properties?: sesame.v1.jobs.IExportAbortRequest);
12481
-
12482
- /** ExportAbortRequest jobId. */
12483
- public jobId: number;
12484
-
12485
- /**
12486
- * Creates a new ExportAbortRequest instance using the specified properties.
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);
12778
+ /** ImportConfiguration audioRouting */
12779
+ audioRouting?: (number[]|null);
12759
12780
 
12760
12781
  /** ImportConfiguration dstRecorderId */
12761
12782
  dstRecorderId?: (string|null);
12762
12783
 
12763
- /** ImportConfiguration dstClipId */
12764
- dstClipId?: (number|Long|null);
12765
-
12766
- /** ImportConfiguration dstClipName */
12767
- dstClipName?: (string|null);
12768
-
12769
- /** ImportConfiguration dstClipUserData */
12770
- dstClipUserData?: (string|null);
12771
- }
12772
-
12773
- /** Represents an ImportConfiguration. */
12774
- class ImportConfiguration implements IImportConfiguration {
12775
-
12776
- /**
12777
- * Constructs a new ImportConfiguration.
12778
- * @param [properties] Properties to set
12779
- */
12780
- constructor(properties?: sesame.v1.jobs.IImportConfiguration);
12781
-
12782
- /** ImportConfiguration srcFilename. */
12783
- public srcFilename: string;
12784
-
12785
- /** ImportConfiguration audioRouting. */
12786
- public audioRouting: number[];
12787
-
12788
- /** ImportConfiguration dstRecorderId. */
12789
- public dstRecorderId: string;
12790
-
12791
- /** ImportConfiguration dstClipId. */
12792
- public dstClipId: (number|Long);
12793
-
12794
- /** ImportConfiguration dstClipName. */
12795
- public dstClipName: string;
12796
-
12797
- /** ImportConfiguration dstClipUserData. */
12798
- public dstClipUserData: string;
12799
-
12800
- /**
12801
- * Creates a new ImportConfiguration instance using the specified properties.
12802
- * @param [properties] Properties to set
12803
- * @returns ImportConfiguration instance
12804
- */
12805
- public static create(properties?: sesame.v1.jobs.IImportConfiguration): sesame.v1.jobs.ImportConfiguration;
12806
-
12807
- /**
12808
- * Encodes the specified ImportConfiguration message. Does not implicitly {@link sesame.v1.jobs.ImportConfiguration.verify|verify} messages.
12809
- * @param message ImportConfiguration message or plain object to encode
12810
- * @param [writer] Writer to encode to
12811
- * @returns Writer
12812
- */
12813
- public static encode(message: sesame.v1.jobs.IImportConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
12814
-
12815
- /**
12816
- * Encodes the specified ImportConfiguration message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportConfiguration.verify|verify} messages.
12817
- * @param message ImportConfiguration message or plain object to encode
12818
- * @param [writer] Writer to encode to
12819
- * @returns Writer
12820
- */
12821
- public static encodeDelimited(message: sesame.v1.jobs.IImportConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
12822
-
12823
- /**
12824
- * Decodes an ImportConfiguration message from the specified reader or buffer.
12825
- * @param reader Reader or buffer to decode from
12826
- * @param [length] Message length if known beforehand
12827
- * @returns ImportConfiguration
12828
- * @throws {Error} If the payload is not a reader or valid buffer
12829
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
12830
- */
12831
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportConfiguration;
12832
-
12833
- /**
12834
- * Decodes an ImportConfiguration message from the specified reader or buffer, length delimited.
12835
- * @param reader Reader or buffer to decode from
12836
- * @returns ImportConfiguration
12837
- * @throws {Error} If the payload is not a reader or valid buffer
12838
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
12839
- */
12840
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportConfiguration;
12841
-
12842
- /**
12843
- * Verifies an ImportConfiguration message.
12844
- * @param message Plain object to verify
12845
- * @returns `null` if valid, otherwise the reason why it is not
12846
- */
12847
- public static verify(message: { [k: string]: any }): (string|null);
12848
-
12849
- /**
12850
- * Creates an ImportConfiguration message from a plain object. Also converts values to their respective internal types.
12851
- * @param object Plain object
12852
- * @returns ImportConfiguration
12853
- */
12854
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportConfiguration;
12855
-
12856
- /**
12857
- * Creates a plain object from an ImportConfiguration message. Also converts values to other types if specified.
12858
- * @param message ImportConfiguration
12859
- * @param [options] Conversion options
12860
- * @returns Plain object
12861
- */
12862
- public static toObject(message: sesame.v1.jobs.ImportConfiguration, options?: $protobuf.IConversionOptions): { [k: string]: any };
12863
-
12864
- /**
12865
- * Converts this ImportConfiguration to JSON.
12866
- * @returns JSON object
12867
- */
12868
- public toJSON(): { [k: string]: any };
12869
-
12870
- /**
12871
- * Gets the default type url for ImportConfiguration
12872
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12873
- * @returns The default type url
12874
- */
12875
- public static getTypeUrl(typeUrlPrefix?: string): string;
12876
- }
12877
-
12878
- /** Properties of an ImportStartRequest. */
12879
- interface IImportStartRequest {
12880
-
12881
- /** ImportStartRequest config */
12882
- config?: (sesame.v1.jobs.IImportConfiguration|null);
12883
- }
12884
-
12885
- /** Represents an ImportStartRequest. */
12886
- class ImportStartRequest implements IImportStartRequest {
12887
-
12888
- /**
12889
- * Constructs a new ImportStartRequest.
12890
- * @param [properties] Properties to set
12891
- */
12892
- constructor(properties?: sesame.v1.jobs.IImportStartRequest);
12893
-
12894
- /** ImportStartRequest config. */
12895
- public config?: (sesame.v1.jobs.IImportConfiguration|null);
12896
-
12897
- /**
12898
- * Creates a new ImportStartRequest instance using the specified properties.
12899
- * @param [properties] Properties to set
12900
- * @returns ImportStartRequest instance
12901
- */
12902
- public static create(properties?: sesame.v1.jobs.IImportStartRequest): sesame.v1.jobs.ImportStartRequest;
12903
-
12904
- /**
12905
- * Encodes the specified ImportStartRequest message. Does not implicitly {@link sesame.v1.jobs.ImportStartRequest.verify|verify} messages.
12906
- * @param message ImportStartRequest message or plain object to encode
12907
- * @param [writer] Writer to encode to
12908
- * @returns Writer
12909
- */
12910
- public static encode(message: sesame.v1.jobs.IImportStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12911
-
12912
- /**
12913
- * Encodes the specified ImportStartRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportStartRequest.verify|verify} messages.
12914
- * @param message ImportStartRequest message or plain object to encode
12915
- * @param [writer] Writer to encode to
12916
- * @returns Writer
12917
- */
12918
- public static encodeDelimited(message: sesame.v1.jobs.IImportStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12919
-
12920
- /**
12921
- * Decodes an ImportStartRequest message from the specified reader or buffer.
12922
- * @param reader Reader or buffer to decode from
12923
- * @param [length] Message length if known beforehand
12924
- * @returns ImportStartRequest
12925
- * @throws {Error} If the payload is not a reader or valid buffer
12926
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
12927
- */
12928
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportStartRequest;
12929
-
12930
- /**
12931
- * Decodes an ImportStartRequest message from the specified reader or buffer, length delimited.
12932
- * @param reader Reader or buffer to decode from
12933
- * @returns ImportStartRequest
12934
- * @throws {Error} If the payload is not a reader or valid buffer
12935
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
12936
- */
12937
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportStartRequest;
12938
-
12939
- /**
12940
- * Verifies an ImportStartRequest message.
12941
- * @param message Plain object to verify
12942
- * @returns `null` if valid, otherwise the reason why it is not
12943
- */
12944
- public static verify(message: { [k: string]: any }): (string|null);
12945
-
12946
- /**
12947
- * Creates an ImportStartRequest message from a plain object. Also converts values to their respective internal types.
12948
- * @param object Plain object
12949
- * @returns ImportStartRequest
12950
- */
12951
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportStartRequest;
12952
-
12953
- /**
12954
- * Creates a plain object from an ImportStartRequest message. Also converts values to other types if specified.
12955
- * @param message ImportStartRequest
12956
- * @param [options] Conversion options
12957
- * @returns Plain object
12958
- */
12959
- public static toObject(message: sesame.v1.jobs.ImportStartRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
12960
-
12961
- /**
12962
- * Converts this ImportStartRequest to JSON.
12963
- * @returns JSON object
12964
- */
12965
- public toJSON(): { [k: string]: any };
12966
-
12967
- /**
12968
- * Gets the default type url for ImportStartRequest
12969
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12970
- * @returns The default type url
12971
- */
12972
- public static getTypeUrl(typeUrlPrefix?: string): string;
12973
- }
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;
12784
+ /** ImportConfiguration dstClipId */
12785
+ dstClipId?: (number|Long|null);
13035
12786
 
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);
12787
+ /** ImportConfiguration dstClipName */
12788
+ dstClipName?: (string|null);
13042
12789
 
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;
12790
+ /** ImportConfiguration dstClipUserData */
12791
+ dstClipUserData?: (string|null);
12792
+ }
13049
12793
 
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 };
12794
+ /** Represents an ImportConfiguration. */
12795
+ class ImportConfiguration implements IImportConfiguration {
13057
12796
 
13058
12797
  /**
13059
- * Converts this ImportAbortRequest to JSON.
13060
- * @returns JSON object
12798
+ * Constructs a new ImportConfiguration.
12799
+ * @param [properties] Properties to set
13061
12800
  */
13062
- public toJSON(): { [k: string]: any };
12801
+ constructor(properties?: sesame.v1.jobs.IImportConfiguration);
13063
12802
 
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
- }
12803
+ /** ImportConfiguration srcFilename. */
12804
+ public srcFilename: string;
13071
12805
 
13072
- /** Properties of an ImportStatusRequest. */
13073
- interface IImportStatusRequest {
12806
+ /** ImportConfiguration audioRouting. */
12807
+ public audioRouting: number[];
13074
12808
 
13075
- /** ImportStatusRequest jobId */
13076
- jobId?: (number|null);
13077
- }
12809
+ /** ImportConfiguration dstRecorderId. */
12810
+ public dstRecorderId: string;
13078
12811
 
13079
- /** Represents an ImportStatusRequest. */
13080
- class ImportStatusRequest implements IImportStatusRequest {
12812
+ /** ImportConfiguration dstClipId. */
12813
+ public dstClipId: (number|Long);
13081
12814
 
13082
- /**
13083
- * Constructs a new ImportStatusRequest.
13084
- * @param [properties] Properties to set
13085
- */
13086
- constructor(properties?: sesame.v1.jobs.IImportStatusRequest);
12815
+ /** ImportConfiguration dstClipName. */
12816
+ public dstClipName: string;
13087
12817
 
13088
- /** ImportStatusRequest jobId. */
13089
- public jobId: number;
12818
+ /** ImportConfiguration dstClipUserData. */
12819
+ public dstClipUserData: string;
13090
12820
 
13091
12821
  /**
13092
- * Creates a new ImportStatusRequest instance using the specified properties.
12822
+ * Creates a new ImportConfiguration instance using the specified properties.
13093
12823
  * @param [properties] Properties to set
13094
- * @returns ImportStatusRequest instance
12824
+ * @returns ImportConfiguration instance
13095
12825
  */
13096
- public static create(properties?: sesame.v1.jobs.IImportStatusRequest): sesame.v1.jobs.ImportStatusRequest;
12826
+ public static create(properties?: sesame.v1.jobs.IImportConfiguration): sesame.v1.jobs.ImportConfiguration;
13097
12827
 
13098
12828
  /**
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
12829
+ * Encodes the specified ImportConfiguration message. Does not implicitly {@link sesame.v1.jobs.ImportConfiguration.verify|verify} messages.
12830
+ * @param message ImportConfiguration message or plain object to encode
13101
12831
  * @param [writer] Writer to encode to
13102
12832
  * @returns Writer
13103
12833
  */
13104
- public static encode(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12834
+ public static encode(message: sesame.v1.jobs.IImportConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
13105
12835
 
13106
12836
  /**
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
12837
+ * Encodes the specified ImportConfiguration message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportConfiguration.verify|verify} messages.
12838
+ * @param message ImportConfiguration message or plain object to encode
13109
12839
  * @param [writer] Writer to encode to
13110
12840
  * @returns Writer
13111
12841
  */
13112
- public static encodeDelimited(message: sesame.v1.jobs.IImportStatusRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12842
+ public static encodeDelimited(message: sesame.v1.jobs.IImportConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
13113
12843
 
13114
12844
  /**
13115
- * Decodes an ImportStatusRequest message from the specified reader or buffer.
12845
+ * Decodes an ImportConfiguration message from the specified reader or buffer.
13116
12846
  * @param reader Reader or buffer to decode from
13117
12847
  * @param [length] Message length if known beforehand
13118
- * @returns ImportStatusRequest
12848
+ * @returns ImportConfiguration
13119
12849
  * @throws {Error} If the payload is not a reader or valid buffer
13120
12850
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
13121
12851
  */
13122
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportStatusRequest;
12852
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportConfiguration;
13123
12853
 
13124
12854
  /**
13125
- * Decodes an ImportStatusRequest message from the specified reader or buffer, length delimited.
12855
+ * Decodes an ImportConfiguration message from the specified reader or buffer, length delimited.
13126
12856
  * @param reader Reader or buffer to decode from
13127
- * @returns ImportStatusRequest
12857
+ * @returns ImportConfiguration
13128
12858
  * @throws {Error} If the payload is not a reader or valid buffer
13129
12859
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
13130
12860
  */
13131
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportStatusRequest;
12861
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportConfiguration;
13132
12862
 
13133
12863
  /**
13134
- * Verifies an ImportStatusRequest message.
12864
+ * Verifies an ImportConfiguration message.
13135
12865
  * @param message Plain object to verify
13136
12866
  * @returns `null` if valid, otherwise the reason why it is not
13137
12867
  */
13138
12868
  public static verify(message: { [k: string]: any }): (string|null);
13139
12869
 
13140
12870
  /**
13141
- * Creates an ImportStatusRequest message from a plain object. Also converts values to their respective internal types.
12871
+ * Creates an ImportConfiguration message from a plain object. Also converts values to their respective internal types.
13142
12872
  * @param object Plain object
13143
- * @returns ImportStatusRequest
12873
+ * @returns ImportConfiguration
13144
12874
  */
13145
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportStatusRequest;
12875
+ public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportConfiguration;
13146
12876
 
13147
12877
  /**
13148
- * Creates a plain object from an ImportStatusRequest message. Also converts values to other types if specified.
13149
- * @param message ImportStatusRequest
12878
+ * Creates a plain object from an ImportConfiguration message. Also converts values to other types if specified.
12879
+ * @param message ImportConfiguration
13150
12880
  * @param [options] Conversion options
13151
12881
  * @returns Plain object
13152
12882
  */
13153
- public static toObject(message: sesame.v1.jobs.ImportStatusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
12883
+ public static toObject(message: sesame.v1.jobs.ImportConfiguration, options?: $protobuf.IConversionOptions): { [k: string]: any };
13154
12884
 
13155
12885
  /**
13156
- * Converts this ImportStatusRequest to JSON.
12886
+ * Converts this ImportConfiguration to JSON.
13157
12887
  * @returns JSON object
13158
12888
  */
13159
12889
  public toJSON(): { [k: string]: any };
13160
12890
 
13161
12891
  /**
13162
- * Gets the default type url for ImportStatusRequest
12892
+ * Gets the default type url for ImportConfiguration
13163
12893
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13164
12894
  * @returns The default type url
13165
12895
  */
13166
12896
  public static getTypeUrl(typeUrlPrefix?: string): string;
13167
12897
  }
13168
12898
 
13169
- /** Properties of an ImportListRequest. */
13170
- interface IImportListRequest {
12899
+ /** Properties of an ImportStartRequest. */
12900
+ interface IImportStartRequest {
12901
+
12902
+ /** ImportStartRequest config */
12903
+ config?: (sesame.v1.jobs.IImportConfiguration|null);
13171
12904
  }
13172
12905
 
13173
- /** Represents an ImportListRequest. */
13174
- class ImportListRequest implements IImportListRequest {
12906
+ /** Represents an ImportStartRequest. */
12907
+ class ImportStartRequest implements IImportStartRequest {
13175
12908
 
13176
12909
  /**
13177
- * Constructs a new ImportListRequest.
12910
+ * Constructs a new ImportStartRequest.
13178
12911
  * @param [properties] Properties to set
13179
12912
  */
13180
- constructor(properties?: sesame.v1.jobs.IImportListRequest);
12913
+ constructor(properties?: sesame.v1.jobs.IImportStartRequest);
12914
+
12915
+ /** ImportStartRequest config. */
12916
+ public config?: (sesame.v1.jobs.IImportConfiguration|null);
13181
12917
 
13182
12918
  /**
13183
- * Creates a new ImportListRequest instance using the specified properties.
12919
+ * Creates a new ImportStartRequest instance using the specified properties.
13184
12920
  * @param [properties] Properties to set
13185
- * @returns ImportListRequest instance
12921
+ * @returns ImportStartRequest instance
13186
12922
  */
13187
- public static create(properties?: sesame.v1.jobs.IImportListRequest): sesame.v1.jobs.ImportListRequest;
12923
+ public static create(properties?: sesame.v1.jobs.IImportStartRequest): sesame.v1.jobs.ImportStartRequest;
13188
12924
 
13189
12925
  /**
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
12926
+ * Encodes the specified ImportStartRequest message. Does not implicitly {@link sesame.v1.jobs.ImportStartRequest.verify|verify} messages.
12927
+ * @param message ImportStartRequest message or plain object to encode
13192
12928
  * @param [writer] Writer to encode to
13193
12929
  * @returns Writer
13194
12930
  */
13195
- public static encode(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12931
+ public static encode(message: sesame.v1.jobs.IImportStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13196
12932
 
13197
12933
  /**
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
12934
+ * Encodes the specified ImportStartRequest message, length delimited. Does not implicitly {@link sesame.v1.jobs.ImportStartRequest.verify|verify} messages.
12935
+ * @param message ImportStartRequest message or plain object to encode
13200
12936
  * @param [writer] Writer to encode to
13201
12937
  * @returns Writer
13202
12938
  */
13203
- public static encodeDelimited(message: sesame.v1.jobs.IImportListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
12939
+ public static encodeDelimited(message: sesame.v1.jobs.IImportStartRequest, writer?: $protobuf.Writer): $protobuf.Writer;
13204
12940
 
13205
12941
  /**
13206
- * Decodes an ImportListRequest message from the specified reader or buffer.
12942
+ * Decodes an ImportStartRequest message from the specified reader or buffer.
13207
12943
  * @param reader Reader or buffer to decode from
13208
12944
  * @param [length] Message length if known beforehand
13209
- * @returns ImportListRequest
12945
+ * @returns ImportStartRequest
13210
12946
  * @throws {Error} If the payload is not a reader or valid buffer
13211
12947
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
13212
12948
  */
13213
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportListRequest;
12949
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.jobs.ImportStartRequest;
13214
12950
 
13215
12951
  /**
13216
- * Decodes an ImportListRequest message from the specified reader or buffer, length delimited.
12952
+ * Decodes an ImportStartRequest message from the specified reader or buffer, length delimited.
13217
12953
  * @param reader Reader or buffer to decode from
13218
- * @returns ImportListRequest
12954
+ * @returns ImportStartRequest
13219
12955
  * @throws {Error} If the payload is not a reader or valid buffer
13220
12956
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
13221
12957
  */
13222
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportListRequest;
12958
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.jobs.ImportStartRequest;
13223
12959
 
13224
12960
  /**
13225
- * Verifies an ImportListRequest message.
12961
+ * Verifies an ImportStartRequest message.
13226
12962
  * @param message Plain object to verify
13227
12963
  * @returns `null` if valid, otherwise the reason why it is not
13228
12964
  */
13229
12965
  public static verify(message: { [k: string]: any }): (string|null);
13230
12966
 
13231
12967
  /**
13232
- * Creates an ImportListRequest message from a plain object. Also converts values to their respective internal types.
12968
+ * Creates an ImportStartRequest message from a plain object. Also converts values to their respective internal types.
13233
12969
  * @param object Plain object
13234
- * @returns ImportListRequest
12970
+ * @returns ImportStartRequest
13235
12971
  */
13236
- public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportListRequest;
12972
+ public static fromObject(object: { [k: string]: any }): sesame.v1.jobs.ImportStartRequest;
13237
12973
 
13238
12974
  /**
13239
- * Creates a plain object from an ImportListRequest message. Also converts values to other types if specified.
13240
- * @param message ImportListRequest
12975
+ * Creates a plain object from an ImportStartRequest message. Also converts values to other types if specified.
12976
+ * @param message ImportStartRequest
13241
12977
  * @param [options] Conversion options
13242
12978
  * @returns Plain object
13243
12979
  */
13244
- public static toObject(message: sesame.v1.jobs.ImportListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
12980
+ public static toObject(message: sesame.v1.jobs.ImportStartRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
13245
12981
 
13246
12982
  /**
13247
- * Converts this ImportListRequest to JSON.
12983
+ * Converts this ImportStartRequest to JSON.
13248
12984
  * @returns JSON object
13249
12985
  */
13250
12986
  public toJSON(): { [k: string]: any };
13251
12987
 
13252
12988
  /**
13253
- * Gets the default type url for ImportListRequest
12989
+ * Gets the default type url for ImportStartRequest
13254
12990
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13255
12991
  * @returns The default type url
13256
12992
  */
@@ -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 RequestPlaylistExportStart.
13809
- * @param request ExportStartRequest message or plain object
13810
- * @param callback Node-style callback called with the error, if any, and JobStatusResponse
13811
- */
13812
- public requestPlaylistExportStart(request: sesame.v1.jobs.IExportStartRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportStartCallback): void;
13813
-
13814
- /**
13815
- * Calls RequestPlaylistExportStart.
13816
- * @param request ExportStartRequest message or plain object
13817
- * @returns Promise
13818
- */
13819
- public requestPlaylistExportStart(request: sesame.v1.jobs.IExportStartRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13820
-
13821
- /**
13822
- * Calls RequestPlaylistExportAbort.
13823
- * @param request ExportAbortRequest message or plain object
13824
- * @param callback Node-style callback called with the error, if any, and JobStatusResponse
13825
- */
13826
- public requestPlaylistExportAbort(request: sesame.v1.jobs.IExportAbortRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportAbortCallback): void;
13827
-
13828
- /**
13829
- * Calls RequestPlaylistExportAbort.
13830
- * @param request ExportAbortRequest message or plain object
13831
- * @returns Promise
13832
- */
13833
- public requestPlaylistExportAbort(request: sesame.v1.jobs.IExportAbortRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13834
-
13835
- /**
13836
- * Calls RequestPlaylistExportStatus.
13837
- * @param request ExportStatusRequest message or plain object
13838
- * @param callback Node-style callback called with the error, if any, and JobStatusResponse
13839
- */
13840
- public requestPlaylistExportStatus(request: sesame.v1.jobs.IExportStatusRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportStatusCallback): void;
13841
-
13842
- /**
13843
- * Calls RequestPlaylistExportStatus.
13844
- * @param request ExportStatusRequest message or plain object
13845
- * @returns Promise
13846
- */
13847
- public requestPlaylistExportStatus(request: sesame.v1.jobs.IExportStatusRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13848
-
13849
- /**
13850
- * Calls RequestPlaylistExportList.
13851
- * @param request ExportListRequest message or plain object
13852
- * @param callback Node-style callback called with the error, if any, and JobListResponse
13853
- */
13854
- public requestPlaylistExportList(request: sesame.v1.jobs.IExportListRequest, callback: sesame.v1.rpc.SesameAPIService.RequestPlaylistExportListCallback): void;
13855
-
13856
- /**
13857
- * Calls RequestPlaylistExportList.
13858
- * @param request ExportListRequest message or plain object
13859
- * @returns Promise
13860
- */
13861
- public requestPlaylistExportList(request: sesame.v1.jobs.IExportListRequest): Promise<sesame.v1.jobs.JobListResponse>;
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
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
13867
13547
  */
13868
- public requestClipImportStart(request: sesame.v1.jobs.IImportStartRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportStartCallback): void;
13548
+ public startJob(request: sesame.v1.jobs.IJobStartRequest, callback: sesame.v1.rpc.SesameAPIService.StartJobCallback): void;
13869
13549
 
13870
13550
  /**
13871
- * Calls RequestClipImportStart.
13872
- * @param request ImportStartRequest message or plain object
13551
+ * Calls StartJob.
13552
+ * @param request JobStartRequest message or plain object
13873
13553
  * @returns Promise
13874
13554
  */
13875
- public requestClipImportStart(request: sesame.v1.jobs.IImportStartRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13555
+ public startJob(request: sesame.v1.jobs.IJobStartRequest): Promise<sesame.v1.jobs.Job>;
13876
13556
 
13877
13557
  /**
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
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
13881
13561
  */
13882
- public requestClipImportAbort(request: sesame.v1.jobs.IImportAbortRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportAbortCallback): void;
13562
+ public abortJob(request: sesame.v1.jobs.IJobAbortRequest, callback: sesame.v1.rpc.SesameAPIService.AbortJobCallback): void;
13883
13563
 
13884
13564
  /**
13885
- * Calls RequestClipImportAbort.
13886
- * @param request ImportAbortRequest message or plain object
13565
+ * Calls AbortJob.
13566
+ * @param request JobAbortRequest message or plain object
13887
13567
  * @returns Promise
13888
13568
  */
13889
- public requestClipImportAbort(request: sesame.v1.jobs.IImportAbortRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13569
+ public abortJob(request: sesame.v1.jobs.IJobAbortRequest): Promise<sesame.v1.jobs.Job>;
13890
13570
 
13891
13571
  /**
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
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
13895
13575
  */
13896
- public requestClipImportStatus(request: sesame.v1.jobs.IImportStatusRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportStatusCallback): void;
13576
+ public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest, callback: sesame.v1.rpc.SesameAPIService.GetJobStatusCallback): void;
13897
13577
 
13898
13578
  /**
13899
- * Calls RequestClipImportStatus.
13900
- * @param request ImportStatusRequest message or plain object
13579
+ * Calls GetJobStatus.
13580
+ * @param request JobStatusRequest message or plain object
13901
13581
  * @returns Promise
13902
13582
  */
13903
- public requestClipImportStatus(request: sesame.v1.jobs.IImportStatusRequest): Promise<sesame.v1.jobs.JobStatusResponse>;
13583
+ public getJobStatus(request: sesame.v1.jobs.IJobStatusRequest): Promise<sesame.v1.jobs.Job>;
13904
13584
 
13905
13585
  /**
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
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
13909
13589
  */
13910
- public requestClipImportList(request: sesame.v1.jobs.IImportListRequest, callback: sesame.v1.rpc.SesameAPIService.RequestClipImportListCallback): void;
13590
+ public listJobs(request: sesame.v1.jobs.IJobListRequest, callback: sesame.v1.rpc.SesameAPIService.ListJobsCallback): void;
13911
13591
 
13912
13592
  /**
13913
- * Calls RequestClipImportList.
13914
- * @param request ImportListRequest message or plain object
13593
+ * Calls ListJobs.
13594
+ * @param request JobListRequest message or plain object
13915
13595
  * @returns Promise
13916
13596
  */
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,60 +13670,32 @@ 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#requestPlaylistExportStart}.
13994
- * @param error Error, if any
13995
- * @param [response] JobStatusResponse
13996
- */
13997
- type RequestPlaylistExportStartCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
13998
-
13999
- /**
14000
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportAbort}.
14001
- * @param error Error, if any
14002
- * @param [response] JobStatusResponse
14003
- */
14004
- type RequestPlaylistExportAbortCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
14005
-
14006
- /**
14007
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportStatus}.
14008
- * @param error Error, if any
14009
- * @param [response] JobStatusResponse
14010
- */
14011
- type RequestPlaylistExportStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
14012
-
14013
- /**
14014
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestPlaylistExportList}.
14015
- * @param error Error, if any
14016
- * @param [response] JobListResponse
14017
- */
14018
- type RequestPlaylistExportListCallback = (error: (Error|null), response?: sesame.v1.jobs.JobListResponse) => void;
14019
-
14020
- /**
14021
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestClipImportStart}.
13673
+ * Callback as used by {@link sesame.v1.rpc.SesameAPIService#startJob}.
14022
13674
  * @param error Error, if any
14023
- * @param [response] JobStatusResponse
13675
+ * @param [response] Job
14024
13676
  */
14025
- type RequestClipImportStartCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
13677
+ type StartJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
14026
13678
 
14027
13679
  /**
14028
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestClipImportAbort}.
13680
+ * Callback as used by {@link sesame.v1.rpc.SesameAPIService#abortJob}.
14029
13681
  * @param error Error, if any
14030
- * @param [response] JobStatusResponse
13682
+ * @param [response] Job
14031
13683
  */
14032
- type RequestClipImportAbortCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
13684
+ type AbortJobCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
14033
13685
 
14034
13686
  /**
14035
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestClipImportStatus}.
13687
+ * Callback as used by {@link sesame.v1.rpc.SesameAPIService#getJobStatus}.
14036
13688
  * @param error Error, if any
14037
- * @param [response] JobStatusResponse
13689
+ * @param [response] Job
14038
13690
  */
14039
- type RequestClipImportStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.JobStatusResponse) => void;
13691
+ type GetJobStatusCallback = (error: (Error|null), response?: sesame.v1.jobs.Job) => void;
14040
13692
 
14041
13693
  /**
14042
- * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestClipImportList}.
13694
+ * Callback as used by {@link sesame.v1.rpc.SesameAPIService#listJobs}.
14043
13695
  * @param error Error, if any
14044
- * @param [response] JobListResponse
13696
+ * @param [response] JobList
14045
13697
  */
14046
- type RequestClipImportListCallback = (error: (Error|null), response?: sesame.v1.jobs.JobListResponse) => void;
13698
+ type ListJobsCallback = (error: (Error|null), response?: sesame.v1.jobs.JobList) => void;
14047
13699
 
14048
13700
  /**
14049
13701
  * Callback as used by {@link sesame.v1.rpc.SesameAPIService#requestKeyframe}.
@@ -14071,27 +13723,15 @@ export namespace sesame {
14071
13723
  FRAME_TYPE_VIDEO = 2,
14072
13724
  FRAME_TYPE_AUDIO = 3,
14073
13725
  FRAME_TYPE_MUXED = 4,
14074
- FRAME_TYPE_DECODER_DATA = 5
14075
- }
14076
-
14077
- /** CodecType enum. */
14078
- enum CodecType {
14079
- CODEC_TYPE_UNSPECIFIED = 0,
14080
- CODEC_TYPE_VIDEO_VP8 = 1,
14081
- CODEC_TYPE_VIDEO_VP9 = 2,
14082
- CODEC_TYPE_VIDEO_AVC = 3,
14083
- CODEC_TYPE_VIDEO_HEVC = 4,
14084
- CODEC_TYPE_VIDEO_AV1 = 5,
14085
- CODEC_TYPE_AUDIO_OPUS = 64,
14086
- CODEC_TYPE_AUDIO_AAC = 65,
14087
- CODEC_TYPE_AUDIO_PCM = 66
13726
+ FRAME_TYPE_DECODER_DATA = 5,
13727
+ FRAME_TYPE_DATA = 6
14088
13728
  }
14089
13729
 
14090
13730
  /** Properties of a MediaCodecData. */
14091
13731
  interface IMediaCodecData {
14092
13732
 
14093
13733
  /** MediaCodecData codecType */
14094
- codecType?: (sesame.v1.wire.CodecType|null);
13734
+ codecType?: (sesame.v1.common.CodecType|null);
14095
13735
 
14096
13736
  /** MediaCodecData sampleRate */
14097
13737
  sampleRate?: (number|null);
@@ -14131,7 +13771,7 @@ export namespace sesame {
14131
13771
  constructor(properties?: sesame.v1.wire.IMediaCodecData);
14132
13772
 
14133
13773
  /** MediaCodecData codecType. */
14134
- public codecType: sesame.v1.wire.CodecType;
13774
+ public codecType: sesame.v1.common.CodecType;
14135
13775
 
14136
13776
  /** MediaCodecData sampleRate. */
14137
13777
  public sampleRate: number;
@@ -14238,26 +13878,126 @@ export namespace sesame {
14238
13878
  public static getTypeUrl(typeUrlPrefix?: string): string;
14239
13879
  }
14240
13880
 
14241
- /** Properties of a FrameHeader. */
14242
- interface IFrameHeader {
14243
-
14244
- /** FrameHeader type */
14245
- type?: (sesame.v1.wire.FrameType|null);
13881
+ /** Properties of a MediaFrameData. */
13882
+ interface IMediaFrameData {
14246
13883
 
14247
- /** FrameHeader pts */
13884
+ /** MediaFrameData pts */
14248
13885
  pts?: (number|Long|null);
14249
13886
 
14250
- /** FrameHeader id */
14251
- id?: (number|Long|null);
14252
-
14253
- /** FrameHeader keyframe */
13887
+ /** MediaFrameData keyframe */
14254
13888
  keyframe?: (boolean|null);
14255
13889
 
14256
- /** FrameHeader codecData */
13890
+ /** MediaFrameData codecData */
14257
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);
14258
13995
 
14259
13996
  /** FrameHeader routingMetadata */
14260
13997
  routingMetadata?: (string|null);
13998
+
13999
+ /** FrameHeader media */
14000
+ media?: (sesame.v1.wire.IMediaFrameData|null);
14261
14001
  }
14262
14002
 
14263
14003
  /** Represents a FrameHeader. */
@@ -14272,21 +14012,15 @@ export namespace sesame {
14272
14012
  /** FrameHeader type. */
14273
14013
  public type: sesame.v1.wire.FrameType;
14274
14014
 
14275
- /** FrameHeader pts. */
14276
- public pts: (number|Long);
14277
-
14278
- /** FrameHeader id. */
14279
- public id: (number|Long);
14280
-
14281
- /** FrameHeader keyframe. */
14282
- public keyframe: boolean;
14283
-
14284
- /** FrameHeader codecData. */
14285
- public codecData?: (sesame.v1.wire.IMediaCodecData|null);
14286
-
14287
14015
  /** FrameHeader routingMetadata. */
14288
14016
  public routingMetadata: string;
14289
14017
 
14018
+ /** FrameHeader media. */
14019
+ public media?: (sesame.v1.wire.IMediaFrameData|null);
14020
+
14021
+ /** FrameHeader typeData. */
14022
+ public typeData?: "media";
14023
+
14290
14024
  /**
14291
14025
  * Creates a new FrameHeader instance using the specified properties.
14292
14026
  * @param [properties] Properties to set