@norskvideo/norsk-api 1.0.332 → 1.0.335

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/media_pb.d.ts CHANGED
@@ -1756,6 +1756,62 @@ export declare class Context extends Message<Context> {
1756
1756
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Context;
1757
1757
  static equals(a: Context | PlainMessage<Context> | undefined, b: Context | PlainMessage<Context> | undefined): boolean;
1758
1758
  }
1759
+ /**
1760
+ * *
1761
+ * The MultipleContext message is sent from Norsk in response to a
1762
+ * change to either the Media Node's inbound set of streams for
1763
+ * certain nodes that are permitted non-disjoint context keys
1764
+ * .
1765
+ * Once received, your code **must** acknowledge the context change
1766
+ * with a call to `Media.UnblockCall`,
1767
+ * passing in the `blockingCallRef`; note that if using the
1768
+ * JavaScript SDK then this is automatically handled.
1769
+ *
1770
+ * @generated from message norsk.api.media.MultipleContext
1771
+ */
1772
+ export declare class MultipleContext extends Message<MultipleContext> {
1773
+ /**
1774
+ * @generated from field: repeated norsk.api.media.TaggedContext contexts = 1;
1775
+ */
1776
+ contexts: TaggedContext[];
1777
+ /**
1778
+ * The reference for acknowledging the context change
1779
+ *
1780
+ * @generated from field: string blocking_call_ref = 2;
1781
+ */
1782
+ blockingCallRef: string;
1783
+ constructor(data?: PartialMessage<MultipleContext>);
1784
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1785
+ static readonly typeName = "norsk.api.media.MultipleContext";
1786
+ static readonly fields: FieldList;
1787
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultipleContext;
1788
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultipleContext;
1789
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultipleContext;
1790
+ static equals(a: MultipleContext | PlainMessage<MultipleContext> | undefined, b: MultipleContext | PlainMessage<MultipleContext> | undefined): boolean;
1791
+ }
1792
+ /**
1793
+ * @generated from message norsk.api.media.TaggedContext
1794
+ */
1795
+ export declare class TaggedContext extends Message<TaggedContext> {
1796
+ /**
1797
+ * The set of streams
1798
+ *
1799
+ * @generated from field: repeated norsk.api.media.StreamMetadata streams = 1;
1800
+ */
1801
+ streams: StreamMetadata[];
1802
+ /**
1803
+ * @generated from field: norsk.api.media.InputPin pin = 2;
1804
+ */
1805
+ pin?: InputPin;
1806
+ constructor(data?: PartialMessage<TaggedContext>);
1807
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1808
+ static readonly typeName = "norsk.api.media.TaggedContext";
1809
+ static readonly fields: FieldList;
1810
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TaggedContext;
1811
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TaggedContext;
1812
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TaggedContext;
1813
+ static equals(a: TaggedContext | PlainMessage<TaggedContext> | undefined, b: TaggedContext | PlainMessage<TaggedContext> | undefined): boolean;
1814
+ }
1759
1815
  /**
1760
1816
  * @generated from message norsk.api.media.BlockingCallRef
1761
1817
  */
@@ -1894,6 +1950,13 @@ export declare class MultiStreamStatistics extends Message<MultiStreamStatistics
1894
1950
  * @generated from field: repeated norsk.api.media.MultiStreamStatistics.SingleStreamStatistics all_streams = 2;
1895
1951
  */
1896
1952
  allStreams: MultiStreamStatistics_SingleStreamStatistics[];
1953
+ /**
1954
+ * Either `"default"`, if there is only one direction, or `"input"`/`"output"`
1955
+ * (for duplex nodes, where there are two directions)
1956
+ *
1957
+ * @generated from field: string label = 3;
1958
+ */
1959
+ label: string;
1897
1960
  constructor(data?: PartialMessage<MultiStreamStatistics>);
1898
1961
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1899
1962
  static readonly typeName = "norsk.api.media.MultiStreamStatistics";
@@ -2281,6 +2344,104 @@ export declare class RtmpOnStream extends Message<RtmpOnStream> {
2281
2344
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpOnStream;
2282
2345
  static equals(a: RtmpOnStream | PlainMessage<RtmpOnStream> | undefined, b: RtmpOnStream | PlainMessage<RtmpOnStream> | undefined): boolean;
2283
2346
  }
2347
+ /**
2348
+ * *
2349
+ * Sent to your code when an error is detected on an active connection.
2350
+ * Typically you will receive a disconnected event immediately after
2351
+ *
2352
+ * @generated from message norsk.api.media.RtmpError
2353
+ */
2354
+ export declare class RtmpError extends Message<RtmpError> {
2355
+ /**
2356
+ * @generated from field: norsk.api.media.ConnectionId connection_id = 1;
2357
+ */
2358
+ connectionId?: ConnectionId;
2359
+ /**
2360
+ * @generated from oneof norsk.api.media.RtmpError.error
2361
+ */
2362
+ error: {
2363
+ /**
2364
+ * @generated from field: norsk.api.media.RtmpError.UnsupportedVideo unsupported_video = 2;
2365
+ */
2366
+ value: RtmpError_UnsupportedVideo;
2367
+ case: "unsupportedVideo";
2368
+ } | {
2369
+ /**
2370
+ * @generated from field: norsk.api.media.RtmpError.UnsupportedAudio unsupported_audio = 3;
2371
+ */
2372
+ value: RtmpError_UnsupportedAudio;
2373
+ case: "unsupportedAudio";
2374
+ } | {
2375
+ case: undefined;
2376
+ value?: undefined;
2377
+ };
2378
+ constructor(data?: PartialMessage<RtmpError>);
2379
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2380
+ static readonly typeName = "norsk.api.media.RtmpError";
2381
+ static readonly fields: FieldList;
2382
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpError;
2383
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpError;
2384
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpError;
2385
+ static equals(a: RtmpError | PlainMessage<RtmpError> | undefined, b: RtmpError | PlainMessage<RtmpError> | undefined): boolean;
2386
+ }
2387
+ /**
2388
+ * @generated from message norsk.api.media.RtmpError.UnsupportedVideo
2389
+ */
2390
+ export declare class RtmpError_UnsupportedVideo extends Message<RtmpError_UnsupportedVideo> {
2391
+ /**
2392
+ * @generated from field: string type = 1;
2393
+ */
2394
+ type: string;
2395
+ constructor(data?: PartialMessage<RtmpError_UnsupportedVideo>);
2396
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2397
+ static readonly typeName = "norsk.api.media.RtmpError.UnsupportedVideo";
2398
+ static readonly fields: FieldList;
2399
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpError_UnsupportedVideo;
2400
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpError_UnsupportedVideo;
2401
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpError_UnsupportedVideo;
2402
+ static equals(a: RtmpError_UnsupportedVideo | PlainMessage<RtmpError_UnsupportedVideo> | undefined, b: RtmpError_UnsupportedVideo | PlainMessage<RtmpError_UnsupportedVideo> | undefined): boolean;
2403
+ }
2404
+ /**
2405
+ * @generated from message norsk.api.media.RtmpError.UnsupportedAudio
2406
+ */
2407
+ export declare class RtmpError_UnsupportedAudio extends Message<RtmpError_UnsupportedAudio> {
2408
+ /**
2409
+ * @generated from field: string type = 1;
2410
+ */
2411
+ type: string;
2412
+ constructor(data?: PartialMessage<RtmpError_UnsupportedAudio>);
2413
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2414
+ static readonly typeName = "norsk.api.media.RtmpError.UnsupportedAudio";
2415
+ static readonly fields: FieldList;
2416
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpError_UnsupportedAudio;
2417
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpError_UnsupportedAudio;
2418
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpError_UnsupportedAudio;
2419
+ static equals(a: RtmpError_UnsupportedAudio | PlainMessage<RtmpError_UnsupportedAudio> | undefined, b: RtmpError_UnsupportedAudio | PlainMessage<RtmpError_UnsupportedAudio> | undefined): boolean;
2420
+ }
2421
+ /**
2422
+ * *
2423
+ * Sent to your code when a bytes-read report is received from the peer
2424
+ *
2425
+ * @generated from message norsk.api.media.RtmpBytesRead
2426
+ */
2427
+ export declare class RtmpBytesRead extends Message<RtmpBytesRead> {
2428
+ /**
2429
+ * @generated from field: norsk.api.media.ConnectionId connection_id = 1;
2430
+ */
2431
+ connectionId?: ConnectionId;
2432
+ /**
2433
+ * @generated from field: int64 bytes_read = 2;
2434
+ */
2435
+ bytesRead: bigint;
2436
+ constructor(data?: PartialMessage<RtmpBytesRead>);
2437
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2438
+ static readonly typeName = "norsk.api.media.RtmpBytesRead";
2439
+ static readonly fields: FieldList;
2440
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpBytesRead;
2441
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpBytesRead;
2442
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpBytesRead;
2443
+ static equals(a: RtmpBytesRead | PlainMessage<RtmpBytesRead> | undefined, b: RtmpBytesRead | PlainMessage<RtmpBytesRead> | undefined): boolean;
2444
+ }
2284
2445
  /**
2285
2446
  * *
2286
2447
  * Messages that Norsk can send to your code in response to various RTMP
@@ -2328,6 +2489,18 @@ export declare class RtmpServerInputEvent extends Message<RtmpServerInputEvent>
2328
2489
  */
2329
2490
  value: MultiStreamStatistics;
2330
2491
  case: "streamStatistics";
2492
+ } | {
2493
+ /**
2494
+ * @generated from field: norsk.api.media.RtmpError error = 7;
2495
+ */
2496
+ value: RtmpError;
2497
+ case: "error";
2498
+ } | {
2499
+ /**
2500
+ * @generated from field: norsk.api.media.RtmpBytesRead bytes_read = 8;
2501
+ */
2502
+ value: RtmpBytesRead;
2503
+ case: "bytesRead";
2331
2504
  } | {
2332
2505
  case: undefined;
2333
2506
  value?: undefined;
@@ -2553,6 +2726,12 @@ export declare class FileTsInputConfiguration extends Message<FileTsInputConfigu
2553
2726
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
2554
2727
  */
2555
2728
  statsSampling?: StreamStatisticsSampling;
2729
+ /**
2730
+ * Loop back to play the start after reaching the end of the file
2731
+ *
2732
+ * @generated from field: bool loop = 5;
2733
+ */
2734
+ loop: boolean;
2556
2735
  constructor(data?: PartialMessage<FileTsInputConfiguration>);
2557
2736
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2558
2737
  static readonly typeName = "norsk.api.media.FileTsInputConfiguration";
@@ -3570,6 +3749,12 @@ export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfi
3570
3749
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
3571
3750
  */
3572
3751
  statsSampling?: StreamStatisticsSampling;
3752
+ /**
3753
+ * Loop back to play the start after reaching the end of the file
3754
+ *
3755
+ * @generated from field: bool loop = 5;
3756
+ */
3757
+ loop: boolean;
3573
3758
  constructor(data?: PartialMessage<FileMp4InputConfiguration>);
3574
3759
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3575
3760
  static readonly typeName = "norsk.api.media.FileMp4InputConfiguration";
@@ -4094,6 +4279,52 @@ export declare class BrowserInputEvent extends Message<BrowserInputEvent> {
4094
4279
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BrowserInputEvent;
4095
4280
  static equals(a: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined, b: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined): boolean;
4096
4281
  }
4282
+ /**
4283
+ * @generated from message norsk.api.media.WebRtcIceServerConfiguration
4284
+ */
4285
+ export declare class WebRtcIceServerConfiguration extends Message<WebRtcIceServerConfiguration> {
4286
+ /**
4287
+ * @generated from field: repeated norsk.api.media.WebRtcIceServer servers = 1;
4288
+ */
4289
+ servers: WebRtcIceServer[];
4290
+ constructor(data?: PartialMessage<WebRtcIceServerConfiguration>);
4291
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4292
+ static readonly typeName = "norsk.api.media.WebRtcIceServerConfiguration";
4293
+ static readonly fields: FieldList;
4294
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServerConfiguration;
4295
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
4296
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
4297
+ static equals(a: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined, b: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined): boolean;
4298
+ }
4299
+ /**
4300
+ * @generated from message norsk.api.media.WebRtcIceServer
4301
+ */
4302
+ export declare class WebRtcIceServer extends Message<WebRtcIceServer> {
4303
+ /**
4304
+ * @generated from field: repeated string urls = 1;
4305
+ */
4306
+ urls: string[];
4307
+ /**
4308
+ * The username to use when logging into a TURN server. Ignored otherwise.
4309
+ *
4310
+ * @generated from field: string username = 2;
4311
+ */
4312
+ username: string;
4313
+ /**
4314
+ * The username to use when logging into a TURN server. Ignored otherwise.
4315
+ *
4316
+ * @generated from field: string credential = 3;
4317
+ */
4318
+ credential: string;
4319
+ constructor(data?: PartialMessage<WebRtcIceServer>);
4320
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4321
+ static readonly typeName = "norsk.api.media.WebRtcIceServer";
4322
+ static readonly fields: FieldList;
4323
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServer;
4324
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServer;
4325
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServer;
4326
+ static equals(a: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined, b: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined): boolean;
4327
+ }
4097
4328
  /**
4098
4329
  * @generated from message norsk.api.media.WhipInputConfiguration
4099
4330
  */
@@ -4110,6 +4341,12 @@ export declare class WhipInputConfiguration extends Message<WhipInputConfigurati
4110
4341
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
4111
4342
  */
4112
4343
  statsSampling?: StreamStatisticsSampling;
4344
+ /**
4345
+ * Optionally configure ICE servers (STUN/TURN)
4346
+ *
4347
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 4;
4348
+ */
4349
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
4113
4350
  constructor(data?: PartialMessage<WhipInputConfiguration>);
4114
4351
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4115
4352
  static readonly typeName = "norsk.api.media.WhipInputConfiguration";
@@ -4285,7 +4522,8 @@ export declare class ComposePart extends Message<ComposePart> {
4285
4522
  * in percentage terms, or a notional resolution can be used that is
4286
4523
  * independant of the source resolutions that may be provided.
4287
4524
  *
4288
- * If unset, this will be overriden by a global reference resolution if present
4525
+ * If unset, this will be overriden by a global reference resolution if
4526
+ * present
4289
4527
  *
4290
4528
  *
4291
4529
  * @generated from field: norsk.api.media.Resolution reference_resolution = 8;
@@ -4468,10 +4706,10 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
4468
4706
  */
4469
4707
  parts: ComposePart[];
4470
4708
  /**
4471
- * * Optionally supply a fallback reference resolution. This allows description of the
4472
- * composition in a desired coordinate system, e.g. a resolution of 100x100
4473
- * can be specified to allow the source and destination areas to be described
4474
- * in percentage terms, or a notional resolution can be used that is
4709
+ * * Optionally supply a fallback reference resolution. This allows description
4710
+ * of the composition in a desired coordinate system, e.g. a resolution of
4711
+ * 100x100 can be specified to allow the source and destination areas to be
4712
+ * described in percentage terms, or a notional resolution can be used that is
4475
4713
  * independant of the source resolutions that may be provided.
4476
4714
  *
4477
4715
  * if set here, this reference resolution will be applied to
@@ -5384,6 +5622,14 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
5384
5622
  * @generated from field: string encryption_key = 2;
5385
5623
  */
5386
5624
  encryptionKey: string;
5625
+ /**
5626
+ * @generated from field: string encryption_pssh = 3;
5627
+ */
5628
+ encryptionPssh: string;
5629
+ /**
5630
+ * @generated from field: norsk.api.media.Mp4Encryption.Mp4EncryptionScheme encryption_scheme = 4;
5631
+ */
5632
+ encryptionScheme: Mp4Encryption_Mp4EncryptionScheme;
5387
5633
  constructor(data?: PartialMessage<Mp4Encryption>);
5388
5634
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5389
5635
  static readonly typeName = "norsk.api.media.Mp4Encryption";
@@ -5393,6 +5639,19 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
5393
5639
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Mp4Encryption;
5394
5640
  static equals(a: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined, b: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined): boolean;
5395
5641
  }
5642
+ /**
5643
+ * @generated from enum norsk.api.media.Mp4Encryption.Mp4EncryptionScheme
5644
+ */
5645
+ export declare enum Mp4Encryption_Mp4EncryptionScheme {
5646
+ /**
5647
+ * @generated from enum value: MP4_ENCRYPTION_SCHEME_CBCS = 0;
5648
+ */
5649
+ CBCS = 0,
5650
+ /**
5651
+ * @generated from enum value: MP4_ENCRYPTION_SCHEME_CENC = 1;
5652
+ */
5653
+ CENC = 1
5654
+ }
5396
5655
  /**
5397
5656
  * @generated from message norsk.api.media.AwsS3PushDestination
5398
5657
  */
@@ -5598,6 +5857,10 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
5598
5857
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
5599
5858
  */
5600
5859
  statsSampling?: StreamStatisticsSampling;
5860
+ /**
5861
+ * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
5862
+ */
5863
+ destinations: CMAFDestination[];
5601
5864
  constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
5602
5865
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5603
5866
  static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
@@ -5626,6 +5889,12 @@ export declare class HlsTsVideoMessage extends Message<HlsTsVideoMessage> {
5626
5889
  */
5627
5890
  value: HlsTsVideoConfiguration;
5628
5891
  case: "configuration";
5892
+ } | {
5893
+ /**
5894
+ * @generated from field: norsk.api.media.UpdateCredentials update_credentials = 3;
5895
+ */
5896
+ value: UpdateCredentials;
5897
+ case: "updateCredentials";
5629
5898
  } | {
5630
5899
  case: undefined;
5631
5900
  value?: undefined;
@@ -5738,6 +6007,10 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
5738
6007
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
5739
6008
  */
5740
6009
  statsSampling?: StreamStatisticsSampling;
6010
+ /**
6011
+ * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
6012
+ */
6013
+ destinations: CMAFDestination[];
5741
6014
  constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
5742
6015
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5743
6016
  static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
@@ -5766,6 +6039,12 @@ export declare class HlsTsAudioMessage extends Message<HlsTsAudioMessage> {
5766
6039
  */
5767
6040
  value: HlsTsAudioConfiguration;
5768
6041
  case: "configuration";
6042
+ } | {
6043
+ /**
6044
+ * @generated from field: norsk.api.media.UpdateCredentials update_credentials = 3;
6045
+ */
6046
+ value: UpdateCredentials;
6047
+ case: "updateCredentials";
5769
6048
  } | {
5770
6049
  case: undefined;
5771
6050
  value?: undefined;
@@ -5796,9 +6075,21 @@ export declare class CmafWebVttConfiguration extends Message<CmafWebVttConfigura
5796
6075
  */
5797
6076
  delayOutputMs: number;
5798
6077
  /**
5799
- * @generated from field: string sessionId = 4;
6078
+ * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
5800
6079
  */
5801
- sessionId: string;
6080
+ destinations: CMAFDestination[];
6081
+ /**
6082
+ * @generated from field: string hls_cache_directory = 6;
6083
+ */
6084
+ hlsCacheDirectory: string;
6085
+ /**
6086
+ * @generated from field: uint32 maximum_playlist_segments = 7;
6087
+ */
6088
+ maximumPlaylistSegments: number;
6089
+ /**
6090
+ * @generated from field: norsk.api.media.Interval pts_adjustment = 8;
6091
+ */
6092
+ ptsAdjustment?: Interval;
5802
6093
  constructor(data?: PartialMessage<CmafWebVttConfiguration>);
5803
6094
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5804
6095
  static readonly typeName = "norsk.api.media.CmafWebVttConfiguration";
@@ -5808,6 +6099,42 @@ export declare class CmafWebVttConfiguration extends Message<CmafWebVttConfigura
5808
6099
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttConfiguration;
5809
6100
  static equals(a: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined, b: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined): boolean;
5810
6101
  }
6102
+ /**
6103
+ * TODO rethink this, not exposed to SDK yet
6104
+ * Only credentials are updateable
6105
+ *
6106
+ * @generated from message norsk.api.media.CmafWebVttUpdateConfiguration
6107
+ */
6108
+ export declare class CmafWebVttUpdateConfiguration extends Message<CmafWebVttUpdateConfiguration> {
6109
+ /**
6110
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
6111
+ */
6112
+ id?: MediaNodeId;
6113
+ /**
6114
+ * @generated from field: float retention_period_seconds = 2;
6115
+ */
6116
+ retentionPeriodSeconds: number;
6117
+ /**
6118
+ * @generated from field: uint32 maximum_playlist_segments = 3;
6119
+ */
6120
+ maximumPlaylistSegments: number;
6121
+ /**
6122
+ * @generated from field: norsk.api.media.Interval pts_adjustment = 4;
6123
+ */
6124
+ ptsAdjustment?: Interval;
6125
+ /**
6126
+ * @generated from field: norsk.api.media.UpdateCredentials update_credentials = 5;
6127
+ */
6128
+ updateCredentials?: UpdateCredentials;
6129
+ constructor(data?: PartialMessage<CmafWebVttUpdateConfiguration>);
6130
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6131
+ static readonly typeName = "norsk.api.media.CmafWebVttUpdateConfiguration";
6132
+ static readonly fields: FieldList;
6133
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafWebVttUpdateConfiguration;
6134
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafWebVttUpdateConfiguration;
6135
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttUpdateConfiguration;
6136
+ static equals(a: CmafWebVttUpdateConfiguration | PlainMessage<CmafWebVttUpdateConfiguration> | undefined, b: CmafWebVttUpdateConfiguration | PlainMessage<CmafWebVttUpdateConfiguration> | undefined): boolean;
6137
+ }
5811
6138
  /**
5812
6139
  * @generated from message norsk.api.media.AwsCredentials
5813
6140
  */
@@ -5854,80 +6181,6 @@ export declare class UpdateCredentials extends Message<UpdateCredentials> {
5854
6181
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateCredentials;
5855
6182
  static equals(a: UpdateCredentials | PlainMessage<UpdateCredentials> | undefined, b: UpdateCredentials | PlainMessage<UpdateCredentials> | undefined): boolean;
5856
6183
  }
5857
- /**
5858
- * @generated from message norsk.api.media.HlsWebVttPushConfiguration
5859
- */
5860
- export declare class HlsWebVttPushConfiguration extends Message<HlsWebVttPushConfiguration> {
5861
- /**
5862
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
5863
- */
5864
- id?: MediaNodeId;
5865
- /**
5866
- * @generated from field: float segment_duration_seconds = 2;
5867
- */
5868
- segmentDurationSeconds: number;
5869
- /**
5870
- * @generated from field: float delay_output_ms = 3;
5871
- */
5872
- delayOutputMs: number;
5873
- /**
5874
- * @generated from field: norsk.api.media.CMAFDestination destination = 4;
5875
- */
5876
- destination?: CMAFDestination;
5877
- /**
5878
- * @generated from field: float retention_period_s = 6;
5879
- */
5880
- retentionPeriodS: number;
5881
- /**
5882
- * @generated from field: string hls_cache_directory = 7;
5883
- */
5884
- hlsCacheDirectory: string;
5885
- /**
5886
- * @generated from field: uint32 maximum_playlist_segments = 8;
5887
- */
5888
- maximumPlaylistSegments: number;
5889
- /**
5890
- * @generated from field: norsk.api.media.Interval pts_adjustment = 9;
5891
- */
5892
- ptsAdjustment?: Interval;
5893
- constructor(data?: PartialMessage<HlsWebVttPushConfiguration>);
5894
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5895
- static readonly typeName = "norsk.api.media.HlsWebVttPushConfiguration";
5896
- static readonly fields: FieldList;
5897
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsWebVttPushConfiguration;
5898
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsWebVttPushConfiguration;
5899
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsWebVttPushConfiguration;
5900
- static equals(a: HlsWebVttPushConfiguration | PlainMessage<HlsWebVttPushConfiguration> | undefined, b: HlsWebVttPushConfiguration | PlainMessage<HlsWebVttPushConfiguration> | undefined): boolean;
5901
- }
5902
- /**
5903
- * @generated from message norsk.api.media.HlsWebVttPushUpdateConfiguration
5904
- */
5905
- export declare class HlsWebVttPushUpdateConfiguration extends Message<HlsWebVttPushUpdateConfiguration> {
5906
- /**
5907
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
5908
- */
5909
- id?: MediaNodeId;
5910
- /**
5911
- * @generated from field: float retention_period_s = 2;
5912
- */
5913
- retentionPeriodS: number;
5914
- /**
5915
- * @generated from field: uint32 maximum_playlist_segments = 3;
5916
- */
5917
- maximumPlaylistSegments: number;
5918
- /**
5919
- * @generated from field: norsk.api.media.Interval pts_adjustment = 4;
5920
- */
5921
- ptsAdjustment?: Interval;
5922
- constructor(data?: PartialMessage<HlsWebVttPushUpdateConfiguration>);
5923
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5924
- static readonly typeName = "norsk.api.media.HlsWebVttPushUpdateConfiguration";
5925
- static readonly fields: FieldList;
5926
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsWebVttPushUpdateConfiguration;
5927
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsWebVttPushUpdateConfiguration;
5928
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsWebVttPushUpdateConfiguration;
5929
- static equals(a: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined, b: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined): boolean;
5930
- }
5931
6184
  /**
5932
6185
  * @generated from message norsk.api.media.CmafWebVttMessage
5933
6186
  */
@@ -5947,6 +6200,18 @@ export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
5947
6200
  */
5948
6201
  value: CmafWebVttConfiguration;
5949
6202
  case: "configuration";
6203
+ } | {
6204
+ /**
6205
+ * @generated from field: norsk.api.media.CmafWebVttUpdateConfiguration update_config = 3;
6206
+ */
6207
+ value: CmafWebVttUpdateConfiguration;
6208
+ case: "updateConfig";
6209
+ } | {
6210
+ /**
6211
+ * @generated from field: norsk.api.media.UpdateCredentials update_credentials = 4;
6212
+ */
6213
+ value: UpdateCredentials;
6214
+ case: "updateCredentials";
5950
6215
  } | {
5951
6216
  case: undefined;
5952
6217
  value?: undefined;
@@ -5961,49 +6226,11 @@ export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
5961
6226
  static equals(a: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined, b: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined): boolean;
5962
6227
  }
5963
6228
  /**
5964
- * @generated from message norsk.api.media.HlsWebVttPushMessage
6229
+ * @generated from message norsk.api.media.CmafMasterConfiguration
5965
6230
  */
5966
- export declare class HlsWebVttPushMessage extends Message<HlsWebVttPushMessage> {
6231
+ export declare class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
5967
6232
  /**
5968
- * @generated from oneof norsk.api.media.HlsWebVttPushMessage.message
5969
- */
5970
- message: {
5971
- /**
5972
- * @generated from field: norsk.api.media.Subscription subscription = 1;
5973
- */
5974
- value: Subscription;
5975
- case: "subscription";
5976
- } | {
5977
- /**
5978
- * @generated from field: norsk.api.media.HlsWebVttPushConfiguration configuration = 2;
5979
- */
5980
- value: HlsWebVttPushConfiguration;
5981
- case: "configuration";
5982
- } | {
5983
- /**
5984
- * @generated from field: norsk.api.media.HlsWebVttPushUpdateConfiguration update_config = 3;
5985
- */
5986
- value: HlsWebVttPushUpdateConfiguration;
5987
- case: "updateConfig";
5988
- } | {
5989
- case: undefined;
5990
- value?: undefined;
5991
- };
5992
- constructor(data?: PartialMessage<HlsWebVttPushMessage>);
5993
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5994
- static readonly typeName = "norsk.api.media.HlsWebVttPushMessage";
5995
- static readonly fields: FieldList;
5996
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsWebVttPushMessage;
5997
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsWebVttPushMessage;
5998
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsWebVttPushMessage;
5999
- static equals(a: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined, b: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined): boolean;
6000
- }
6001
- /**
6002
- * @generated from message norsk.api.media.CmafMasterConfiguration
6003
- */
6004
- export declare class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
6005
- /**
6006
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
6233
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
6007
6234
  */
6008
6235
  id?: MediaNodeId;
6009
6236
  /**
@@ -6065,197 +6292,6 @@ export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
6065
6292
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterMessage;
6066
6293
  static equals(a: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined, b: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined): boolean;
6067
6294
  }
6068
- /**
6069
- * @generated from message norsk.api.media.HlsMasterPushConfiguration
6070
- */
6071
- export declare class HlsMasterPushConfiguration extends Message<HlsMasterPushConfiguration> {
6072
- /**
6073
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
6074
- */
6075
- id?: MediaNodeId;
6076
- /**
6077
- * @generated from field: string playlist_name = 2;
6078
- */
6079
- playlistName: string;
6080
- /**
6081
- * @generated from field: norsk.api.media.CMAFDestination destination = 3;
6082
- */
6083
- destination?: CMAFDestination;
6084
- /**
6085
- * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
6086
- */
6087
- statsSampling?: StreamStatisticsSampling;
6088
- constructor(data?: PartialMessage<HlsMasterPushConfiguration>);
6089
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6090
- static readonly typeName = "norsk.api.media.HlsMasterPushConfiguration";
6091
- static readonly fields: FieldList;
6092
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsMasterPushConfiguration;
6093
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsMasterPushConfiguration;
6094
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsMasterPushConfiguration;
6095
- static equals(a: HlsMasterPushConfiguration | PlainMessage<HlsMasterPushConfiguration> | undefined, b: HlsMasterPushConfiguration | PlainMessage<HlsMasterPushConfiguration> | undefined): boolean;
6096
- }
6097
- /**
6098
- * @generated from message norsk.api.media.HlsMasterPushMessage
6099
- */
6100
- export declare class HlsMasterPushMessage extends Message<HlsMasterPushMessage> {
6101
- /**
6102
- * @generated from oneof norsk.api.media.HlsMasterPushMessage.message
6103
- */
6104
- message: {
6105
- /**
6106
- * @generated from field: norsk.api.media.Subscription subscription = 1;
6107
- */
6108
- value: Subscription;
6109
- case: "subscription";
6110
- } | {
6111
- /**
6112
- * @generated from field: norsk.api.media.HlsMasterPushConfiguration configuration = 2;
6113
- */
6114
- value: HlsMasterPushConfiguration;
6115
- case: "configuration";
6116
- } | {
6117
- case: undefined;
6118
- value?: undefined;
6119
- };
6120
- constructor(data?: PartialMessage<HlsMasterPushMessage>);
6121
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6122
- static readonly typeName = "norsk.api.media.HlsMasterPushMessage";
6123
- static readonly fields: FieldList;
6124
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsMasterPushMessage;
6125
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsMasterPushMessage;
6126
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsMasterPushMessage;
6127
- static equals(a: HlsMasterPushMessage | PlainMessage<HlsMasterPushMessage> | undefined, b: HlsMasterPushMessage | PlainMessage<HlsMasterPushMessage> | undefined): boolean;
6128
- }
6129
- /**
6130
- * @generated from message norsk.api.media.HlsTsVideoPushConfiguration
6131
- */
6132
- export declare class HlsTsVideoPushConfiguration extends Message<HlsTsVideoPushConfiguration> {
6133
- /**
6134
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
6135
- */
6136
- id?: MediaNodeId;
6137
- /**
6138
- * @generated from field: norsk.api.media.CMAFDestination destination = 2;
6139
- */
6140
- destination?: CMAFDestination;
6141
- /**
6142
- * @generated from field: float segment_duration_seconds = 3;
6143
- */
6144
- segmentDurationSeconds: number;
6145
- /**
6146
- * @generated from field: float delay_output_ms = 4;
6147
- */
6148
- delayOutputMs: number;
6149
- /**
6150
- * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
6151
- */
6152
- statsSampling?: StreamStatisticsSampling;
6153
- constructor(data?: PartialMessage<HlsTsVideoPushConfiguration>);
6154
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6155
- static readonly typeName = "norsk.api.media.HlsTsVideoPushConfiguration";
6156
- static readonly fields: FieldList;
6157
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsVideoPushConfiguration;
6158
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsTsVideoPushConfiguration;
6159
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsTsVideoPushConfiguration;
6160
- static equals(a: HlsTsVideoPushConfiguration | PlainMessage<HlsTsVideoPushConfiguration> | undefined, b: HlsTsVideoPushConfiguration | PlainMessage<HlsTsVideoPushConfiguration> | undefined): boolean;
6161
- }
6162
- /**
6163
- * @generated from message norsk.api.media.HlsTsVideoPushMessage
6164
- */
6165
- export declare class HlsTsVideoPushMessage extends Message<HlsTsVideoPushMessage> {
6166
- /**
6167
- * @generated from oneof norsk.api.media.HlsTsVideoPushMessage.message
6168
- */
6169
- message: {
6170
- /**
6171
- * @generated from field: norsk.api.media.Subscription subscription = 1;
6172
- */
6173
- value: Subscription;
6174
- case: "subscription";
6175
- } | {
6176
- /**
6177
- * @generated from field: norsk.api.media.HlsTsVideoPushConfiguration configuration = 2;
6178
- */
6179
- value: HlsTsVideoPushConfiguration;
6180
- case: "configuration";
6181
- } | {
6182
- case: undefined;
6183
- value?: undefined;
6184
- };
6185
- constructor(data?: PartialMessage<HlsTsVideoPushMessage>);
6186
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6187
- static readonly typeName = "norsk.api.media.HlsTsVideoPushMessage";
6188
- static readonly fields: FieldList;
6189
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsVideoPushMessage;
6190
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsTsVideoPushMessage;
6191
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsTsVideoPushMessage;
6192
- static equals(a: HlsTsVideoPushMessage | PlainMessage<HlsTsVideoPushMessage> | undefined, b: HlsTsVideoPushMessage | PlainMessage<HlsTsVideoPushMessage> | undefined): boolean;
6193
- }
6194
- /**
6195
- * @generated from message norsk.api.media.HlsTsAudioPushConfiguration
6196
- */
6197
- export declare class HlsTsAudioPushConfiguration extends Message<HlsTsAudioPushConfiguration> {
6198
- /**
6199
- * @generated from field: norsk.api.media.MediaNodeId id = 1;
6200
- */
6201
- id?: MediaNodeId;
6202
- /**
6203
- * @generated from field: norsk.api.media.CMAFDestination destination = 2;
6204
- */
6205
- destination?: CMAFDestination;
6206
- /**
6207
- * @generated from field: float segment_duration_seconds = 3;
6208
- */
6209
- segmentDurationSeconds: number;
6210
- /**
6211
- * @generated from field: float delay_output_ms = 4;
6212
- */
6213
- delayOutputMs: number;
6214
- /**
6215
- * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
6216
- */
6217
- statsSampling?: StreamStatisticsSampling;
6218
- constructor(data?: PartialMessage<HlsTsAudioPushConfiguration>);
6219
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6220
- static readonly typeName = "norsk.api.media.HlsTsAudioPushConfiguration";
6221
- static readonly fields: FieldList;
6222
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsAudioPushConfiguration;
6223
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsTsAudioPushConfiguration;
6224
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsTsAudioPushConfiguration;
6225
- static equals(a: HlsTsAudioPushConfiguration | PlainMessage<HlsTsAudioPushConfiguration> | undefined, b: HlsTsAudioPushConfiguration | PlainMessage<HlsTsAudioPushConfiguration> | undefined): boolean;
6226
- }
6227
- /**
6228
- * @generated from message norsk.api.media.HlsTsAudioPushMessage
6229
- */
6230
- export declare class HlsTsAudioPushMessage extends Message<HlsTsAudioPushMessage> {
6231
- /**
6232
- * @generated from oneof norsk.api.media.HlsTsAudioPushMessage.message
6233
- */
6234
- message: {
6235
- /**
6236
- * @generated from field: norsk.api.media.Subscription subscription = 1;
6237
- */
6238
- value: Subscription;
6239
- case: "subscription";
6240
- } | {
6241
- /**
6242
- * @generated from field: norsk.api.media.HlsTsAudioPushConfiguration configuration = 2;
6243
- */
6244
- value: HlsTsAudioPushConfiguration;
6245
- case: "configuration";
6246
- } | {
6247
- case: undefined;
6248
- value?: undefined;
6249
- };
6250
- constructor(data?: PartialMessage<HlsTsAudioPushMessage>);
6251
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6252
- static readonly typeName = "norsk.api.media.HlsTsAudioPushMessage";
6253
- static readonly fields: FieldList;
6254
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsAudioPushMessage;
6255
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsTsAudioPushMessage;
6256
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsTsAudioPushMessage;
6257
- static equals(a: HlsTsAudioPushMessage | PlainMessage<HlsTsAudioPushMessage> | undefined, b: HlsTsAudioPushMessage | PlainMessage<HlsTsAudioPushMessage> | undefined): boolean;
6258
- }
6259
6295
  /**
6260
6296
  * @generated from message norsk.api.media.HlsTsCombinedPushConfiguration
6261
6297
  */
@@ -6699,6 +6735,50 @@ export declare class WhipOutputMessage extends Message<WhipOutputMessage> {
6699
6735
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputMessage;
6700
6736
  static equals(a: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined, b: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined): boolean;
6701
6737
  }
6738
+ /**
6739
+ * @generated from message norsk.api.media.WhipOutputEvent
6740
+ */
6741
+ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6742
+ /**
6743
+ * @generated from oneof norsk.api.media.WhipOutputEvent.message
6744
+ */
6745
+ message: {
6746
+ /**
6747
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
6748
+ */
6749
+ value: MediaNodeId;
6750
+ case: "nodeId";
6751
+ } | {
6752
+ /**
6753
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
6754
+ */
6755
+ value: SubscriptionResponse;
6756
+ case: "subscriptionResponse";
6757
+ } | {
6758
+ /**
6759
+ * @generated from field: norsk.api.media.Context inbound_context = 3;
6760
+ */
6761
+ value: Context;
6762
+ case: "inboundContext";
6763
+ } | {
6764
+ /**
6765
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6766
+ */
6767
+ value: MultiStreamStatistics;
6768
+ case: "streamStatistics";
6769
+ } | {
6770
+ case: undefined;
6771
+ value?: undefined;
6772
+ };
6773
+ constructor(data?: PartialMessage<WhipOutputEvent>);
6774
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6775
+ static readonly typeName = "norsk.api.media.WhipOutputEvent";
6776
+ static readonly fields: FieldList;
6777
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
6778
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6779
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6780
+ static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
6781
+ }
6702
6782
  /**
6703
6783
  * @generated from message norsk.api.media.WebRTCBrowserDuplexConfiguration
6704
6784
  */
@@ -6711,6 +6791,12 @@ export declare class WebRTCBrowserDuplexConfiguration extends Message<WebRTCBrow
6711
6791
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
6712
6792
  */
6713
6793
  statsSampling?: StreamStatisticsSampling;
6794
+ /**
6795
+ * Optionally configure ICE servers (STUN/TURN)
6796
+ *
6797
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6798
+ */
6799
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
6714
6800
  constructor(data?: PartialMessage<WebRTCBrowserDuplexConfiguration>);
6715
6801
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6716
6802
  static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexConfiguration";
@@ -6753,11 +6839,11 @@ export declare class WebRTCBrowserDuplexMessage extends Message<WebRTCBrowserDup
6753
6839
  static equals(a: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined, b: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined): boolean;
6754
6840
  }
6755
6841
  /**
6756
- * @generated from message norsk.api.media.WhipOutputEvent
6842
+ * @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
6757
6843
  */
6758
- export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6844
+ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuplexEvent> {
6759
6845
  /**
6760
- * @generated from oneof norsk.api.media.WhipOutputEvent.message
6846
+ * @generated from oneof norsk.api.media.WebRTCBrowserDuplexEvent.message
6761
6847
  */
6762
6848
  message: {
6763
6849
  /**
@@ -6779,7 +6865,13 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6779
6865
  case: "inboundContext";
6780
6866
  } | {
6781
6867
  /**
6782
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6868
+ * @generated from field: norsk.api.media.Context outbound_context = 4;
6869
+ */
6870
+ value: Context;
6871
+ case: "outboundContext";
6872
+ } | {
6873
+ /**
6874
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
6783
6875
  */
6784
6876
  value: MultiStreamStatistics;
6785
6877
  case: "streamStatistics";
@@ -6787,21 +6879,80 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
6787
6879
  case: undefined;
6788
6880
  value?: undefined;
6789
6881
  };
6790
- constructor(data?: PartialMessage<WhipOutputEvent>);
6882
+ constructor(data?: PartialMessage<WebRTCBrowserDuplexEvent>);
6791
6883
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6792
- static readonly typeName = "norsk.api.media.WhipOutputEvent";
6884
+ static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexEvent";
6793
6885
  static readonly fields: FieldList;
6794
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
6795
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6796
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
6797
- static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
6886
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexEvent;
6887
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6888
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6889
+ static equals(a: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined, b: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined): boolean;
6798
6890
  }
6799
6891
  /**
6800
- * @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
6892
+ * @generated from message norsk.api.media.WhepOutputConfiguration
6801
6893
  */
6802
- export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuplexEvent> {
6894
+ export declare class WhepOutputConfiguration extends Message<WhepOutputConfiguration> {
6803
6895
  /**
6804
- * @generated from oneof norsk.api.media.WebRTCBrowserDuplexEvent.message
6896
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
6897
+ */
6898
+ id?: MediaNodeId;
6899
+ /**
6900
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
6901
+ */
6902
+ statsSampling?: StreamStatisticsSampling;
6903
+ /**
6904
+ * Optionally configure ICE servers (STUN/TURN)
6905
+ *
6906
+ * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6907
+ */
6908
+ iceServerConfiguration?: WebRtcIceServerConfiguration;
6909
+ constructor(data?: PartialMessage<WhepOutputConfiguration>);
6910
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6911
+ static readonly typeName = "norsk.api.media.WhepOutputConfiguration";
6912
+ static readonly fields: FieldList;
6913
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputConfiguration;
6914
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
6915
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
6916
+ static equals(a: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined, b: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined): boolean;
6917
+ }
6918
+ /**
6919
+ * @generated from message norsk.api.media.WhepOutputMessage
6920
+ */
6921
+ export declare class WhepOutputMessage extends Message<WhepOutputMessage> {
6922
+ /**
6923
+ * @generated from oneof norsk.api.media.WhepOutputMessage.message
6924
+ */
6925
+ message: {
6926
+ /**
6927
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
6928
+ */
6929
+ value: Subscription;
6930
+ case: "subscription";
6931
+ } | {
6932
+ /**
6933
+ * @generated from field: norsk.api.media.WhepOutputConfiguration configuration = 2;
6934
+ */
6935
+ value: WhepOutputConfiguration;
6936
+ case: "configuration";
6937
+ } | {
6938
+ case: undefined;
6939
+ value?: undefined;
6940
+ };
6941
+ constructor(data?: PartialMessage<WhepOutputMessage>);
6942
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6943
+ static readonly typeName = "norsk.api.media.WhepOutputMessage";
6944
+ static readonly fields: FieldList;
6945
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputMessage;
6946
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputMessage;
6947
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputMessage;
6948
+ static equals(a: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined, b: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined): boolean;
6949
+ }
6950
+ /**
6951
+ * @generated from message norsk.api.media.WhepOutputEvent
6952
+ */
6953
+ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
6954
+ /**
6955
+ * @generated from oneof norsk.api.media.WhepOutputEvent.message
6805
6956
  */
6806
6957
  message: {
6807
6958
  /**
@@ -6823,13 +6974,7 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
6823
6974
  case: "inboundContext";
6824
6975
  } | {
6825
6976
  /**
6826
- * @generated from field: norsk.api.media.Context outbound_context = 4;
6827
- */
6828
- value: Context;
6829
- case: "outboundContext";
6830
- } | {
6831
- /**
6832
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
6977
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
6833
6978
  */
6834
6979
  value: MultiStreamStatistics;
6835
6980
  case: "streamStatistics";
@@ -6837,14 +6982,14 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
6837
6982
  case: undefined;
6838
6983
  value?: undefined;
6839
6984
  };
6840
- constructor(data?: PartialMessage<WebRTCBrowserDuplexEvent>);
6985
+ constructor(data?: PartialMessage<WhepOutputEvent>);
6841
6986
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6842
- static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexEvent";
6987
+ static readonly typeName = "norsk.api.media.WhepOutputEvent";
6843
6988
  static readonly fields: FieldList;
6844
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexEvent;
6845
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6846
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
6847
- static equals(a: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined, b: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined): boolean;
6989
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputEvent;
6990
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputEvent;
6991
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
6992
+ static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
6848
6993
  }
6849
6994
  /**
6850
6995
  * @generated from message norsk.api.media.RtmpOutputConfiguration
@@ -7065,11 +7210,15 @@ export declare class FileMp4OutputConfiguration extends Message<FileMp4OutputCon
7065
7210
  */
7066
7211
  nonfragmentedFileName: string;
7067
7212
  /**
7068
- * @generated from field: norsk.api.media.Mp4Encryption encryption = 4;
7213
+ * @generated from field: norsk.api.media.Mp4Encryption audio_encryption = 4;
7069
7214
  */
7070
- encryption?: Mp4Encryption;
7215
+ audioEncryption?: Mp4Encryption;
7071
7216
  /**
7072
- * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
7217
+ * @generated from field: norsk.api.media.Mp4Encryption video_encryption = 5;
7218
+ */
7219
+ videoEncryption?: Mp4Encryption;
7220
+ /**
7221
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
7073
7222
  */
7074
7223
  statsSampling?: StreamStatisticsSampling;
7075
7224
  constructor(data?: PartialMessage<FileMp4OutputConfiguration>);
@@ -7881,16 +8030,28 @@ export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
7881
8030
  case: "nvidiaHevc";
7882
8031
  } | {
7883
8032
  /**
7884
- * @generated from field: norsk.api.media.NetintH264 netintH264 = 9;
8033
+ * @generated from field: norsk.api.media.LoganH264 loganH264 = 9;
8034
+ */
8035
+ value: LoganH264;
8036
+ case: "loganH264";
8037
+ } | {
8038
+ /**
8039
+ * @generated from field: norsk.api.media.LoganHevc loganHevc = 10;
7885
8040
  */
7886
- value: NetintH264;
7887
- case: "netintH264";
8041
+ value: LoganHevc;
8042
+ case: "loganHevc";
7888
8043
  } | {
7889
8044
  /**
7890
- * @generated from field: norsk.api.media.NetintHevc netintHevc = 10;
8045
+ * @generated from field: norsk.api.media.QuadraH264 quadraH264 = 11;
7891
8046
  */
7892
- value: NetintHevc;
7893
- case: "netintHevc";
8047
+ value: QuadraH264;
8048
+ case: "quadraH264";
8049
+ } | {
8050
+ /**
8051
+ * @generated from field: norsk.api.media.QuadraHevc quadraHevc = 12;
8052
+ */
8053
+ value: QuadraHevc;
8054
+ case: "quadraHevc";
7894
8055
  } | {
7895
8056
  case: undefined;
7896
8057
  value?: undefined;
@@ -8215,9 +8376,230 @@ export declare enum NvidiaHevc_NvidiaHevcTier {
8215
8376
  HIGH = 1
8216
8377
  }
8217
8378
  /**
8218
- * @generated from message norsk.api.media.NetintH264
8379
+ * @generated from message norsk.api.media.QuadraH264
8380
+ */
8381
+ export declare class QuadraH264 extends Message<QuadraH264> {
8382
+ /**
8383
+ * @generated from field: string extraOpts = 1;
8384
+ */
8385
+ extraOpts: string;
8386
+ /**
8387
+ * @generated from field: norsk.api.media.OptionalBool enableAud = 2;
8388
+ */
8389
+ enableAud?: OptionalBool;
8390
+ /**
8391
+ * @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
8392
+ */
8393
+ gpuIndex?: OptionalInt;
8394
+ /**
8395
+ * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
8396
+ */
8397
+ bitrate?: OptionalInt;
8398
+ /**
8399
+ * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
8400
+ */
8401
+ flushGop?: OptionalBool;
8402
+ /**
8403
+ * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
8404
+ */
8405
+ enableVfr?: OptionalBool;
8406
+ /**
8407
+ * @generated from field: norsk.api.media.OptionalInt crf = 7;
8408
+ */
8409
+ crf?: OptionalInt;
8410
+ /**
8411
+ * @generated from field: norsk.api.media.OptionalBool cbr = 8;
8412
+ */
8413
+ cbr?: OptionalBool;
8414
+ /**
8415
+ * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
8416
+ */
8417
+ gopPresetIndex?: OptionalInt;
8418
+ /**
8419
+ * @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
8420
+ */
8421
+ intraPeriod?: OptionalInt;
8422
+ /**
8423
+ * @generated from field: norsk.api.media.QuadraH264.QuadraH264Profile profile = 11;
8424
+ */
8425
+ profile: QuadraH264_QuadraH264Profile;
8426
+ /**
8427
+ * @generated from field: norsk.api.media.OptionalInt level = 12;
8428
+ */
8429
+ level?: OptionalInt;
8430
+ /**
8431
+ * @generated from field: norsk.api.media.OptionalBool rcEnable = 13;
8432
+ */
8433
+ rcEnable?: OptionalBool;
8434
+ /**
8435
+ * @generated from field: norsk.api.media.OptionalInt intraQp = 14;
8436
+ */
8437
+ intraQp?: OptionalInt;
8438
+ /**
8439
+ * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
8440
+ */
8441
+ rcInitDelay?: OptionalInt;
8442
+ constructor(data?: PartialMessage<QuadraH264>);
8443
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8444
+ static readonly typeName = "norsk.api.media.QuadraH264";
8445
+ static readonly fields: FieldList;
8446
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraH264;
8447
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraH264;
8448
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraH264;
8449
+ static equals(a: QuadraH264 | PlainMessage<QuadraH264> | undefined, b: QuadraH264 | PlainMessage<QuadraH264> | undefined): boolean;
8450
+ }
8451
+ /**
8452
+ * @generated from enum norsk.api.media.QuadraH264.QuadraH264Profile
8453
+ */
8454
+ export declare enum QuadraH264_QuadraH264Profile {
8455
+ /**
8456
+ * @generated from enum value: QUADRA_H264_PROFILE_DEFAULT = 0;
8457
+ */
8458
+ DEFAULT = 0,
8459
+ /**
8460
+ * @generated from enum value: QUADRA_H264_PROFILE_BASELINE = 1;
8461
+ */
8462
+ BASELINE = 1,
8463
+ /**
8464
+ * @generated from enum value: QUADRA_H264_PROFILE_MAIN = 2;
8465
+ */
8466
+ MAIN = 2,
8467
+ /**
8468
+ * @generated from enum value: QUADRA_H264_PROFILE_EXTENDED = 3;
8469
+ */
8470
+ EXTENDED = 3,
8471
+ /**
8472
+ * @generated from enum value: QUADRA_H264_PROFILE_HIGH = 4;
8473
+ */
8474
+ HIGH = 4,
8475
+ /**
8476
+ * @generated from enum value: QUADRA_H264_PROFILE_HIGH10 = 5;
8477
+ */
8478
+ HIGH10 = 5
8479
+ }
8480
+ /**
8481
+ * @generated from message norsk.api.media.QuadraHevc
8482
+ */
8483
+ export declare class QuadraHevc extends Message<QuadraHevc> {
8484
+ /**
8485
+ * @generated from field: string extraOpts = 1;
8486
+ */
8487
+ extraOpts: string;
8488
+ /**
8489
+ * @generated from field: norsk.api.media.OptionalBool enableAud = 2;
8490
+ */
8491
+ enableAud?: OptionalBool;
8492
+ /**
8493
+ * @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
8494
+ */
8495
+ gpuIndex?: OptionalInt;
8496
+ /**
8497
+ * @generated from field: norsk.api.media.OptionalInt bitrate = 4;
8498
+ */
8499
+ bitrate?: OptionalInt;
8500
+ /**
8501
+ * @generated from field: norsk.api.media.OptionalBool flushGop = 5;
8502
+ */
8503
+ flushGop?: OptionalBool;
8504
+ /**
8505
+ * @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
8506
+ */
8507
+ enableVfr?: OptionalBool;
8508
+ /**
8509
+ * @generated from field: norsk.api.media.OptionalInt crf = 7;
8510
+ */
8511
+ crf?: OptionalInt;
8512
+ /**
8513
+ * @generated from field: norsk.api.media.OptionalBool cbr = 8;
8514
+ */
8515
+ cbr?: OptionalBool;
8516
+ /**
8517
+ * @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
8518
+ */
8519
+ gopPresetIndex?: OptionalInt;
8520
+ /**
8521
+ * @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
8522
+ */
8523
+ intraPeriod?: OptionalInt;
8524
+ /**
8525
+ * @generated from field: norsk.api.media.QuadraHevc.QuadraHevcTier tier = 11;
8526
+ */
8527
+ tier: QuadraHevc_QuadraHevcTier;
8528
+ /**
8529
+ * @generated from field: norsk.api.media.QuadraHevc.QuadraHevcProfile profile = 12;
8530
+ */
8531
+ profile: QuadraHevc_QuadraHevcProfile;
8532
+ /**
8533
+ * @generated from field: norsk.api.media.OptionalInt level = 13;
8534
+ */
8535
+ level?: OptionalInt;
8536
+ /**
8537
+ * @generated from field: norsk.api.media.OptionalBool rcEnable = 14;
8538
+ */
8539
+ rcEnable?: OptionalBool;
8540
+ /**
8541
+ * @generated from field: norsk.api.media.OptionalBool lossless = 15;
8542
+ */
8543
+ lossless?: OptionalBool;
8544
+ /**
8545
+ * @generated from field: norsk.api.media.OptionalInt intraQp = 16;
8546
+ */
8547
+ intraQp?: OptionalInt;
8548
+ /**
8549
+ * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
8550
+ */
8551
+ rcInitDelay?: OptionalInt;
8552
+ /**
8553
+ * @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
8554
+ */
8555
+ hrdEnable?: OptionalBool;
8556
+ /**
8557
+ * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
8558
+ */
8559
+ dolbyVisionProfile?: OptionalInt;
8560
+ constructor(data?: PartialMessage<QuadraHevc>);
8561
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8562
+ static readonly typeName = "norsk.api.media.QuadraHevc";
8563
+ static readonly fields: FieldList;
8564
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraHevc;
8565
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraHevc;
8566
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraHevc;
8567
+ static equals(a: QuadraHevc | PlainMessage<QuadraHevc> | undefined, b: QuadraHevc | PlainMessage<QuadraHevc> | undefined): boolean;
8568
+ }
8569
+ /**
8570
+ * @generated from enum norsk.api.media.QuadraHevc.QuadraHevcProfile
8571
+ */
8572
+ export declare enum QuadraHevc_QuadraHevcProfile {
8573
+ /**
8574
+ * @generated from enum value: QUADRA_HEVC_PROFILE_DEFAULT = 0;
8575
+ */
8576
+ DEFAULT = 0,
8577
+ /**
8578
+ * @generated from enum value: QUADRA_HEVC_PROFILE_MAIN = 1;
8579
+ */
8580
+ MAIN = 1,
8581
+ /**
8582
+ * @generated from enum value: QUADRA_HEVC_PROFILE_MAIN10 = 2;
8583
+ */
8584
+ MAIN10 = 2
8585
+ }
8586
+ /**
8587
+ * @generated from enum norsk.api.media.QuadraHevc.QuadraHevcTier
8588
+ */
8589
+ export declare enum QuadraHevc_QuadraHevcTier {
8590
+ /**
8591
+ * @generated from enum value: QUADRA_HEVC_TIER_MAIN = 0;
8592
+ */
8593
+ MAIN = 0,
8594
+ /**
8595
+ * @generated from enum value: QUADRA_HEVC_TIER_HIGH = 1;
8596
+ */
8597
+ HIGH = 1
8598
+ }
8599
+ /**
8600
+ * @generated from message norsk.api.media.LoganH264
8219
8601
  */
8220
- export declare class NetintH264 extends Message<NetintH264> {
8602
+ export declare class LoganH264 extends Message<LoganH264> {
8221
8603
  /**
8222
8604
  * @generated from field: string extraOpts = 1;
8223
8605
  */
@@ -8259,9 +8641,9 @@ export declare class NetintH264 extends Message<NetintH264> {
8259
8641
  */
8260
8642
  intraPeriod?: OptionalInt;
8261
8643
  /**
8262
- * @generated from field: norsk.api.media.NetintH264.NetintH264Profile profile = 11;
8644
+ * @generated from field: norsk.api.media.LoganH264.LoganH264Profile profile = 11;
8263
8645
  */
8264
- profile: NetintH264_NetintH264Profile;
8646
+ profile: LoganH264_LoganH264Profile;
8265
8647
  /**
8266
8648
  * @generated from field: norsk.api.media.OptionalInt level = 12;
8267
8649
  */
@@ -8278,48 +8660,48 @@ export declare class NetintH264 extends Message<NetintH264> {
8278
8660
  * @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
8279
8661
  */
8280
8662
  rcInitDelay?: OptionalInt;
8281
- constructor(data?: PartialMessage<NetintH264>);
8663
+ constructor(data?: PartialMessage<LoganH264>);
8282
8664
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8283
- static readonly typeName = "norsk.api.media.NetintH264";
8665
+ static readonly typeName = "norsk.api.media.LoganH264";
8284
8666
  static readonly fields: FieldList;
8285
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NetintH264;
8286
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NetintH264;
8287
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NetintH264;
8288
- static equals(a: NetintH264 | PlainMessage<NetintH264> | undefined, b: NetintH264 | PlainMessage<NetintH264> | undefined): boolean;
8667
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganH264;
8668
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganH264;
8669
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganH264;
8670
+ static equals(a: LoganH264 | PlainMessage<LoganH264> | undefined, b: LoganH264 | PlainMessage<LoganH264> | undefined): boolean;
8289
8671
  }
8290
8672
  /**
8291
- * @generated from enum norsk.api.media.NetintH264.NetintH264Profile
8673
+ * @generated from enum norsk.api.media.LoganH264.LoganH264Profile
8292
8674
  */
8293
- export declare enum NetintH264_NetintH264Profile {
8675
+ export declare enum LoganH264_LoganH264Profile {
8294
8676
  /**
8295
- * @generated from enum value: NETINT_H264_PROFILE_DEFAULT = 0;
8677
+ * @generated from enum value: LOGAN_H264_PROFILE_DEFAULT = 0;
8296
8678
  */
8297
8679
  DEFAULT = 0,
8298
8680
  /**
8299
- * @generated from enum value: NETINT_H264_PROFILE_BASELINE = 1;
8681
+ * @generated from enum value: LOGAN_H264_PROFILE_BASELINE = 1;
8300
8682
  */
8301
8683
  BASELINE = 1,
8302
8684
  /**
8303
- * @generated from enum value: NETINT_H264_PROFILE_MAIN = 2;
8685
+ * @generated from enum value: LOGAN_H264_PROFILE_MAIN = 2;
8304
8686
  */
8305
8687
  MAIN = 2,
8306
8688
  /**
8307
- * @generated from enum value: NETINT_H264_PROFILE_EXTENDED = 3;
8689
+ * @generated from enum value: LOGAN_H264_PROFILE_EXTENDED = 3;
8308
8690
  */
8309
8691
  EXTENDED = 3,
8310
8692
  /**
8311
- * @generated from enum value: NETINT_H264_PROFILE_HIGH = 4;
8693
+ * @generated from enum value: LOGAN_H264_PROFILE_HIGH = 4;
8312
8694
  */
8313
8695
  HIGH = 4,
8314
8696
  /**
8315
- * @generated from enum value: NETINT_H264_PROFILE_HIGH10 = 5;
8697
+ * @generated from enum value: LOGAN_H264_PROFILE_HIGH10 = 5;
8316
8698
  */
8317
8699
  HIGH10 = 5
8318
8700
  }
8319
8701
  /**
8320
- * @generated from message norsk.api.media.NetintHevc
8702
+ * @generated from message norsk.api.media.LoganHevc
8321
8703
  */
8322
- export declare class NetintHevc extends Message<NetintHevc> {
8704
+ export declare class LoganHevc extends Message<LoganHevc> {
8323
8705
  /**
8324
8706
  * @generated from field: string extraOpts = 1;
8325
8707
  */
@@ -8361,13 +8743,13 @@ export declare class NetintHevc extends Message<NetintHevc> {
8361
8743
  */
8362
8744
  intraPeriod?: OptionalInt;
8363
8745
  /**
8364
- * @generated from field: norsk.api.media.NetintHevc.NetintHevcTier tier = 11;
8746
+ * @generated from field: norsk.api.media.LoganHevc.LoganHevcTier tier = 11;
8365
8747
  */
8366
- tier: NetintHevc_NetintHevcTier;
8748
+ tier: LoganHevc_LoganHevcTier;
8367
8749
  /**
8368
- * @generated from field: norsk.api.media.NetintHevc.NetintHevcProfile profile = 12;
8750
+ * @generated from field: norsk.api.media.LoganHevc.LoganHevcProfile profile = 12;
8369
8751
  */
8370
- profile: NetintHevc_NetintHevcProfile;
8752
+ profile: LoganHevc_LoganHevcProfile;
8371
8753
  /**
8372
8754
  * @generated from field: norsk.api.media.OptionalInt level = 13;
8373
8755
  */
@@ -8396,42 +8778,42 @@ export declare class NetintHevc extends Message<NetintHevc> {
8396
8778
  * @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
8397
8779
  */
8398
8780
  dolbyVisionProfile?: OptionalInt;
8399
- constructor(data?: PartialMessage<NetintHevc>);
8781
+ constructor(data?: PartialMessage<LoganHevc>);
8400
8782
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8401
- static readonly typeName = "norsk.api.media.NetintHevc";
8783
+ static readonly typeName = "norsk.api.media.LoganHevc";
8402
8784
  static readonly fields: FieldList;
8403
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NetintHevc;
8404
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NetintHevc;
8405
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NetintHevc;
8406
- static equals(a: NetintHevc | PlainMessage<NetintHevc> | undefined, b: NetintHevc | PlainMessage<NetintHevc> | undefined): boolean;
8785
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganHevc;
8786
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganHevc;
8787
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganHevc;
8788
+ static equals(a: LoganHevc | PlainMessage<LoganHevc> | undefined, b: LoganHevc | PlainMessage<LoganHevc> | undefined): boolean;
8407
8789
  }
8408
8790
  /**
8409
- * @generated from enum norsk.api.media.NetintHevc.NetintHevcProfile
8791
+ * @generated from enum norsk.api.media.LoganHevc.LoganHevcProfile
8410
8792
  */
8411
- export declare enum NetintHevc_NetintHevcProfile {
8793
+ export declare enum LoganHevc_LoganHevcProfile {
8412
8794
  /**
8413
- * @generated from enum value: NETINT_HEVC_PROFILE_DEFAULT = 0;
8795
+ * @generated from enum value: LOGAN_HEVC_PROFILE_DEFAULT = 0;
8414
8796
  */
8415
8797
  DEFAULT = 0,
8416
8798
  /**
8417
- * @generated from enum value: NETINT_HEVC_PROFILE_MAIN = 1;
8799
+ * @generated from enum value: LOGAN_HEVC_PROFILE_MAIN = 1;
8418
8800
  */
8419
8801
  MAIN = 1,
8420
8802
  /**
8421
- * @generated from enum value: NETINT_HEVC_PROFILE_MAIN10 = 2;
8803
+ * @generated from enum value: LOGAN_HEVC_PROFILE_MAIN10 = 2;
8422
8804
  */
8423
8805
  MAIN10 = 2
8424
8806
  }
8425
8807
  /**
8426
- * @generated from enum norsk.api.media.NetintHevc.NetintHevcTier
8808
+ * @generated from enum norsk.api.media.LoganHevc.LoganHevcTier
8427
8809
  */
8428
- export declare enum NetintHevc_NetintHevcTier {
8810
+ export declare enum LoganHevc_LoganHevcTier {
8429
8811
  /**
8430
- * @generated from enum value: NETINT_HEVC_TIER_MAIN = 0;
8812
+ * @generated from enum value: LOGAN_HEVC_TIER_MAIN = 0;
8431
8813
  */
8432
8814
  MAIN = 0,
8433
8815
  /**
8434
- * @generated from enum value: NETINT_HEVC_TIER_HIGH = 1;
8816
+ * @generated from enum value: LOGAN_HEVC_TIER_HIGH = 1;
8435
8817
  */
8436
8818
  HIGH = 1
8437
8819
  }
@@ -8837,13 +9219,15 @@ export declare class StreamMetadataOverrideConfiguration extends Message<StreamM
8837
9219
  */
8838
9220
  id?: MediaNodeId;
8839
9221
  /**
8840
- * * Override the bitrate metadata of a compressed video stream, or `0` to clear
9222
+ * * Override the bitrate metadata of a compressed video stream, or `0` to
9223
+ * clear
8841
9224
  *
8842
9225
  * @generated from field: norsk.api.media.OptionalInt video_bitrate = 2;
8843
9226
  */
8844
9227
  videoBitrate?: OptionalInt;
8845
9228
  /**
8846
- * * Override the bitrate metadata of a compressed audio stream, or `0` to clear
9229
+ * * Override the bitrate metadata of a compressed audio stream, or `0` to
9230
+ * clear
8847
9231
  *
8848
9232
  * @generated from field: norsk.api.media.OptionalInt audio_bitrate = 3;
8849
9233
  */
@@ -8874,13 +9258,15 @@ export declare class StreamMetadataOverrideConfiguration extends Message<StreamM
8874
9258
  */
8875
9259
  export declare class StreamMetadataOverrideUpdateConfiguration extends Message<StreamMetadataOverrideUpdateConfiguration> {
8876
9260
  /**
8877
- * * Override the bitrate metadata of a compressed video stream, or `0` to clear
9261
+ * * Override the bitrate metadata of a compressed video stream, or `0` to
9262
+ * clear
8878
9263
  *
8879
9264
  * @generated from field: norsk.api.media.OptionalInt video_bitrate = 2;
8880
9265
  */
8881
9266
  videoBitrate?: OptionalInt;
8882
9267
  /**
8883
- * * Override the bitrate metadata of a compressed audio stream, or `0` to clear
9268
+ * * Override the bitrate metadata of a compressed audio stream, or `0` to
9269
+ * clear
8884
9270
  *
8885
9271
  * @generated from field: norsk.api.media.OptionalInt audio_bitrate = 3;
8886
9272
  */
@@ -9368,6 +9754,27 @@ export declare class StreamSwitchSmoothMessage extends Message<StreamSwitchSmoot
9368
9754
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothMessage;
9369
9755
  static equals(a: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined, b: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined): boolean;
9370
9756
  }
9757
+ /**
9758
+ * @generated from message norsk.api.media.StreamSwitchSmoothSwitchError
9759
+ */
9760
+ export declare class StreamSwitchSmoothSwitchError extends Message<StreamSwitchSmoothSwitchError> {
9761
+ /**
9762
+ * @generated from field: string reason = 1;
9763
+ */
9764
+ reason: string;
9765
+ /**
9766
+ * @generated from field: norsk.api.media.InputPin requested_source = 2;
9767
+ */
9768
+ requestedSource?: InputPin;
9769
+ constructor(data?: PartialMessage<StreamSwitchSmoothSwitchError>);
9770
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9771
+ static readonly typeName = "norsk.api.media.StreamSwitchSmoothSwitchError";
9772
+ static readonly fields: FieldList;
9773
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothSwitchError;
9774
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
9775
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
9776
+ static equals(a: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined, b: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined): boolean;
9777
+ }
9371
9778
  /**
9372
9779
  * @generated from message norsk.api.media.StreamSwitchSmoothEvent
9373
9780
  */
@@ -9393,6 +9800,21 @@ export declare class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothE
9393
9800
  */
9394
9801
  value: SubscriptionResponse;
9395
9802
  case: "subscriptionResponse";
9803
+ } | {
9804
+ /**
9805
+ * @generated from field: norsk.api.media.StreamSwitchSmoothSwitchError switch_error = 4;
9806
+ */
9807
+ value: StreamSwitchSmoothSwitchError;
9808
+ case: "switchError";
9809
+ } | {
9810
+ /**
9811
+ * Message sent when inbound context changes on some input; presence of an input in this message means that
9812
+ * media has arrived and is ready to switch immediately
9813
+ *
9814
+ * @generated from field: norsk.api.media.MultipleContext inbound_context = 5;
9815
+ */
9816
+ value: MultipleContext;
9817
+ case: "inboundContext";
9396
9818
  } | {
9397
9819
  case: undefined;
9398
9820
  value?: undefined;
@@ -10517,7 +10939,8 @@ export declare class SubscribeSource extends Message<SubscribeSource> {
10517
10939
  */
10518
10940
  export declare class Subscription extends Message<Subscription> {
10519
10941
  /**
10520
- * An arbitrary id of the subscription, to enable correlating of the corresponding subscription response
10942
+ * An arbitrary id of the subscription, to enable correlating of the
10943
+ * corresponding subscription response
10521
10944
  *
10522
10945
  * @generated from field: string id = 1;
10523
10946
  */
@@ -10687,7 +11110,8 @@ export declare class SourceSubscriptionError extends Message<SourceSubscriptionE
10687
11110
  case: "unknownSourceStream";
10688
11111
  } | {
10689
11112
  /**
10690
- * The media node is not set up to receive data on this pin (which may be auto-detected)
11113
+ * The media node is not set up to receive data on this pin (which may be
11114
+ * auto-detected)
10691
11115
  *
10692
11116
  * @generated from field: norsk.api.media.SourceSubscriptionError.NoSubscriberPin no_subscriber_pin = 4;
10693
11117
  */
@@ -10695,7 +11119,8 @@ export declare class SourceSubscriptionError extends Message<SourceSubscriptionE
10695
11119
  case: "noSubscriberPin";
10696
11120
  } | {
10697
11121
  /**
10698
- * Norsk does not support conversion from the media types of the source to the media types accepted by the subscriber
11122
+ * Norsk does not support conversion from the media types of the source to
11123
+ * the media types accepted by the subscriber
10699
11124
  *
10700
11125
  * @generated from field: norsk.api.media.SourceSubscriptionError.UnsupportedConversion unsupported_conversion = 5;
10701
11126
  */