@norskvideo/norsk-api 1.0.335 → 1.0.336

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
@@ -1,5 +1,5 @@
1
1
  import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
- import { Message } from "@bufbuild/protobuf";
2
+ import { Empty, Message } from "@bufbuild/protobuf";
3
3
  import { CurrentLoad, Log, Version } from "./shared/common_pb.js";
4
4
  /**
5
5
  * Enumeration of possible channel positions.
@@ -1629,6 +1629,14 @@ export declare class StreamMetadata extends Message<StreamMetadata> {
1629
1629
  */
1630
1630
  value: StreamMetadata_SubtitleMetadata;
1631
1631
  case: "subtitle";
1632
+ } | {
1633
+ /**
1634
+ * Ancillary metadata
1635
+ *
1636
+ * @generated from field: norsk.api.media.StreamMetadata.AncillaryMetadata ancillary = 5;
1637
+ */
1638
+ value: StreamMetadata_AncillaryMetadata;
1639
+ case: "ancillary";
1632
1640
  } | {
1633
1641
  case: undefined;
1634
1642
  value?: undefined;
@@ -1723,6 +1731,21 @@ export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetad
1723
1731
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_SubtitleMetadata;
1724
1732
  static equals(a: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined, b: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined): boolean;
1725
1733
  }
1734
+ /**
1735
+ * Metadata for an ancillary stream
1736
+ *
1737
+ * @generated from message norsk.api.media.StreamMetadata.AncillaryMetadata
1738
+ */
1739
+ export declare class StreamMetadata_AncillaryMetadata extends Message<StreamMetadata_AncillaryMetadata> {
1740
+ constructor(data?: PartialMessage<StreamMetadata_AncillaryMetadata>);
1741
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1742
+ static readonly typeName = "norsk.api.media.StreamMetadata.AncillaryMetadata";
1743
+ static readonly fields: FieldList;
1744
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadata_AncillaryMetadata;
1745
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadata_AncillaryMetadata;
1746
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_AncillaryMetadata;
1747
+ static equals(a: StreamMetadata_AncillaryMetadata | PlainMessage<StreamMetadata_AncillaryMetadata> | undefined, b: StreamMetadata_AncillaryMetadata | PlainMessage<StreamMetadata_AncillaryMetadata> | undefined): boolean;
1748
+ }
1726
1749
  /**
1727
1750
  * *
1728
1751
  * The Context message is sent from Norsk in response to a
@@ -2586,7 +2609,11 @@ export declare enum TsProgram_TsStreamType {
2586
2609
  /**
2587
2610
  * @generated from enum value: HEVC = 10;
2588
2611
  */
2589
- HEVC = 10
2612
+ HEVC = 10,
2613
+ /**
2614
+ * @generated from enum value: SCTE35 = 11;
2615
+ */
2616
+ SCTE35 = 11
2590
2617
  }
2591
2618
  /**
2592
2619
  * @generated from message norsk.api.media.TsProgram.TsPid
@@ -2741,6 +2768,23 @@ export declare class FileTsInputConfiguration extends Message<FileTsInputConfigu
2741
2768
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputConfiguration;
2742
2769
  static equals(a: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined, b: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined): boolean;
2743
2770
  }
2771
+ /**
2772
+ * @generated from message norsk.api.media.FileTsInputConfigurationUpdate
2773
+ */
2774
+ export declare class FileTsInputConfigurationUpdate extends Message<FileTsInputConfigurationUpdate> {
2775
+ /**
2776
+ * @generated from field: norsk.api.media.OptionalBool loop = 1;
2777
+ */
2778
+ loop?: OptionalBool;
2779
+ constructor(data?: PartialMessage<FileTsInputConfigurationUpdate>);
2780
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2781
+ static readonly typeName = "norsk.api.media.FileTsInputConfigurationUpdate";
2782
+ static readonly fields: FieldList;
2783
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputConfigurationUpdate;
2784
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputConfigurationUpdate;
2785
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputConfigurationUpdate;
2786
+ static equals(a: FileTsInputConfigurationUpdate | PlainMessage<FileTsInputConfigurationUpdate> | undefined, b: FileTsInputConfigurationUpdate | PlainMessage<FileTsInputConfigurationUpdate> | undefined): boolean;
2787
+ }
2744
2788
  /**
2745
2789
  * @generated from message norsk.api.media.FileTsInputMessage
2746
2790
  */
@@ -2760,6 +2804,12 @@ export declare class FileTsInputMessage extends Message<FileTsInputMessage> {
2760
2804
  */
2761
2805
  value: TimestampProgramNudge;
2762
2806
  case: "nudge";
2807
+ } | {
2808
+ /**
2809
+ * @generated from field: norsk.api.media.FileTsInputConfigurationUpdate update_config = 3;
2810
+ */
2811
+ value: FileTsInputConfigurationUpdate;
2812
+ case: "updateConfig";
2763
2813
  } | {
2764
2814
  case: undefined;
2765
2815
  value?: undefined;
@@ -2773,32 +2823,6 @@ export declare class FileTsInputMessage extends Message<FileTsInputMessage> {
2773
2823
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputMessage;
2774
2824
  static equals(a: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined, b: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined): boolean;
2775
2825
  }
2776
- /**
2777
- * @generated from message norsk.api.media.FileTsInputEvent
2778
- */
2779
- export declare class FileTsInputEvent extends Message<FileTsInputEvent> {
2780
- /**
2781
- * @generated from oneof norsk.api.media.FileTsInputEvent.message
2782
- */
2783
- message: {
2784
- /**
2785
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
2786
- */
2787
- value: MultiStreamStatistics;
2788
- case: "streamStatistics";
2789
- } | {
2790
- case: undefined;
2791
- value?: undefined;
2792
- };
2793
- constructor(data?: PartialMessage<FileTsInputEvent>);
2794
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2795
- static readonly typeName = "norsk.api.media.FileTsInputEvent";
2796
- static readonly fields: FieldList;
2797
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputEvent;
2798
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputEvent;
2799
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputEvent;
2800
- static equals(a: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined, b: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined): boolean;
2801
- }
2802
2826
  /**
2803
2827
  * @generated from message norsk.api.media.FileWebVttInputConfiguration
2804
2828
  */
@@ -3236,32 +3260,6 @@ export declare class UdpTsInputMessage extends Message<UdpTsInputMessage> {
3236
3260
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsInputMessage;
3237
3261
  static equals(a: UdpTsInputMessage | PlainMessage<UdpTsInputMessage> | undefined, b: UdpTsInputMessage | PlainMessage<UdpTsInputMessage> | undefined): boolean;
3238
3262
  }
3239
- /**
3240
- * @generated from message norsk.api.media.UdpTsInputEvent
3241
- */
3242
- export declare class UdpTsInputEvent extends Message<UdpTsInputEvent> {
3243
- /**
3244
- * @generated from oneof norsk.api.media.UdpTsInputEvent.message
3245
- */
3246
- message: {
3247
- /**
3248
- * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
3249
- */
3250
- value: MultiStreamStatistics;
3251
- case: "streamStatistics";
3252
- } | {
3253
- case: undefined;
3254
- value?: undefined;
3255
- };
3256
- constructor(data?: PartialMessage<UdpTsInputEvent>);
3257
- static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3258
- static readonly typeName = "norsk.api.media.UdpTsInputEvent";
3259
- static readonly fields: FieldList;
3260
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UdpTsInputEvent;
3261
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UdpTsInputEvent;
3262
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsInputEvent;
3263
- static equals(a: UdpTsInputEvent | PlainMessage<UdpTsInputEvent> | undefined, b: UdpTsInputEvent | PlainMessage<UdpTsInputEvent> | undefined): boolean;
3264
- }
3265
3263
  /**
3266
3264
  * @generated from message norsk.api.media.M3u8MediaInputConfiguration
3267
3265
  */
@@ -3764,6 +3762,23 @@ export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfi
3764
3762
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputConfiguration;
3765
3763
  static equals(a: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined, b: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined): boolean;
3766
3764
  }
3765
+ /**
3766
+ * @generated from message norsk.api.media.FileMp4InputConfigurationUpdate
3767
+ */
3768
+ export declare class FileMp4InputConfigurationUpdate extends Message<FileMp4InputConfigurationUpdate> {
3769
+ /**
3770
+ * @generated from field: norsk.api.media.OptionalBool loop = 1;
3771
+ */
3772
+ loop?: OptionalBool;
3773
+ constructor(data?: PartialMessage<FileMp4InputConfigurationUpdate>);
3774
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3775
+ static readonly typeName = "norsk.api.media.FileMp4InputConfigurationUpdate";
3776
+ static readonly fields: FieldList;
3777
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputConfigurationUpdate;
3778
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputConfigurationUpdate;
3779
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputConfigurationUpdate;
3780
+ static equals(a: FileMp4InputConfigurationUpdate | PlainMessage<FileMp4InputConfigurationUpdate> | undefined, b: FileMp4InputConfigurationUpdate | PlainMessage<FileMp4InputConfigurationUpdate> | undefined): boolean;
3781
+ }
3767
3782
  /**
3768
3783
  * @generated from message norsk.api.media.FileMp4InputMessage
3769
3784
  */
@@ -3783,6 +3798,12 @@ export declare class FileMp4InputMessage extends Message<FileMp4InputMessage> {
3783
3798
  */
3784
3799
  value: TimestampNudge;
3785
3800
  case: "nudge";
3801
+ } | {
3802
+ /**
3803
+ * @generated from field: norsk.api.media.FileMp4InputConfigurationUpdate update_config = 3;
3804
+ */
3805
+ value: FileMp4InputConfigurationUpdate;
3806
+ case: "updateConfig";
3786
3807
  } | {
3787
3808
  case: undefined;
3788
3809
  value?: undefined;
@@ -4284,9 +4305,19 @@ export declare class BrowserInputEvent extends Message<BrowserInputEvent> {
4284
4305
  */
4285
4306
  export declare class WebRtcIceServerConfiguration extends Message<WebRtcIceServerConfiguration> {
4286
4307
  /**
4308
+ * STUN/TURN servers to use for the Norsk server (and by default report to
4309
+ * clients)
4310
+ *
4287
4311
  * @generated from field: repeated norsk.api.media.WebRtcIceServer servers = 1;
4288
4312
  */
4289
4313
  servers: WebRtcIceServer[];
4314
+ /**
4315
+ * STUN/TURN servers to report to a connecting client (eg via WHIP/WHEP). If
4316
+ * specified overrides the configuration in servers
4317
+ *
4318
+ * @generated from field: repeated norsk.api.media.WebRtcIceServer reported_servers = 2;
4319
+ */
4320
+ reportedServers: WebRtcIceServer[];
4290
4321
  constructor(data?: PartialMessage<WebRtcIceServerConfiguration>);
4291
4322
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4292
4323
  static readonly typeName = "norsk.api.media.WebRtcIceServerConfiguration";
@@ -5615,18 +5646,28 @@ export declare class AudioSplitMultichannelEvent extends Message<AudioSplitMulti
5615
5646
  */
5616
5647
  export declare class Mp4Encryption extends Message<Mp4Encryption> {
5617
5648
  /**
5649
+ * The 16-byte key ID used to identify the key, hexadecimal or GUID encoded.
5650
+ *
5618
5651
  * @generated from field: string encryption_key_id = 1;
5619
5652
  */
5620
5653
  encryptionKeyId: string;
5621
5654
  /**
5655
+ * The 16-byte key used to encrypt the data, hexadecimal encoded.
5656
+ *
5622
5657
  * @generated from field: string encryption_key = 2;
5623
5658
  */
5624
5659
  encryptionKey: string;
5625
5660
  /**
5661
+ * The PSSH box(es) to include in the MP4, base64 encoded.
5662
+ * This is typically given by the DRM provider.
5663
+ *
5626
5664
  * @generated from field: string encryption_pssh = 3;
5627
5665
  */
5628
5666
  encryptionPssh: string;
5629
5667
  /**
5668
+ * The common encryption scheme used to encrypt data, as per ISO/IEC
5669
+ * 23001-7:2016.
5670
+ *
5630
5671
  * @generated from field: norsk.api.media.Mp4Encryption.Mp4EncryptionScheme encryption_scheme = 4;
5631
5672
  */
5632
5673
  encryptionScheme: Mp4Encryption_Mp4EncryptionScheme;
@@ -5644,10 +5685,17 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
5644
5685
  */
5645
5686
  export declare enum Mp4Encryption_Mp4EncryptionScheme {
5646
5687
  /**
5688
+ * Default: CBCS encryption scheme (AES-CBC 10% pattern encryption).
5689
+ * Full-sample encryption for audio tracks, subsample encryption for video
5690
+ * tracks.
5691
+ *
5647
5692
  * @generated from enum value: MP4_ENCRYPTION_SCHEME_CBCS = 0;
5648
5693
  */
5649
5694
  CBCS = 0,
5650
5695
  /**
5696
+ * CENC encryption scheme (AES-CTR). Full-sample encryption for audio
5697
+ * tracks, subsample encryption for video tracks.
5698
+ *
5651
5699
  * @generated from enum value: MP4_ENCRYPTION_SCHEME_CENC = 1;
5652
5700
  */
5653
5701
  CENC = 1
@@ -5790,6 +5838,18 @@ export declare class CmafVideoConfiguration extends Message<CmafVideoConfigurati
5790
5838
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 7;
5791
5839
  */
5792
5840
  destinations: CMAFDestination[];
5841
+ /**
5842
+ * Directives to add to the m3u media playlist
5843
+ *
5844
+ * @generated from field: string m3u_additions = 8;
5845
+ */
5846
+ m3uAdditions: string;
5847
+ /**
5848
+ * XML fragment to add to the mpd Representation element
5849
+ *
5850
+ * @generated from field: string mpd_additions = 9;
5851
+ */
5852
+ mpdAdditions: string;
5793
5853
  constructor(data?: PartialMessage<CmafVideoConfiguration>);
5794
5854
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5795
5855
  static readonly typeName = "norsk.api.media.CmafVideoConfiguration";
@@ -5861,6 +5921,18 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
5861
5921
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
5862
5922
  */
5863
5923
  destinations: CMAFDestination[];
5924
+ /**
5925
+ * Directives to add to the m3u media playlist
5926
+ *
5927
+ * @generated from field: string m3u_additions = 6;
5928
+ */
5929
+ m3uAdditions: string;
5930
+ /**
5931
+ * XML fragment to add to the mpd Representation element
5932
+ *
5933
+ * @generated from field: string mpd_additions = 7;
5934
+ */
5935
+ mpdAdditions: string;
5864
5936
  constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
5865
5937
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5866
5938
  static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
@@ -5940,6 +6012,18 @@ export declare class CmafAudioConfiguration extends Message<CmafAudioConfigurati
5940
6012
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 8;
5941
6013
  */
5942
6014
  destinations: CMAFDestination[];
6015
+ /**
6016
+ * Directives to add to the m3u media playlist
6017
+ *
6018
+ * @generated from field: string m3u_additions = 9;
6019
+ */
6020
+ m3uAdditions: string;
6021
+ /**
6022
+ * XML fragment to add to the mpd Representation element
6023
+ *
6024
+ * @generated from field: string mpd_additions = 10;
6025
+ */
6026
+ mpdAdditions: string;
5943
6027
  constructor(data?: PartialMessage<CmafAudioConfiguration>);
5944
6028
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
5945
6029
  static readonly typeName = "norsk.api.media.CmafAudioConfiguration";
@@ -6011,6 +6095,18 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
6011
6095
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
6012
6096
  */
6013
6097
  destinations: CMAFDestination[];
6098
+ /**
6099
+ * Directives to add to the m3u media playlist
6100
+ *
6101
+ * @generated from field: string m3u_additions = 6;
6102
+ */
6103
+ m3uAdditions: string;
6104
+ /**
6105
+ * XML fragment to add to the mpd Representation element
6106
+ *
6107
+ * @generated from field: string mpd_additions = 7;
6108
+ */
6109
+ mpdAdditions: string;
6014
6110
  constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
6015
6111
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6016
6112
  static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
@@ -6245,6 +6341,18 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
6245
6341
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 4;
6246
6342
  */
6247
6343
  destinations: CMAFDestination[];
6344
+ /**
6345
+ * Directives to add to the m3u master playlist
6346
+ *
6347
+ * @generated from field: string m3u_additions = 5;
6348
+ */
6349
+ m3uAdditions: string;
6350
+ /**
6351
+ * XML fragment to add to the (top-level) MPD element
6352
+ *
6353
+ * @generated from field: string mpd_additions = 6;
6354
+ */
6355
+ mpdAdditions: string;
6248
6356
  constructor(data?: PartialMessage<CmafMasterConfiguration>);
6249
6357
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6250
6358
  static readonly typeName = "norsk.api.media.CmafMasterConfiguration";
@@ -6320,6 +6428,18 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
6320
6428
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
6321
6429
  */
6322
6430
  statsSampling?: StreamStatisticsSampling;
6431
+ /**
6432
+ * Directives to add to the m3u media playlists
6433
+ *
6434
+ * @generated from field: string m3u_additions = 7;
6435
+ */
6436
+ m3uAdditions: string;
6437
+ /**
6438
+ * XML fragment to add to the mpd Representation elements
6439
+ *
6440
+ * @generated from field: string mpd_additions = 8;
6441
+ */
6442
+ mpdAdditions: string;
6323
6443
  constructor(data?: PartialMessage<HlsTsCombinedPushConfiguration>);
6324
6444
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6325
6445
  static readonly typeName = "norsk.api.media.HlsTsCombinedPushConfiguration";
@@ -6466,6 +6586,10 @@ export declare class UdpTsOutputConfiguration extends Message<UdpTsOutputConfigu
6466
6586
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
6467
6587
  */
6468
6588
  statsSampling?: StreamStatisticsSampling;
6589
+ /**
6590
+ * @generated from field: uint32 buffer_delay_ms = 6;
6591
+ */
6592
+ bufferDelayMs: number;
6469
6593
  constructor(data?: PartialMessage<UdpTsOutputConfiguration>);
6470
6594
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6471
6595
  static readonly typeName = "norsk.api.media.UdpTsOutputConfiguration";
@@ -6583,6 +6707,10 @@ export declare class SrtOutputConfiguration extends Message<SrtOutputConfigurati
6583
6707
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 8;
6584
6708
  */
6585
6709
  statsSampling?: StreamStatisticsSampling;
6710
+ /**
6711
+ * @generated from field: uint32 buffer_delay_ms = 9;
6712
+ */
6713
+ bufferDelayMs: number;
6586
6714
  constructor(data?: PartialMessage<SrtOutputConfiguration>);
6587
6715
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6588
6716
  static readonly typeName = "norsk.api.media.SrtOutputConfiguration";
@@ -6694,6 +6822,10 @@ export declare class WhipOutputConfiguration extends Message<WhipOutputConfigura
6694
6822
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
6695
6823
  */
6696
6824
  statsSampling?: StreamStatisticsSampling;
6825
+ /**
6826
+ * @generated from field: uint32 buffer_delay_ms = 5;
6827
+ */
6828
+ bufferDelayMs: number;
6697
6829
  constructor(data?: PartialMessage<WhipOutputConfiguration>);
6698
6830
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6699
6831
  static readonly typeName = "norsk.api.media.WhipOutputConfiguration";
@@ -6797,6 +6929,10 @@ export declare class WebRTCBrowserDuplexConfiguration extends Message<WebRTCBrow
6797
6929
  * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6798
6930
  */
6799
6931
  iceServerConfiguration?: WebRtcIceServerConfiguration;
6932
+ /**
6933
+ * @generated from field: uint32 buffer_delay_ms = 4;
6934
+ */
6935
+ bufferDelayMs: number;
6800
6936
  constructor(data?: PartialMessage<WebRTCBrowserDuplexConfiguration>);
6801
6937
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6802
6938
  static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexConfiguration";
@@ -6906,6 +7042,10 @@ export declare class WhepOutputConfiguration extends Message<WhepOutputConfigura
6906
7042
  * @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
6907
7043
  */
6908
7044
  iceServerConfiguration?: WebRtcIceServerConfiguration;
7045
+ /**
7046
+ * @generated from field: uint32 buffer_delay_ms = 4;
7047
+ */
7048
+ bufferDelayMs: number;
6909
7049
  constructor(data?: PartialMessage<WhepOutputConfiguration>);
6910
7050
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6911
7051
  static readonly typeName = "norsk.api.media.WhepOutputConfiguration";
@@ -7007,6 +7147,10 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
7007
7147
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
7008
7148
  */
7009
7149
  statsSampling?: StreamStatisticsSampling;
7150
+ /**
7151
+ * @generated from field: uint32 buffer_delay_ms = 4;
7152
+ */
7153
+ bufferDelayMs: number;
7010
7154
  constructor(data?: PartialMessage<RtmpOutputConfiguration>);
7011
7155
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
7012
7156
  static readonly typeName = "norsk.api.media.RtmpOutputConfiguration";
@@ -7388,6 +7532,23 @@ export declare class OptionalInt extends Message<OptionalInt> {
7388
7532
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt;
7389
7533
  static equals(a: OptionalInt | PlainMessage<OptionalInt> | undefined, b: OptionalInt | PlainMessage<OptionalInt> | undefined): boolean;
7390
7534
  }
7535
+ /**
7536
+ * @generated from message norsk.api.media.OptionalInt64
7537
+ */
7538
+ export declare class OptionalInt64 extends Message<OptionalInt64> {
7539
+ /**
7540
+ * @generated from field: uint64 value = 1;
7541
+ */
7542
+ value: bigint;
7543
+ constructor(data?: PartialMessage<OptionalInt64>);
7544
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
7545
+ static readonly typeName = "norsk.api.media.OptionalInt64";
7546
+ static readonly fields: FieldList;
7547
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalInt64;
7548
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalInt64;
7549
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt64;
7550
+ static equals(a: OptionalInt64 | PlainMessage<OptionalInt64> | undefined, b: OptionalInt64 | PlainMessage<OptionalInt64> | undefined): boolean;
7551
+ }
7391
7552
  /**
7392
7553
  * @generated from message norsk.api.media.OptionalBool
7393
7554
  */
@@ -8943,6 +9104,10 @@ export declare class StreamChaosMonkeyConfiguration extends Message<StreamChaosM
8943
9104
  case: undefined;
8944
9105
  value?: undefined;
8945
9106
  };
9107
+ /**
9108
+ * @generated from field: uint32 jitter_ms = 4;
9109
+ */
9110
+ jitterMs: number;
8946
9111
  constructor(data?: PartialMessage<StreamChaosMonkeyConfiguration>);
8947
9112
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8948
9113
  static readonly typeName = "norsk.api.media.StreamChaosMonkeyConfiguration";
@@ -9368,6 +9533,97 @@ export declare class StreamMetadataOverrideEvent extends Message<StreamMetadataO
9368
9533
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadataOverrideEvent;
9369
9534
  static equals(a: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined, b: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined): boolean;
9370
9535
  }
9536
+ /**
9537
+ * @generated from message norsk.api.media.JitterBufferConfiguration
9538
+ */
9539
+ export declare class JitterBufferConfiguration extends Message<JitterBufferConfiguration> {
9540
+ /**
9541
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
9542
+ */
9543
+ id?: MediaNodeId;
9544
+ /**
9545
+ * @generated from field: uint32 delay_ms = 2;
9546
+ */
9547
+ delayMs: number;
9548
+ constructor(data?: PartialMessage<JitterBufferConfiguration>);
9549
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9550
+ static readonly typeName = "norsk.api.media.JitterBufferConfiguration";
9551
+ static readonly fields: FieldList;
9552
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferConfiguration;
9553
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferConfiguration;
9554
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferConfiguration;
9555
+ static equals(a: JitterBufferConfiguration | PlainMessage<JitterBufferConfiguration> | undefined, b: JitterBufferConfiguration | PlainMessage<JitterBufferConfiguration> | undefined): boolean;
9556
+ }
9557
+ /**
9558
+ * @generated from message norsk.api.media.JitterBufferMessage
9559
+ */
9560
+ export declare class JitterBufferMessage extends Message<JitterBufferMessage> {
9561
+ /**
9562
+ * @generated from oneof norsk.api.media.JitterBufferMessage.message
9563
+ */
9564
+ message: {
9565
+ /**
9566
+ * @generated from field: norsk.api.media.JitterBufferConfiguration initial_config = 1;
9567
+ */
9568
+ value: JitterBufferConfiguration;
9569
+ case: "initialConfig";
9570
+ } | {
9571
+ /**
9572
+ * @generated from field: norsk.api.media.Subscription subscription = 2;
9573
+ */
9574
+ value: Subscription;
9575
+ case: "subscription";
9576
+ } | {
9577
+ case: undefined;
9578
+ value?: undefined;
9579
+ };
9580
+ constructor(data?: PartialMessage<JitterBufferMessage>);
9581
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9582
+ static readonly typeName = "norsk.api.media.JitterBufferMessage";
9583
+ static readonly fields: FieldList;
9584
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferMessage;
9585
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferMessage;
9586
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferMessage;
9587
+ static equals(a: JitterBufferMessage | PlainMessage<JitterBufferMessage> | undefined, b: JitterBufferMessage | PlainMessage<JitterBufferMessage> | undefined): boolean;
9588
+ }
9589
+ /**
9590
+ * @generated from message norsk.api.media.JitterBufferEvent
9591
+ */
9592
+ export declare class JitterBufferEvent extends Message<JitterBufferEvent> {
9593
+ /**
9594
+ * @generated from oneof norsk.api.media.JitterBufferEvent.message
9595
+ */
9596
+ message: {
9597
+ /**
9598
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
9599
+ */
9600
+ value: MediaNodeId;
9601
+ case: "nodeId";
9602
+ } | {
9603
+ /**
9604
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
9605
+ */
9606
+ value: Context;
9607
+ case: "outboundContext";
9608
+ } | {
9609
+ /**
9610
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
9611
+ */
9612
+ value: SubscriptionResponse;
9613
+ case: "subscriptionResponse";
9614
+ } | {
9615
+ case: undefined;
9616
+ value?: undefined;
9617
+ };
9618
+ constructor(data?: PartialMessage<JitterBufferEvent>);
9619
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
9620
+ static readonly typeName = "norsk.api.media.JitterBufferEvent";
9621
+ static readonly fields: FieldList;
9622
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferEvent;
9623
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferEvent;
9624
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferEvent;
9625
+ static equals(a: JitterBufferEvent | PlainMessage<JitterBufferEvent> | undefined, b: JitterBufferEvent | PlainMessage<JitterBufferEvent> | undefined): boolean;
9626
+ }
9371
9627
  /**
9372
9628
  * @generated from message norsk.api.media.StreamSyncConfiguration
9373
9629
  */
@@ -9808,8 +10064,9 @@ export declare class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothE
9808
10064
  case: "switchError";
9809
10065
  } | {
9810
10066
  /**
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
10067
+ * Message sent when inbound context changes on some input; presence of an
10068
+ * input in this message means that media has arrived and is ready to switch
10069
+ * immediately
9813
10070
  *
9814
10071
  * @generated from field: norsk.api.media.MultipleContext inbound_context = 5;
9815
10072
  */
@@ -10703,6 +10960,907 @@ export declare class AudioTranscribeAwsEvent extends Message<AudioTranscribeAwsE
10703
10960
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAwsEvent;
10704
10961
  static equals(a: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined, b: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined): boolean;
10705
10962
  }
10963
+ /**
10964
+ * @generated from message norsk.api.media.AncillaryConfiguration
10965
+ */
10966
+ export declare class AncillaryConfiguration extends Message<AncillaryConfiguration> {
10967
+ /**
10968
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
10969
+ */
10970
+ id?: MediaNodeId;
10971
+ constructor(data?: PartialMessage<AncillaryConfiguration>);
10972
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10973
+ static readonly typeName = "norsk.api.media.AncillaryConfiguration";
10974
+ static readonly fields: FieldList;
10975
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryConfiguration;
10976
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryConfiguration;
10977
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryConfiguration;
10978
+ static equals(a: AncillaryConfiguration | PlainMessage<AncillaryConfiguration> | undefined, b: AncillaryConfiguration | PlainMessage<AncillaryConfiguration> | undefined): boolean;
10979
+ }
10980
+ /**
10981
+ * @generated from message norsk.api.media.AncillaryMessage
10982
+ */
10983
+ export declare class AncillaryMessage extends Message<AncillaryMessage> {
10984
+ /**
10985
+ * @generated from oneof norsk.api.media.AncillaryMessage.message
10986
+ */
10987
+ message: {
10988
+ /**
10989
+ * @generated from field: norsk.api.media.AncillaryConfiguration initial_config = 1;
10990
+ */
10991
+ value: AncillaryConfiguration;
10992
+ case: "initialConfig";
10993
+ } | {
10994
+ /**
10995
+ * @generated from field: norsk.api.media.Subscription subscription = 2;
10996
+ */
10997
+ value: Subscription;
10998
+ case: "subscription";
10999
+ } | {
11000
+ /**
11001
+ * @generated from field: norsk.api.media.Scte35Event scte35_event = 3;
11002
+ */
11003
+ value: Scte35Event;
11004
+ case: "scte35Event";
11005
+ } | {
11006
+ case: undefined;
11007
+ value?: undefined;
11008
+ };
11009
+ constructor(data?: PartialMessage<AncillaryMessage>);
11010
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11011
+ static readonly typeName = "norsk.api.media.AncillaryMessage";
11012
+ static readonly fields: FieldList;
11013
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryMessage;
11014
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryMessage;
11015
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryMessage;
11016
+ static equals(a: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined, b: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined): boolean;
11017
+ }
11018
+ /**
11019
+ * @generated from message norsk.api.media.AncillaryEvent
11020
+ */
11021
+ export declare class AncillaryEvent extends Message<AncillaryEvent> {
11022
+ /**
11023
+ * @generated from oneof norsk.api.media.AncillaryEvent.message
11024
+ */
11025
+ message: {
11026
+ /**
11027
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
11028
+ */
11029
+ value: MediaNodeId;
11030
+ case: "nodeId";
11031
+ } | {
11032
+ /**
11033
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
11034
+ */
11035
+ value: Context;
11036
+ case: "outboundContext";
11037
+ } | {
11038
+ /**
11039
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
11040
+ */
11041
+ value: SubscriptionResponse;
11042
+ case: "subscriptionResponse";
11043
+ } | {
11044
+ /**
11045
+ * @generated from field: norsk.api.media.Scte35Event scte35_event = 4;
11046
+ */
11047
+ value: Scte35Event;
11048
+ case: "scte35Event";
11049
+ } | {
11050
+ case: undefined;
11051
+ value?: undefined;
11052
+ };
11053
+ constructor(data?: PartialMessage<AncillaryEvent>);
11054
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11055
+ static readonly typeName = "norsk.api.media.AncillaryEvent";
11056
+ static readonly fields: FieldList;
11057
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryEvent;
11058
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryEvent;
11059
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryEvent;
11060
+ static equals(a: AncillaryEvent | PlainMessage<AncillaryEvent> | undefined, b: AncillaryEvent | PlainMessage<AncillaryEvent> | undefined): boolean;
11061
+ }
11062
+ /**
11063
+ * @generated from message norsk.api.media.Scte35Event
11064
+ */
11065
+ export declare class Scte35Event extends Message<Scte35Event> {
11066
+ /**
11067
+ * @generated from field: norsk.api.media.StreamKey stream = 1;
11068
+ */
11069
+ stream?: StreamKey;
11070
+ /**
11071
+ * @generated from field: norsk.api.media.Scte35SpliceInfoSection info = 2;
11072
+ */
11073
+ info?: Scte35SpliceInfoSection;
11074
+ constructor(data?: PartialMessage<Scte35Event>);
11075
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11076
+ static readonly typeName = "norsk.api.media.Scte35Event";
11077
+ static readonly fields: FieldList;
11078
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35Event;
11079
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35Event;
11080
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35Event;
11081
+ static equals(a: Scte35Event | PlainMessage<Scte35Event> | undefined, b: Scte35Event | PlainMessage<Scte35Event> | undefined): boolean;
11082
+ }
11083
+ /**
11084
+ * @generated from message norsk.api.media.Scte35SpliceInfoSection
11085
+ */
11086
+ export declare class Scte35SpliceInfoSection extends Message<Scte35SpliceInfoSection> {
11087
+ /**
11088
+ * @generated from field: uint32 sap_type = 1;
11089
+ */
11090
+ sapType: number;
11091
+ /**
11092
+ * @generated from field: uint32 protocol_version = 2;
11093
+ */
11094
+ protocolVersion: number;
11095
+ /**
11096
+ * @generated from field: bool encrypted_packet = 3;
11097
+ */
11098
+ encryptedPacket: boolean;
11099
+ /**
11100
+ * @generated from field: uint32 encryption_algorithm = 4;
11101
+ */
11102
+ encryptionAlgorithm: number;
11103
+ /**
11104
+ * @generated from field: uint64 pts_adjustment = 5;
11105
+ */
11106
+ ptsAdjustment: bigint;
11107
+ /**
11108
+ * @generated from field: uint32 cw_index = 6;
11109
+ */
11110
+ cwIndex: number;
11111
+ /**
11112
+ * @generated from field: uint32 tier = 7;
11113
+ */
11114
+ tier: number;
11115
+ /**
11116
+ * @generated from field: norsk.api.media.Scte35SpliceCommand splice_command = 8;
11117
+ */
11118
+ spliceCommand?: Scte35SpliceCommand;
11119
+ /**
11120
+ * @generated from field: repeated norsk.api.media.Scte35SpliceDescriptor descriptors = 9;
11121
+ */
11122
+ descriptors: Scte35SpliceDescriptor[];
11123
+ constructor(data?: PartialMessage<Scte35SpliceInfoSection>);
11124
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11125
+ static readonly typeName = "norsk.api.media.Scte35SpliceInfoSection";
11126
+ static readonly fields: FieldList;
11127
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceInfoSection;
11128
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceInfoSection;
11129
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceInfoSection;
11130
+ static equals(a: Scte35SpliceInfoSection | PlainMessage<Scte35SpliceInfoSection> | undefined, b: Scte35SpliceInfoSection | PlainMessage<Scte35SpliceInfoSection> | undefined): boolean;
11131
+ }
11132
+ /**
11133
+ * @generated from message norsk.api.media.Scte35SpliceCommand
11134
+ */
11135
+ export declare class Scte35SpliceCommand extends Message<Scte35SpliceCommand> {
11136
+ /**
11137
+ * @generated from oneof norsk.api.media.Scte35SpliceCommand.message
11138
+ */
11139
+ message: {
11140
+ /**
11141
+ * @generated from field: google.protobuf.Empty null = 1;
11142
+ */
11143
+ value: Empty;
11144
+ case: "null";
11145
+ } | {
11146
+ /**
11147
+ * @generated from field: norsk.api.media.Scte35ScheduleCommand schedule = 2;
11148
+ */
11149
+ value: Scte35ScheduleCommand;
11150
+ case: "schedule";
11151
+ } | {
11152
+ /**
11153
+ * @generated from field: norsk.api.media.Scte35InsertCommand insert = 3;
11154
+ */
11155
+ value: Scte35InsertCommand;
11156
+ case: "insert";
11157
+ } | {
11158
+ /**
11159
+ * @generated from field: norsk.api.media.Scte35TimeSignalCommand time_signal = 4;
11160
+ */
11161
+ value: Scte35TimeSignalCommand;
11162
+ case: "timeSignal";
11163
+ } | {
11164
+ /**
11165
+ * @generated from field: google.protobuf.Empty bandwidth_reservation = 5;
11166
+ */
11167
+ value: Empty;
11168
+ case: "bandwidthReservation";
11169
+ } | {
11170
+ /**
11171
+ * @generated from field: norsk.api.media.Scte35PrivateCommand private_command = 6;
11172
+ */
11173
+ value: Scte35PrivateCommand;
11174
+ case: "privateCommand";
11175
+ } | {
11176
+ /**
11177
+ * @generated from field: uint32 reserved = 7;
11178
+ */
11179
+ value: number;
11180
+ case: "reserved";
11181
+ } | {
11182
+ case: undefined;
11183
+ value?: undefined;
11184
+ };
11185
+ constructor(data?: PartialMessage<Scte35SpliceCommand>);
11186
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11187
+ static readonly typeName = "norsk.api.media.Scte35SpliceCommand";
11188
+ static readonly fields: FieldList;
11189
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceCommand;
11190
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceCommand;
11191
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceCommand;
11192
+ static equals(a: Scte35SpliceCommand | PlainMessage<Scte35SpliceCommand> | undefined, b: Scte35SpliceCommand | PlainMessage<Scte35SpliceCommand> | undefined): boolean;
11193
+ }
11194
+ /**
11195
+ * @generated from message norsk.api.media.Scte35TimeSignalCommand
11196
+ */
11197
+ export declare class Scte35TimeSignalCommand extends Message<Scte35TimeSignalCommand> {
11198
+ /**
11199
+ * @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 1;
11200
+ */
11201
+ spliceTime?: Scte35SpliceTime;
11202
+ constructor(data?: PartialMessage<Scte35TimeSignalCommand>);
11203
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11204
+ static readonly typeName = "norsk.api.media.Scte35TimeSignalCommand";
11205
+ static readonly fields: FieldList;
11206
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35TimeSignalCommand;
11207
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35TimeSignalCommand;
11208
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35TimeSignalCommand;
11209
+ static equals(a: Scte35TimeSignalCommand | PlainMessage<Scte35TimeSignalCommand> | undefined, b: Scte35TimeSignalCommand | PlainMessage<Scte35TimeSignalCommand> | undefined): boolean;
11210
+ }
11211
+ /**
11212
+ * @generated from message norsk.api.media.Scte35InsertCommand
11213
+ */
11214
+ export declare class Scte35InsertCommand extends Message<Scte35InsertCommand> {
11215
+ /**
11216
+ * @generated from field: uint32 splice_event_id = 1;
11217
+ */
11218
+ spliceEventId: number;
11219
+ /**
11220
+ * @generated from field: bool splice_event_cancel_indicator = 2;
11221
+ */
11222
+ spliceEventCancelIndicator: boolean;
11223
+ /**
11224
+ * @generated from field: bool out_of_network_indicator = 3;
11225
+ */
11226
+ outOfNetworkIndicator: boolean;
11227
+ /**
11228
+ * @generated from field: bool splice_immediate_flag = 4;
11229
+ */
11230
+ spliceImmediateFlag: boolean;
11231
+ /**
11232
+ * @generated from field: norsk.api.media.Scte35InsertCommandMode mode = 5;
11233
+ */
11234
+ mode?: Scte35InsertCommandMode;
11235
+ /**
11236
+ * @generated from field: norsk.api.media.Scte35BreakDuration break_duration = 6;
11237
+ */
11238
+ breakDuration?: Scte35BreakDuration;
11239
+ /**
11240
+ * @generated from field: uint32 unique_program_id = 7;
11241
+ */
11242
+ uniqueProgramId: number;
11243
+ /**
11244
+ * @generated from field: uint32 avail_num = 8;
11245
+ */
11246
+ availNum: number;
11247
+ /**
11248
+ * @generated from field: uint32 avails_expected = 9;
11249
+ */
11250
+ availsExpected: number;
11251
+ constructor(data?: PartialMessage<Scte35InsertCommand>);
11252
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11253
+ static readonly typeName = "norsk.api.media.Scte35InsertCommand";
11254
+ static readonly fields: FieldList;
11255
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommand;
11256
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommand;
11257
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommand;
11258
+ static equals(a: Scte35InsertCommand | PlainMessage<Scte35InsertCommand> | undefined, b: Scte35InsertCommand | PlainMessage<Scte35InsertCommand> | undefined): boolean;
11259
+ }
11260
+ /**
11261
+ * @generated from message norsk.api.media.Scte35InsertCommandMode
11262
+ */
11263
+ export declare class Scte35InsertCommandMode extends Message<Scte35InsertCommandMode> {
11264
+ /**
11265
+ * @generated from oneof norsk.api.media.Scte35InsertCommandMode.message
11266
+ */
11267
+ message: {
11268
+ /**
11269
+ * @generated from field: norsk.api.media.Scte35InsertCommandMode.InsertProgram insert_program = 1;
11270
+ */
11271
+ value: Scte35InsertCommandMode_InsertProgram;
11272
+ case: "insertProgram";
11273
+ } | {
11274
+ /**
11275
+ * @generated from field: norsk.api.media.Scte35InsertCommandMode.InsertComponent insert_component = 2;
11276
+ */
11277
+ value: Scte35InsertCommandMode_InsertComponent;
11278
+ case: "insertComponent";
11279
+ } | {
11280
+ case: undefined;
11281
+ value?: undefined;
11282
+ };
11283
+ constructor(data?: PartialMessage<Scte35InsertCommandMode>);
11284
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11285
+ static readonly typeName = "norsk.api.media.Scte35InsertCommandMode";
11286
+ static readonly fields: FieldList;
11287
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode;
11288
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode;
11289
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode;
11290
+ static equals(a: Scte35InsertCommandMode | PlainMessage<Scte35InsertCommandMode> | undefined, b: Scte35InsertCommandMode | PlainMessage<Scte35InsertCommandMode> | undefined): boolean;
11291
+ }
11292
+ /**
11293
+ * @generated from message norsk.api.media.Scte35InsertCommandMode.InsertProgram
11294
+ */
11295
+ export declare class Scte35InsertCommandMode_InsertProgram extends Message<Scte35InsertCommandMode_InsertProgram> {
11296
+ /**
11297
+ * @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 1;
11298
+ */
11299
+ spliceTime?: Scte35SpliceTime;
11300
+ constructor(data?: PartialMessage<Scte35InsertCommandMode_InsertProgram>);
11301
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11302
+ static readonly typeName = "norsk.api.media.Scte35InsertCommandMode.InsertProgram";
11303
+ static readonly fields: FieldList;
11304
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode_InsertProgram;
11305
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertProgram;
11306
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertProgram;
11307
+ static equals(a: Scte35InsertCommandMode_InsertProgram | PlainMessage<Scte35InsertCommandMode_InsertProgram> | undefined, b: Scte35InsertCommandMode_InsertProgram | PlainMessage<Scte35InsertCommandMode_InsertProgram> | undefined): boolean;
11308
+ }
11309
+ /**
11310
+ * @generated from message norsk.api.media.Scte35InsertCommandMode.InsertComponent
11311
+ */
11312
+ export declare class Scte35InsertCommandMode_InsertComponent extends Message<Scte35InsertCommandMode_InsertComponent> {
11313
+ /**
11314
+ * @generated from field: repeated norsk.api.media.Scte35InsertCommandComponent components = 1;
11315
+ */
11316
+ components: Scte35InsertCommandComponent[];
11317
+ constructor(data?: PartialMessage<Scte35InsertCommandMode_InsertComponent>);
11318
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11319
+ static readonly typeName = "norsk.api.media.Scte35InsertCommandMode.InsertComponent";
11320
+ static readonly fields: FieldList;
11321
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode_InsertComponent;
11322
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertComponent;
11323
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertComponent;
11324
+ static equals(a: Scte35InsertCommandMode_InsertComponent | PlainMessage<Scte35InsertCommandMode_InsertComponent> | undefined, b: Scte35InsertCommandMode_InsertComponent | PlainMessage<Scte35InsertCommandMode_InsertComponent> | undefined): boolean;
11325
+ }
11326
+ /**
11327
+ * @generated from message norsk.api.media.Scte35InsertCommandComponent
11328
+ */
11329
+ export declare class Scte35InsertCommandComponent extends Message<Scte35InsertCommandComponent> {
11330
+ /**
11331
+ * @generated from field: uint32 component_tag = 1;
11332
+ */
11333
+ componentTag: number;
11334
+ /**
11335
+ * @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 2;
11336
+ */
11337
+ spliceTime?: Scte35SpliceTime;
11338
+ constructor(data?: PartialMessage<Scte35InsertCommandComponent>);
11339
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11340
+ static readonly typeName = "norsk.api.media.Scte35InsertCommandComponent";
11341
+ static readonly fields: FieldList;
11342
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandComponent;
11343
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandComponent;
11344
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandComponent;
11345
+ static equals(a: Scte35InsertCommandComponent | PlainMessage<Scte35InsertCommandComponent> | undefined, b: Scte35InsertCommandComponent | PlainMessage<Scte35InsertCommandComponent> | undefined): boolean;
11346
+ }
11347
+ /**
11348
+ * @generated from message norsk.api.media.Scte35SpliceTime
11349
+ */
11350
+ export declare class Scte35SpliceTime extends Message<Scte35SpliceTime> {
11351
+ /**
11352
+ * @generated from field: norsk.api.media.OptionalInt pts_time = 1;
11353
+ */
11354
+ ptsTime?: OptionalInt;
11355
+ constructor(data?: PartialMessage<Scte35SpliceTime>);
11356
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11357
+ static readonly typeName = "norsk.api.media.Scte35SpliceTime";
11358
+ static readonly fields: FieldList;
11359
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceTime;
11360
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceTime;
11361
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceTime;
11362
+ static equals(a: Scte35SpliceTime | PlainMessage<Scte35SpliceTime> | undefined, b: Scte35SpliceTime | PlainMessage<Scte35SpliceTime> | undefined): boolean;
11363
+ }
11364
+ /**
11365
+ * @generated from message norsk.api.media.Scte35BreakDuration
11366
+ */
11367
+ export declare class Scte35BreakDuration extends Message<Scte35BreakDuration> {
11368
+ /**
11369
+ * @generated from field: bool auto_return = 1;
11370
+ */
11371
+ autoReturn: boolean;
11372
+ /**
11373
+ * @generated from field: uint64 duration = 2;
11374
+ */
11375
+ duration: bigint;
11376
+ constructor(data?: PartialMessage<Scte35BreakDuration>);
11377
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11378
+ static readonly typeName = "norsk.api.media.Scte35BreakDuration";
11379
+ static readonly fields: FieldList;
11380
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35BreakDuration;
11381
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35BreakDuration;
11382
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35BreakDuration;
11383
+ static equals(a: Scte35BreakDuration | PlainMessage<Scte35BreakDuration> | undefined, b: Scte35BreakDuration | PlainMessage<Scte35BreakDuration> | undefined): boolean;
11384
+ }
11385
+ /**
11386
+ * @generated from message norsk.api.media.Scte35PrivateCommand
11387
+ */
11388
+ export declare class Scte35PrivateCommand extends Message<Scte35PrivateCommand> {
11389
+ /**
11390
+ * @generated from field: uint32 identifier = 1;
11391
+ */
11392
+ identifier: number;
11393
+ /**
11394
+ * @generated from field: bytes private_bytes = 2;
11395
+ */
11396
+ privateBytes: Uint8Array;
11397
+ constructor(data?: PartialMessage<Scte35PrivateCommand>);
11398
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11399
+ static readonly typeName = "norsk.api.media.Scte35PrivateCommand";
11400
+ static readonly fields: FieldList;
11401
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35PrivateCommand;
11402
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35PrivateCommand;
11403
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35PrivateCommand;
11404
+ static equals(a: Scte35PrivateCommand | PlainMessage<Scte35PrivateCommand> | undefined, b: Scte35PrivateCommand | PlainMessage<Scte35PrivateCommand> | undefined): boolean;
11405
+ }
11406
+ /**
11407
+ * @generated from message norsk.api.media.Scte35ScheduleCommand
11408
+ */
11409
+ export declare class Scte35ScheduleCommand extends Message<Scte35ScheduleCommand> {
11410
+ /**
11411
+ * @generated from field: repeated norsk.api.media.Scte35ScheduleItem items = 1;
11412
+ */
11413
+ items: Scte35ScheduleItem[];
11414
+ constructor(data?: PartialMessage<Scte35ScheduleCommand>);
11415
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11416
+ static readonly typeName = "norsk.api.media.Scte35ScheduleCommand";
11417
+ static readonly fields: FieldList;
11418
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommand;
11419
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommand;
11420
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommand;
11421
+ static equals(a: Scte35ScheduleCommand | PlainMessage<Scte35ScheduleCommand> | undefined, b: Scte35ScheduleCommand | PlainMessage<Scte35ScheduleCommand> | undefined): boolean;
11422
+ }
11423
+ /**
11424
+ * @generated from message norsk.api.media.Scte35ScheduleItem
11425
+ */
11426
+ export declare class Scte35ScheduleItem extends Message<Scte35ScheduleItem> {
11427
+ /**
11428
+ * @generated from field: uint32 splice_event_id = 1;
11429
+ */
11430
+ spliceEventId: number;
11431
+ /**
11432
+ * @generated from field: bool splice_event_cancel_indicator = 2;
11433
+ */
11434
+ spliceEventCancelIndicator: boolean;
11435
+ /**
11436
+ * @generated from field: bool out_of_network_indicator = 3;
11437
+ */
11438
+ outOfNetworkIndicator: boolean;
11439
+ /**
11440
+ * @generated from field: norsk.api.media.Scte35ScheduleCommandMode mode = 4;
11441
+ */
11442
+ mode?: Scte35ScheduleCommandMode;
11443
+ /**
11444
+ * @generated from field: norsk.api.media.Scte35BreakDuration break_duration = 5;
11445
+ */
11446
+ breakDuration?: Scte35BreakDuration;
11447
+ /**
11448
+ * @generated from field: uint32 unique_program_id = 6;
11449
+ */
11450
+ uniqueProgramId: number;
11451
+ /**
11452
+ * @generated from field: uint32 avail_num = 7;
11453
+ */
11454
+ availNum: number;
11455
+ /**
11456
+ * @generated from field: uint32 avails_expected = 8;
11457
+ */
11458
+ availsExpected: number;
11459
+ constructor(data?: PartialMessage<Scte35ScheduleItem>);
11460
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11461
+ static readonly typeName = "norsk.api.media.Scte35ScheduleItem";
11462
+ static readonly fields: FieldList;
11463
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleItem;
11464
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleItem;
11465
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleItem;
11466
+ static equals(a: Scte35ScheduleItem | PlainMessage<Scte35ScheduleItem> | undefined, b: Scte35ScheduleItem | PlainMessage<Scte35ScheduleItem> | undefined): boolean;
11467
+ }
11468
+ /**
11469
+ * @generated from message norsk.api.media.Scte35ScheduleCommandMode
11470
+ */
11471
+ export declare class Scte35ScheduleCommandMode extends Message<Scte35ScheduleCommandMode> {
11472
+ /**
11473
+ * @generated from oneof norsk.api.media.Scte35ScheduleCommandMode.message
11474
+ */
11475
+ message: {
11476
+ /**
11477
+ * @generated from field: norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram schedule_program = 1;
11478
+ */
11479
+ value: Scte35ScheduleCommandMode_ScheduleProgram;
11480
+ case: "scheduleProgram";
11481
+ } | {
11482
+ /**
11483
+ * @generated from field: norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent schedule_component = 2;
11484
+ */
11485
+ value: Scte35ScheduleCommandMode_ScheduleComponent;
11486
+ case: "scheduleComponent";
11487
+ } | {
11488
+ case: undefined;
11489
+ value?: undefined;
11490
+ };
11491
+ constructor(data?: PartialMessage<Scte35ScheduleCommandMode>);
11492
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11493
+ static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode";
11494
+ static readonly fields: FieldList;
11495
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode;
11496
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode;
11497
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode;
11498
+ static equals(a: Scte35ScheduleCommandMode | PlainMessage<Scte35ScheduleCommandMode> | undefined, b: Scte35ScheduleCommandMode | PlainMessage<Scte35ScheduleCommandMode> | undefined): boolean;
11499
+ }
11500
+ /**
11501
+ * @generated from message norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram
11502
+ */
11503
+ export declare class Scte35ScheduleCommandMode_ScheduleProgram extends Message<Scte35ScheduleCommandMode_ScheduleProgram> {
11504
+ /**
11505
+ * @generated from field: uint32 utc_splice_time = 1;
11506
+ */
11507
+ utcSpliceTime: number;
11508
+ constructor(data?: PartialMessage<Scte35ScheduleCommandMode_ScheduleProgram>);
11509
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11510
+ static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram";
11511
+ static readonly fields: FieldList;
11512
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
11513
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
11514
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
11515
+ static equals(a: Scte35ScheduleCommandMode_ScheduleProgram | PlainMessage<Scte35ScheduleCommandMode_ScheduleProgram> | undefined, b: Scte35ScheduleCommandMode_ScheduleProgram | PlainMessage<Scte35ScheduleCommandMode_ScheduleProgram> | undefined): boolean;
11516
+ }
11517
+ /**
11518
+ * @generated from message norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent
11519
+ */
11520
+ export declare class Scte35ScheduleCommandMode_ScheduleComponent extends Message<Scte35ScheduleCommandMode_ScheduleComponent> {
11521
+ /**
11522
+ * @generated from field: repeated norsk.api.media.Scte35ScheduleCommandComponent components = 1;
11523
+ */
11524
+ components: Scte35ScheduleCommandComponent[];
11525
+ constructor(data?: PartialMessage<Scte35ScheduleCommandMode_ScheduleComponent>);
11526
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11527
+ static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent";
11528
+ static readonly fields: FieldList;
11529
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
11530
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
11531
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
11532
+ static equals(a: Scte35ScheduleCommandMode_ScheduleComponent | PlainMessage<Scte35ScheduleCommandMode_ScheduleComponent> | undefined, b: Scte35ScheduleCommandMode_ScheduleComponent | PlainMessage<Scte35ScheduleCommandMode_ScheduleComponent> | undefined): boolean;
11533
+ }
11534
+ /**
11535
+ * @generated from message norsk.api.media.Scte35ScheduleCommandComponent
11536
+ */
11537
+ export declare class Scte35ScheduleCommandComponent extends Message<Scte35ScheduleCommandComponent> {
11538
+ /**
11539
+ * @generated from field: uint32 component_tag = 1;
11540
+ */
11541
+ componentTag: number;
11542
+ /**
11543
+ * @generated from field: uint32 utc_splice_time = 2;
11544
+ */
11545
+ utcSpliceTime: number;
11546
+ constructor(data?: PartialMessage<Scte35ScheduleCommandComponent>);
11547
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11548
+ static readonly typeName = "norsk.api.media.Scte35ScheduleCommandComponent";
11549
+ static readonly fields: FieldList;
11550
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandComponent;
11551
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandComponent;
11552
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandComponent;
11553
+ static equals(a: Scte35ScheduleCommandComponent | PlainMessage<Scte35ScheduleCommandComponent> | undefined, b: Scte35ScheduleCommandComponent | PlainMessage<Scte35ScheduleCommandComponent> | undefined): boolean;
11554
+ }
11555
+ /**
11556
+ * @generated from message norsk.api.media.Scte35SpliceDescriptor
11557
+ */
11558
+ export declare class Scte35SpliceDescriptor extends Message<Scte35SpliceDescriptor> {
11559
+ /**
11560
+ * @generated from oneof norsk.api.media.Scte35SpliceDescriptor.message
11561
+ */
11562
+ message: {
11563
+ /**
11564
+ * @generated from field: norsk.api.media.Scte35AvailDescriptor avail = 1;
11565
+ */
11566
+ value: Scte35AvailDescriptor;
11567
+ case: "avail";
11568
+ } | {
11569
+ /**
11570
+ * @generated from field: norsk.api.media.Scte35DtmfDescriptor dtmf = 2;
11571
+ */
11572
+ value: Scte35DtmfDescriptor;
11573
+ case: "dtmf";
11574
+ } | {
11575
+ /**
11576
+ * @generated from field: norsk.api.media.Scte35SegmentationDescriptor segmentation = 3;
11577
+ */
11578
+ value: Scte35SegmentationDescriptor;
11579
+ case: "segmentation";
11580
+ } | {
11581
+ /**
11582
+ * @generated from field: norsk.api.media.Scte35TimeDescriptor time = 4;
11583
+ */
11584
+ value: Scte35TimeDescriptor;
11585
+ case: "time";
11586
+ } | {
11587
+ /**
11588
+ * @generated from field: norsk.api.media.Scte35AudioDescriptor audio = 5;
11589
+ */
11590
+ value: Scte35AudioDescriptor;
11591
+ case: "audio";
11592
+ } | {
11593
+ /**
11594
+ * @generated from field: norsk.api.media.Scte35GenericDescriptor reserved_other = 6;
11595
+ */
11596
+ value: Scte35GenericDescriptor;
11597
+ case: "reservedOther";
11598
+ } | {
11599
+ case: undefined;
11600
+ value?: undefined;
11601
+ };
11602
+ constructor(data?: PartialMessage<Scte35SpliceDescriptor>);
11603
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11604
+ static readonly typeName = "norsk.api.media.Scte35SpliceDescriptor";
11605
+ static readonly fields: FieldList;
11606
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceDescriptor;
11607
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceDescriptor;
11608
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceDescriptor;
11609
+ static equals(a: Scte35SpliceDescriptor | PlainMessage<Scte35SpliceDescriptor> | undefined, b: Scte35SpliceDescriptor | PlainMessage<Scte35SpliceDescriptor> | undefined): boolean;
11610
+ }
11611
+ /**
11612
+ * @generated from message norsk.api.media.Scte35GenericDescriptor
11613
+ */
11614
+ export declare class Scte35GenericDescriptor extends Message<Scte35GenericDescriptor> {
11615
+ /**
11616
+ * @generated from field: uint32 identifier = 1;
11617
+ */
11618
+ identifier: number;
11619
+ /**
11620
+ * @generated from field: uint32 splice_descriptor_tag = 2;
11621
+ */
11622
+ spliceDescriptorTag: number;
11623
+ /**
11624
+ * @generated from field: bytes private_bytes = 3;
11625
+ */
11626
+ privateBytes: Uint8Array;
11627
+ constructor(data?: PartialMessage<Scte35GenericDescriptor>);
11628
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11629
+ static readonly typeName = "norsk.api.media.Scte35GenericDescriptor";
11630
+ static readonly fields: FieldList;
11631
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35GenericDescriptor;
11632
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35GenericDescriptor;
11633
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35GenericDescriptor;
11634
+ static equals(a: Scte35GenericDescriptor | PlainMessage<Scte35GenericDescriptor> | undefined, b: Scte35GenericDescriptor | PlainMessage<Scte35GenericDescriptor> | undefined): boolean;
11635
+ }
11636
+ /**
11637
+ * @generated from message norsk.api.media.Scte35AvailDescriptor
11638
+ */
11639
+ export declare class Scte35AvailDescriptor extends Message<Scte35AvailDescriptor> {
11640
+ /**
11641
+ * @generated from field: uint32 provider_avail_id = 1;
11642
+ */
11643
+ providerAvailId: number;
11644
+ constructor(data?: PartialMessage<Scte35AvailDescriptor>);
11645
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11646
+ static readonly typeName = "norsk.api.media.Scte35AvailDescriptor";
11647
+ static readonly fields: FieldList;
11648
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AvailDescriptor;
11649
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AvailDescriptor;
11650
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AvailDescriptor;
11651
+ static equals(a: Scte35AvailDescriptor | PlainMessage<Scte35AvailDescriptor> | undefined, b: Scte35AvailDescriptor | PlainMessage<Scte35AvailDescriptor> | undefined): boolean;
11652
+ }
11653
+ /**
11654
+ * @generated from message norsk.api.media.Scte35DtmfDescriptor
11655
+ */
11656
+ export declare class Scte35DtmfDescriptor extends Message<Scte35DtmfDescriptor> {
11657
+ /**
11658
+ * @generated from field: uint32 preroll = 1;
11659
+ */
11660
+ preroll: number;
11661
+ /**
11662
+ * @generated from field: bytes dtmf_chars = 2;
11663
+ */
11664
+ dtmfChars: Uint8Array;
11665
+ constructor(data?: PartialMessage<Scte35DtmfDescriptor>);
11666
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11667
+ static readonly typeName = "norsk.api.media.Scte35DtmfDescriptor";
11668
+ static readonly fields: FieldList;
11669
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35DtmfDescriptor;
11670
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35DtmfDescriptor;
11671
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35DtmfDescriptor;
11672
+ static equals(a: Scte35DtmfDescriptor | PlainMessage<Scte35DtmfDescriptor> | undefined, b: Scte35DtmfDescriptor | PlainMessage<Scte35DtmfDescriptor> | undefined): boolean;
11673
+ }
11674
+ /**
11675
+ * @generated from message norsk.api.media.Scte35TimeDescriptor
11676
+ */
11677
+ export declare class Scte35TimeDescriptor extends Message<Scte35TimeDescriptor> {
11678
+ /**
11679
+ * @generated from field: uint64 tai_seconds = 1;
11680
+ */
11681
+ taiSeconds: bigint;
11682
+ /**
11683
+ * @generated from field: uint32 tai_ns = 2;
11684
+ */
11685
+ taiNs: number;
11686
+ /**
11687
+ * @generated from field: uint32 utc_offset = 3;
11688
+ */
11689
+ utcOffset: number;
11690
+ constructor(data?: PartialMessage<Scte35TimeDescriptor>);
11691
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11692
+ static readonly typeName = "norsk.api.media.Scte35TimeDescriptor";
11693
+ static readonly fields: FieldList;
11694
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35TimeDescriptor;
11695
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35TimeDescriptor;
11696
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35TimeDescriptor;
11697
+ static equals(a: Scte35TimeDescriptor | PlainMessage<Scte35TimeDescriptor> | undefined, b: Scte35TimeDescriptor | PlainMessage<Scte35TimeDescriptor> | undefined): boolean;
11698
+ }
11699
+ /**
11700
+ * @generated from message norsk.api.media.Scte35AudioDescriptor
11701
+ */
11702
+ export declare class Scte35AudioDescriptor extends Message<Scte35AudioDescriptor> {
11703
+ /**
11704
+ * @generated from field: repeated norsk.api.media.Scte35AudioComponent components = 1;
11705
+ */
11706
+ components: Scte35AudioComponent[];
11707
+ constructor(data?: PartialMessage<Scte35AudioDescriptor>);
11708
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11709
+ static readonly typeName = "norsk.api.media.Scte35AudioDescriptor";
11710
+ static readonly fields: FieldList;
11711
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AudioDescriptor;
11712
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AudioDescriptor;
11713
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AudioDescriptor;
11714
+ static equals(a: Scte35AudioDescriptor | PlainMessage<Scte35AudioDescriptor> | undefined, b: Scte35AudioDescriptor | PlainMessage<Scte35AudioDescriptor> | undefined): boolean;
11715
+ }
11716
+ /**
11717
+ * @generated from message norsk.api.media.Scte35AudioComponent
11718
+ */
11719
+ export declare class Scte35AudioComponent extends Message<Scte35AudioComponent> {
11720
+ /**
11721
+ * @generated from field: uint32 component_tag = 1;
11722
+ */
11723
+ componentTag: number;
11724
+ /**
11725
+ * @generated from field: uint32 iso_code = 2;
11726
+ */
11727
+ isoCode: number;
11728
+ /**
11729
+ * @generated from field: uint32 bit_stream_mode = 3;
11730
+ */
11731
+ bitStreamMode: number;
11732
+ /**
11733
+ * @generated from field: uint32 num_channels = 4;
11734
+ */
11735
+ numChannels: number;
11736
+ /**
11737
+ * @generated from field: bool full_srvc_audio = 5;
11738
+ */
11739
+ fullSrvcAudio: boolean;
11740
+ constructor(data?: PartialMessage<Scte35AudioComponent>);
11741
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11742
+ static readonly typeName = "norsk.api.media.Scte35AudioComponent";
11743
+ static readonly fields: FieldList;
11744
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AudioComponent;
11745
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AudioComponent;
11746
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AudioComponent;
11747
+ static equals(a: Scte35AudioComponent | PlainMessage<Scte35AudioComponent> | undefined, b: Scte35AudioComponent | PlainMessage<Scte35AudioComponent> | undefined): boolean;
11748
+ }
11749
+ /**
11750
+ * @generated from message norsk.api.media.Scte35SegmentationDescriptor
11751
+ */
11752
+ export declare class Scte35SegmentationDescriptor extends Message<Scte35SegmentationDescriptor> {
11753
+ /**
11754
+ * @generated from field: uint32 segmentation_event_id = 1;
11755
+ */
11756
+ segmentationEventId: number;
11757
+ /**
11758
+ * @generated from field: bool segmentation_event_cancel_indicator = 2;
11759
+ */
11760
+ segmentationEventCancelIndicator: boolean;
11761
+ /**
11762
+ * @generated from field: bool program_segmentation_flag = 3;
11763
+ */
11764
+ programSegmentationFlag: boolean;
11765
+ /**
11766
+ * @generated from field: norsk.api.media.Scte35SegmentDeliveryRestrictions delivery_restrictions = 4;
11767
+ */
11768
+ deliveryRestrictions?: Scte35SegmentDeliveryRestrictions;
11769
+ /**
11770
+ * @generated from field: repeated norsk.api.media.Scte35SegmentationComponent components = 5;
11771
+ */
11772
+ components: Scte35SegmentationComponent[];
11773
+ /**
11774
+ * @generated from field: norsk.api.media.OptionalInt64 segmentation_duration = 6;
11775
+ */
11776
+ segmentationDuration?: OptionalInt64;
11777
+ /**
11778
+ * @generated from field: uint32 segmentation_upid_type = 7;
11779
+ */
11780
+ segmentationUpidType: number;
11781
+ /**
11782
+ * @generated from field: bytes segmentation_upid = 8;
11783
+ */
11784
+ segmentationUpid: Uint8Array;
11785
+ /**
11786
+ * @generated from field: uint32 segmentation_type_id = 9;
11787
+ */
11788
+ segmentationTypeId: number;
11789
+ /**
11790
+ * @generated from field: uint32 segment_num = 10;
11791
+ */
11792
+ segmentNum: number;
11793
+ /**
11794
+ * @generated from field: uint32 segments_expected = 11;
11795
+ */
11796
+ segmentsExpected: number;
11797
+ /**
11798
+ * @generated from field: norsk.api.media.OptionalInt sub_segment_num = 12;
11799
+ */
11800
+ subSegmentNum?: OptionalInt;
11801
+ /**
11802
+ * @generated from field: norsk.api.media.OptionalInt sub_segments_expected = 13;
11803
+ */
11804
+ subSegmentsExpected?: OptionalInt;
11805
+ constructor(data?: PartialMessage<Scte35SegmentationDescriptor>);
11806
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11807
+ static readonly typeName = "norsk.api.media.Scte35SegmentationDescriptor";
11808
+ static readonly fields: FieldList;
11809
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentationDescriptor;
11810
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentationDescriptor;
11811
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentationDescriptor;
11812
+ static equals(a: Scte35SegmentationDescriptor | PlainMessage<Scte35SegmentationDescriptor> | undefined, b: Scte35SegmentationDescriptor | PlainMessage<Scte35SegmentationDescriptor> | undefined): boolean;
11813
+ }
11814
+ /**
11815
+ * @generated from message norsk.api.media.Scte35SegmentDeliveryRestrictions
11816
+ */
11817
+ export declare class Scte35SegmentDeliveryRestrictions extends Message<Scte35SegmentDeliveryRestrictions> {
11818
+ /**
11819
+ * @generated from field: bool web_delivery_allowed_flag = 1;
11820
+ */
11821
+ webDeliveryAllowedFlag: boolean;
11822
+ /**
11823
+ * @generated from field: bool no_regional_blackout_flag = 2;
11824
+ */
11825
+ noRegionalBlackoutFlag: boolean;
11826
+ /**
11827
+ * @generated from field: bool archive_allowed_flag = 3;
11828
+ */
11829
+ archiveAllowedFlag: boolean;
11830
+ /**
11831
+ * @generated from field: uint32 device_restrictions = 4;
11832
+ */
11833
+ deviceRestrictions: number;
11834
+ constructor(data?: PartialMessage<Scte35SegmentDeliveryRestrictions>);
11835
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11836
+ static readonly typeName = "norsk.api.media.Scte35SegmentDeliveryRestrictions";
11837
+ static readonly fields: FieldList;
11838
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentDeliveryRestrictions;
11839
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentDeliveryRestrictions;
11840
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentDeliveryRestrictions;
11841
+ static equals(a: Scte35SegmentDeliveryRestrictions | PlainMessage<Scte35SegmentDeliveryRestrictions> | undefined, b: Scte35SegmentDeliveryRestrictions | PlainMessage<Scte35SegmentDeliveryRestrictions> | undefined): boolean;
11842
+ }
11843
+ /**
11844
+ * @generated from message norsk.api.media.Scte35SegmentationComponent
11845
+ */
11846
+ export declare class Scte35SegmentationComponent extends Message<Scte35SegmentationComponent> {
11847
+ /**
11848
+ * @generated from field: uint32 component_tag = 1;
11849
+ */
11850
+ componentTag: number;
11851
+ /**
11852
+ * @generated from field: uint64 pts_offset = 2;
11853
+ */
11854
+ ptsOffset: bigint;
11855
+ constructor(data?: PartialMessage<Scte35SegmentationComponent>);
11856
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
11857
+ static readonly typeName = "norsk.api.media.Scte35SegmentationComponent";
11858
+ static readonly fields: FieldList;
11859
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentationComponent;
11860
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentationComponent;
11861
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentationComponent;
11862
+ static equals(a: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined, b: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined): boolean;
11863
+ }
10706
11864
  /**
10707
11865
  * ////////////////////////////////////////////////////////////////////////////
10708
11866
  * Hardware