@stinkycomputing/sesame-api-client 1.4.1-alpha.2 → 1.4.1-alpha.5

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.
@@ -3020,9 +3020,6 @@ export namespace sesame {
3020
3020
  /** SourceCommonConfig textureSize */
3021
3021
  textureSize?: (sesame.v1.sources.SourceTextureSize|null);
3022
3022
 
3023
- /** SourceCommonConfig decoderType */
3024
- decoderType?: (sesame.v1.sources.DecoderType|null);
3025
-
3026
3023
  /** SourceCommonConfig deinterlace */
3027
3024
  deinterlace?: (sesame.v1.sources.DeinterlaceType|null);
3028
3025
 
@@ -3063,9 +3060,6 @@ export namespace sesame {
3063
3060
  /** SourceCommonConfig textureSize. */
3064
3061
  public textureSize: sesame.v1.sources.SourceTextureSize;
3065
3062
 
3066
- /** SourceCommonConfig decoderType. */
3067
- public decoderType: sesame.v1.sources.DecoderType;
3068
-
3069
3063
  /** SourceCommonConfig deinterlace. */
3070
3064
  public deinterlace: sesame.v1.sources.DeinterlaceType;
3071
3065
 
@@ -3252,6 +3246,9 @@ export namespace sesame {
3252
3246
 
3253
3247
  /** RecorderSourceConfig recorderId */
3254
3248
  recorderId?: (string|null);
3249
+
3250
+ /** RecorderSourceConfig decoderType */
3251
+ decoderType?: (sesame.v1.sources.DecoderType|null);
3255
3252
  }
3256
3253
 
3257
3254
  /** Represents a RecorderSourceConfig. */
@@ -3266,6 +3263,9 @@ export namespace sesame {
3266
3263
  /** RecorderSourceConfig recorderId. */
3267
3264
  public recorderId: string;
3268
3265
 
3266
+ /** RecorderSourceConfig decoderType. */
3267
+ public decoderType: sesame.v1.sources.DecoderType;
3268
+
3269
3269
  /**
3270
3270
  * Creates a new RecorderSourceConfig instance using the specified properties.
3271
3271
  * @param [properties] Properties to set
@@ -9170,6 +9170,15 @@ export namespace sesame {
9170
9170
 
9171
9171
  /** EncoderConfig keyframeInterval */
9172
9172
  keyframeInterval?: (number|null);
9173
+
9174
+ /** EncoderConfig width */
9175
+ width?: (number|null);
9176
+
9177
+ /** EncoderConfig height */
9178
+ height?: (number|null);
9179
+
9180
+ /** EncoderConfig fps */
9181
+ fps?: (number|null);
9173
9182
  }
9174
9183
 
9175
9184
  /** Represents an EncoderConfig. */
@@ -9193,6 +9202,15 @@ export namespace sesame {
9193
9202
  /** EncoderConfig keyframeInterval. */
9194
9203
  public keyframeInterval: number;
9195
9204
 
9205
+ /** EncoderConfig width. */
9206
+ public width: number;
9207
+
9208
+ /** EncoderConfig height. */
9209
+ public height: number;
9210
+
9211
+ /** EncoderConfig fps. */
9212
+ public fps: number;
9213
+
9196
9214
  /**
9197
9215
  * Creates a new EncoderConfig instance using the specified properties.
9198
9216
  * @param [properties] Properties to set
@@ -9271,121 +9289,6 @@ export namespace sesame {
9271
9289
  public static getTypeUrl(typeUrlPrefix?: string): string;
9272
9290
  }
9273
9291
 
9274
- /** Properties of an OutputEncodedConfig. */
9275
- interface IOutputEncodedConfig {
9276
-
9277
- /** OutputEncodedConfig width */
9278
- width?: (number|null);
9279
-
9280
- /** OutputEncodedConfig height */
9281
- height?: (number|null);
9282
-
9283
- /** OutputEncodedConfig fps */
9284
- fps?: (number|null);
9285
-
9286
- /** OutputEncodedConfig encoderConfig */
9287
- encoderConfig?: (sesame.v1.outputs.IEncoderConfig|null);
9288
- }
9289
-
9290
- /** Represents an OutputEncodedConfig. */
9291
- class OutputEncodedConfig implements IOutputEncodedConfig {
9292
-
9293
- /**
9294
- * Constructs a new OutputEncodedConfig.
9295
- * @param [properties] Properties to set
9296
- */
9297
- constructor(properties?: sesame.v1.outputs.IOutputEncodedConfig);
9298
-
9299
- /** OutputEncodedConfig width. */
9300
- public width: number;
9301
-
9302
- /** OutputEncodedConfig height. */
9303
- public height: number;
9304
-
9305
- /** OutputEncodedConfig fps. */
9306
- public fps: number;
9307
-
9308
- /** OutputEncodedConfig encoderConfig. */
9309
- public encoderConfig?: (sesame.v1.outputs.IEncoderConfig|null);
9310
-
9311
- /**
9312
- * Creates a new OutputEncodedConfig instance using the specified properties.
9313
- * @param [properties] Properties to set
9314
- * @returns OutputEncodedConfig instance
9315
- */
9316
- public static create(properties?: sesame.v1.outputs.IOutputEncodedConfig): sesame.v1.outputs.OutputEncodedConfig;
9317
-
9318
- /**
9319
- * Encodes the specified OutputEncodedConfig message. Does not implicitly {@link sesame.v1.outputs.OutputEncodedConfig.verify|verify} messages.
9320
- * @param message OutputEncodedConfig message or plain object to encode
9321
- * @param [writer] Writer to encode to
9322
- * @returns Writer
9323
- */
9324
- public static encode(message: sesame.v1.outputs.IOutputEncodedConfig, writer?: $protobuf.Writer): $protobuf.Writer;
9325
-
9326
- /**
9327
- * Encodes the specified OutputEncodedConfig message, length delimited. Does not implicitly {@link sesame.v1.outputs.OutputEncodedConfig.verify|verify} messages.
9328
- * @param message OutputEncodedConfig message or plain object to encode
9329
- * @param [writer] Writer to encode to
9330
- * @returns Writer
9331
- */
9332
- public static encodeDelimited(message: sesame.v1.outputs.IOutputEncodedConfig, writer?: $protobuf.Writer): $protobuf.Writer;
9333
-
9334
- /**
9335
- * Decodes an OutputEncodedConfig message from the specified reader or buffer.
9336
- * @param reader Reader or buffer to decode from
9337
- * @param [length] Message length if known beforehand
9338
- * @returns OutputEncodedConfig
9339
- * @throws {Error} If the payload is not a reader or valid buffer
9340
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
9341
- */
9342
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.OutputEncodedConfig;
9343
-
9344
- /**
9345
- * Decodes an OutputEncodedConfig message from the specified reader or buffer, length delimited.
9346
- * @param reader Reader or buffer to decode from
9347
- * @returns OutputEncodedConfig
9348
- * @throws {Error} If the payload is not a reader or valid buffer
9349
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
9350
- */
9351
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.OutputEncodedConfig;
9352
-
9353
- /**
9354
- * Verifies an OutputEncodedConfig message.
9355
- * @param message Plain object to verify
9356
- * @returns `null` if valid, otherwise the reason why it is not
9357
- */
9358
- public static verify(message: { [k: string]: any }): (string|null);
9359
-
9360
- /**
9361
- * Creates an OutputEncodedConfig message from a plain object. Also converts values to their respective internal types.
9362
- * @param object Plain object
9363
- * @returns OutputEncodedConfig
9364
- */
9365
- public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.OutputEncodedConfig;
9366
-
9367
- /**
9368
- * Creates a plain object from an OutputEncodedConfig message. Also converts values to other types if specified.
9369
- * @param message OutputEncodedConfig
9370
- * @param [options] Conversion options
9371
- * @returns Plain object
9372
- */
9373
- public static toObject(message: sesame.v1.outputs.OutputEncodedConfig, options?: $protobuf.IConversionOptions): { [k: string]: any };
9374
-
9375
- /**
9376
- * Converts this OutputEncodedConfig to JSON.
9377
- * @returns JSON object
9378
- */
9379
- public toJSON(): { [k: string]: any };
9380
-
9381
- /**
9382
- * Gets the default type url for OutputEncodedConfig
9383
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9384
- * @returns The default type url
9385
- */
9386
- public static getTypeUrl(typeUrlPrefix?: string): string;
9387
- }
9388
-
9389
9292
  /** Properties of a DecklinkOutputConfig. */
9390
9293
  interface IDecklinkOutputConfig {
9391
9294
 
@@ -9501,8 +9404,8 @@ export namespace sesame {
9501
9404
  /** EncodedWebSocketOutputConfig channel */
9502
9405
  channel?: (string|null);
9503
9406
 
9504
- /** EncodedWebSocketOutputConfig encoded */
9505
- encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9407
+ /** EncodedWebSocketOutputConfig encoder */
9408
+ encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9506
9409
  }
9507
9410
 
9508
9411
  /** Represents an EncodedWebSocketOutputConfig. */
@@ -9517,8 +9420,8 @@ export namespace sesame {
9517
9420
  /** EncodedWebSocketOutputConfig channel. */
9518
9421
  public channel: string;
9519
9422
 
9520
- /** EncodedWebSocketOutputConfig encoded. */
9521
- public encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9423
+ /** EncodedWebSocketOutputConfig encoder. */
9424
+ public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9522
9425
 
9523
9426
  /**
9524
9427
  * Creates a new EncodedWebSocketOutputConfig instance using the specified properties.
@@ -9601,8 +9504,8 @@ export namespace sesame {
9601
9504
  /** Properties of an EncodedRecorderOutputConfig. */
9602
9505
  interface IEncodedRecorderOutputConfig {
9603
9506
 
9604
- /** EncodedRecorderOutputConfig encoded */
9605
- encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9507
+ /** EncodedRecorderOutputConfig encoder */
9508
+ encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9606
9509
 
9607
9510
  /** EncodedRecorderOutputConfig filename */
9608
9511
  filename?: (string|null);
@@ -9626,8 +9529,8 @@ export namespace sesame {
9626
9529
  */
9627
9530
  constructor(properties?: sesame.v1.outputs.IEncodedRecorderOutputConfig);
9628
9531
 
9629
- /** EncodedRecorderOutputConfig encoded. */
9630
- public encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9532
+ /** EncodedRecorderOutputConfig encoder. */
9533
+ public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9631
9534
 
9632
9535
  /** EncodedRecorderOutputConfig filename. */
9633
9536
  public filename: string;
@@ -9722,8 +9625,8 @@ export namespace sesame {
9722
9625
  /** Properties of an EncodedSuperSlowMoRecorderOutputConfig. */
9723
9626
  interface IEncodedSuperSlowMoRecorderOutputConfig {
9724
9627
 
9725
- /** EncodedSuperSlowMoRecorderOutputConfig encoded */
9726
- encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9628
+ /** EncodedSuperSlowMoRecorderOutputConfig encoder */
9629
+ encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9727
9630
 
9728
9631
  /** EncodedSuperSlowMoRecorderOutputConfig filename */
9729
9632
  filename?: (string|null);
@@ -9753,8 +9656,8 @@ export namespace sesame {
9753
9656
  */
9754
9657
  constructor(properties?: sesame.v1.outputs.IEncodedSuperSlowMoRecorderOutputConfig);
9755
9658
 
9756
- /** EncodedSuperSlowMoRecorderOutputConfig encoded. */
9757
- public encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9659
+ /** EncodedSuperSlowMoRecorderOutputConfig encoder. */
9660
+ public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9758
9661
 
9759
9662
  /** EncodedSuperSlowMoRecorderOutputConfig filename. */
9760
9663
  public filename: string;
@@ -9858,8 +9761,8 @@ export namespace sesame {
9858
9761
  /** EncodedSrtOutputConfig url */
9859
9762
  url?: (string|null);
9860
9763
 
9861
- /** EncodedSrtOutputConfig encoded */
9862
- encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9764
+ /** EncodedSrtOutputConfig encoder */
9765
+ encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9863
9766
  }
9864
9767
 
9865
9768
  /** Represents an EncodedSrtOutputConfig. */
@@ -9874,8 +9777,8 @@ export namespace sesame {
9874
9777
  /** EncodedSrtOutputConfig url. */
9875
9778
  public url: string;
9876
9779
 
9877
- /** EncodedSrtOutputConfig encoded. */
9878
- public encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9780
+ /** EncodedSrtOutputConfig encoder. */
9781
+ public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9879
9782
 
9880
9783
  /**
9881
9784
  * Creates a new EncodedSrtOutputConfig instance using the specified properties.
@@ -9958,8 +9861,8 @@ export namespace sesame {
9958
9861
  /** Properties of an EncodedMoqOutputConfig. */
9959
9862
  interface IEncodedMoqOutputConfig {
9960
9863
 
9961
- /** EncodedMoqOutputConfig encoded */
9962
- encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9864
+ /** EncodedMoqOutputConfig encoder */
9865
+ encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9963
9866
 
9964
9867
  /** EncodedMoqOutputConfig url */
9965
9868
  url?: (string|null);
@@ -9980,8 +9883,8 @@ export namespace sesame {
9980
9883
  */
9981
9884
  constructor(properties?: sesame.v1.outputs.IEncodedMoqOutputConfig);
9982
9885
 
9983
- /** EncodedMoqOutputConfig encoded. */
9984
- public encoded?: (sesame.v1.outputs.IOutputEncodedConfig|null);
9886
+ /** EncodedMoqOutputConfig encoder. */
9887
+ public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
9985
9888
 
9986
9889
  /** EncodedMoqOutputConfig url. */
9987
9890
  public url: string;