@norskvideo/norsk-api 1.0.348 → 1.0.350

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 { Empty, Message } from "@bufbuild/protobuf";
2
+ import { Empty, Message, Timestamp } from "@bufbuild/protobuf";
3
3
  import { CurrentLoad, Log, OptionalBool, OptionalInt, OptionalInt64, OptionalString, Version } from "./shared/common_pb.js";
4
4
  /**
5
5
  * Enumeration of possible channel positions.
@@ -2237,6 +2237,14 @@ export declare class RtmpServerInputConfiguration extends Message<RtmpServerInpu
2237
2237
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
2238
2238
  */
2239
2239
  statsSampling?: StreamStatisticsSampling;
2240
+ /**
2241
+ * @generated from field: bool ssl = 4;
2242
+ */
2243
+ ssl: boolean;
2244
+ /**
2245
+ * @generated from field: norsk.api.media.SslServerOptions ssl_options = 5;
2246
+ */
2247
+ sslOptions?: SslServerOptions;
2240
2248
  constructor(data?: PartialMessage<RtmpServerInputConfiguration>);
2241
2249
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2242
2250
  static readonly typeName = "norsk.api.media.RtmpServerInputConfiguration";
@@ -2246,6 +2254,27 @@ export declare class RtmpServerInputConfiguration extends Message<RtmpServerInpu
2246
2254
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpServerInputConfiguration;
2247
2255
  static equals(a: RtmpServerInputConfiguration | PlainMessage<RtmpServerInputConfiguration> | undefined, b: RtmpServerInputConfiguration | PlainMessage<RtmpServerInputConfiguration> | undefined): boolean;
2248
2256
  }
2257
+ /**
2258
+ * @generated from message norsk.api.media.SslServerOptions
2259
+ */
2260
+ export declare class SslServerOptions extends Message<SslServerOptions> {
2261
+ /**
2262
+ * @generated from field: string cert_file = 1;
2263
+ */
2264
+ certFile: string;
2265
+ /**
2266
+ * @generated from field: string key_file = 2;
2267
+ */
2268
+ keyFile: string;
2269
+ constructor(data?: PartialMessage<SslServerOptions>);
2270
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
2271
+ static readonly typeName = "norsk.api.media.SslServerOptions";
2272
+ static readonly fields: FieldList;
2273
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SslServerOptions;
2274
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SslServerOptions;
2275
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SslServerOptions;
2276
+ static equals(a: SslServerOptions | PlainMessage<SslServerOptions> | undefined, b: SslServerOptions | PlainMessage<SslServerOptions> | undefined): boolean;
2277
+ }
2249
2278
  /**
2250
2279
  * *
2251
2280
  * Accept a remote connection attempt.
@@ -3398,6 +3427,18 @@ export declare class UdpTsInputConfiguration extends Message<UdpTsInputConfigura
3398
3427
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3399
3428
  */
3400
3429
  statsSampling?: StreamStatisticsSampling;
3430
+ /**
3431
+ * @generated from field: norsk.api.media.Interface interface = 6;
3432
+ */
3433
+ interface?: Interface;
3434
+ /**
3435
+ * @generated from field: int32 timeout = 7;
3436
+ */
3437
+ timeout: number;
3438
+ /**
3439
+ * @generated from field: bool rtp_decapsulate = 8;
3440
+ */
3441
+ rtpDecapsulate: boolean;
3401
3442
  constructor(data?: PartialMessage<UdpTsInputConfiguration>);
3402
3443
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3403
3444
  static readonly typeName = "norsk.api.media.UdpTsInputConfiguration";
@@ -6054,6 +6095,10 @@ export declare class LocalPullDestination extends Message<LocalPullDestination>
6054
6095
  * @generated from field: float retention_period_seconds = 2;
6055
6096
  */
6056
6097
  retentionPeriodSeconds: number;
6098
+ /**
6099
+ * @generated from field: string id = 3;
6100
+ */
6101
+ id: string;
6057
6102
  constructor(data?: PartialMessage<LocalPullDestination>);
6058
6103
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6059
6104
  static readonly typeName = "norsk.api.media.LocalPullDestination";
@@ -6151,6 +6196,10 @@ export declare class CmafVideoConfiguration extends Message<CmafVideoConfigurati
6151
6196
  * @generated from field: int32 bitrate = 10;
6152
6197
  */
6153
6198
  bitrate: number;
6199
+ /**
6200
+ * @generated from field: uint32 maximum_playlist_segments = 11;
6201
+ */
6202
+ maximumPlaylistSegments: number;
6154
6203
  constructor(data?: PartialMessage<CmafVideoConfiguration>);
6155
6204
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6156
6205
  static readonly typeName = "norsk.api.media.CmafVideoConfiguration";
@@ -6185,6 +6234,12 @@ export declare class CmafVideoMessage extends Message<CmafVideoMessage> {
6185
6234
  */
6186
6235
  value: UpdateCredentials;
6187
6236
  case: "updateCredentials";
6237
+ } | {
6238
+ /**
6239
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
6240
+ */
6241
+ value: UpdateDestinationPlaylist;
6242
+ case: "updatePlaylist";
6188
6243
  } | {
6189
6244
  case: undefined;
6190
6245
  value?: undefined;
@@ -6238,6 +6293,10 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
6238
6293
  * @generated from field: int32 bitrate = 8;
6239
6294
  */
6240
6295
  bitrate: number;
6296
+ /**
6297
+ * @generated from field: uint32 maximum_playlist_segments = 9;
6298
+ */
6299
+ maximumPlaylistSegments: number;
6241
6300
  constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
6242
6301
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6243
6302
  static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
@@ -6272,6 +6331,12 @@ export declare class HlsTsVideoMessage extends Message<HlsTsVideoMessage> {
6272
6331
  */
6273
6332
  value: UpdateCredentials;
6274
6333
  case: "updateCredentials";
6334
+ } | {
6335
+ /**
6336
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
6337
+ */
6338
+ value: UpdateDestinationPlaylist;
6339
+ case: "updatePlaylist";
6275
6340
  } | {
6276
6341
  case: undefined;
6277
6342
  value?: undefined;
@@ -6333,6 +6398,10 @@ export declare class CmafAudioConfiguration extends Message<CmafAudioConfigurati
6333
6398
  * @generated from field: int32 bitrate = 11;
6334
6399
  */
6335
6400
  bitrate: number;
6401
+ /**
6402
+ * @generated from field: uint32 maximum_playlist_segments = 12;
6403
+ */
6404
+ maximumPlaylistSegments: number;
6336
6405
  constructor(data?: PartialMessage<CmafAudioConfiguration>);
6337
6406
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6338
6407
  static readonly typeName = "norsk.api.media.CmafAudioConfiguration";
@@ -6367,6 +6436,12 @@ export declare class CmafAudioMessage extends Message<CmafAudioMessage> {
6367
6436
  */
6368
6437
  value: UpdateCredentials;
6369
6438
  case: "updateCredentials";
6439
+ } | {
6440
+ /**
6441
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
6442
+ */
6443
+ value: UpdateDestinationPlaylist;
6444
+ case: "updatePlaylist";
6370
6445
  } | {
6371
6446
  case: undefined;
6372
6447
  value?: undefined;
@@ -6420,6 +6495,10 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
6420
6495
  * @generated from field: int32 bitrate = 8;
6421
6496
  */
6422
6497
  bitrate: number;
6498
+ /**
6499
+ * @generated from field: uint32 maximum_playlist_segments = 9;
6500
+ */
6501
+ maximumPlaylistSegments: number;
6423
6502
  constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
6424
6503
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6425
6504
  static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
@@ -6454,6 +6533,12 @@ export declare class HlsTsAudioMessage extends Message<HlsTsAudioMessage> {
6454
6533
  */
6455
6534
  value: UpdateCredentials;
6456
6535
  case: "updateCredentials";
6536
+ } | {
6537
+ /**
6538
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
6539
+ */
6540
+ value: UpdateDestinationPlaylist;
6541
+ case: "updatePlaylist";
6457
6542
  } | {
6458
6543
  case: undefined;
6459
6544
  value?: undefined;
@@ -6586,6 +6671,276 @@ export declare class UpdateCredentials extends Message<UpdateCredentials> {
6586
6671
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateCredentials;
6587
6672
  static equals(a: UpdateCredentials | PlainMessage<UpdateCredentials> | undefined, b: UpdateCredentials | PlainMessage<UpdateCredentials> | undefined): boolean;
6588
6673
  }
6674
+ /**
6675
+ * @generated from message norsk.api.media.UpdateDestinationPlaylist
6676
+ */
6677
+ export declare class UpdateDestinationPlaylist extends Message<UpdateDestinationPlaylist> {
6678
+ /**
6679
+ * TODO this doesn't have to be a list anymore, as we're only getting at most one update from the sdk
6680
+ *
6681
+ * @generated from field: repeated norsk.api.media.UpdatePlaylist playlists = 1;
6682
+ */
6683
+ playlists: UpdatePlaylist[];
6684
+ constructor(data?: PartialMessage<UpdateDestinationPlaylist>);
6685
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6686
+ static readonly typeName = "norsk.api.media.UpdateDestinationPlaylist";
6687
+ static readonly fields: FieldList;
6688
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateDestinationPlaylist;
6689
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateDestinationPlaylist;
6690
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateDestinationPlaylist;
6691
+ static equals(a: UpdateDestinationPlaylist | PlainMessage<UpdateDestinationPlaylist> | undefined, b: UpdateDestinationPlaylist | PlainMessage<UpdateDestinationPlaylist> | undefined): boolean;
6692
+ }
6693
+ /**
6694
+ * @generated from message norsk.api.media.UpdatePlaylist
6695
+ */
6696
+ export declare class UpdatePlaylist extends Message<UpdatePlaylist> {
6697
+ /**
6698
+ * @generated from field: string destination_id = 1;
6699
+ */
6700
+ destinationId: string;
6701
+ /**
6702
+ * @generated from oneof norsk.api.media.UpdatePlaylist.playlist
6703
+ */
6704
+ playlist: {
6705
+ /**
6706
+ * @generated from field: norsk.api.media.CmafMediaPlaylistData cmaf_playlist = 2;
6707
+ */
6708
+ value: CmafMediaPlaylistData;
6709
+ case: "cmafPlaylist";
6710
+ } | {
6711
+ /**
6712
+ * @generated from field: norsk.api.media.TsMediaPlaylistData ts_playlist = 3;
6713
+ */
6714
+ value: TsMediaPlaylistData;
6715
+ case: "tsPlaylist";
6716
+ } | {
6717
+ /**
6718
+ * @generated from field: norsk.api.media.MultiVariantPlaylistData multi_variant_playlist = 4;
6719
+ */
6720
+ value: MultiVariantPlaylistData;
6721
+ case: "multiVariantPlaylist";
6722
+ } | {
6723
+ case: undefined;
6724
+ value?: undefined;
6725
+ };
6726
+ constructor(data?: PartialMessage<UpdatePlaylist>);
6727
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6728
+ static readonly typeName = "norsk.api.media.UpdatePlaylist";
6729
+ static readonly fields: FieldList;
6730
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePlaylist;
6731
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePlaylist;
6732
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePlaylist;
6733
+ static equals(a: UpdatePlaylist | PlainMessage<UpdatePlaylist> | undefined, b: UpdatePlaylist | PlainMessage<UpdatePlaylist> | undefined): boolean;
6734
+ }
6735
+ /**
6736
+ * @generated from message norsk.api.media.AdMarker
6737
+ */
6738
+ export declare class AdMarker extends Message<AdMarker> {
6739
+ /**
6740
+ * @generated from field: string id = 1;
6741
+ */
6742
+ id: string;
6743
+ /**
6744
+ * @generated from field: string startDate = 2;
6745
+ */
6746
+ startDate: string;
6747
+ /**
6748
+ * @generated from field: uint32 durationSeconds = 3;
6749
+ */
6750
+ durationSeconds: number;
6751
+ /**
6752
+ * @generated from field: norsk.api.media.Scte35SpliceInfoSection scte35 = 4;
6753
+ */
6754
+ scte35?: Scte35SpliceInfoSection;
6755
+ constructor(data?: PartialMessage<AdMarker>);
6756
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6757
+ static readonly typeName = "norsk.api.media.AdMarker";
6758
+ static readonly fields: FieldList;
6759
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AdMarker;
6760
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AdMarker;
6761
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AdMarker;
6762
+ static equals(a: AdMarker | PlainMessage<AdMarker> | undefined, b: AdMarker | PlainMessage<AdMarker> | undefined): boolean;
6763
+ }
6764
+ /**
6765
+ * @generated from message norsk.api.media.MediaSegment
6766
+ */
6767
+ export declare class MediaSegment extends Message<MediaSegment> {
6768
+ /**
6769
+ * @generated from field: string uri = 1;
6770
+ */
6771
+ uri: string;
6772
+ /**
6773
+ * @generated from field: float duration = 2;
6774
+ */
6775
+ duration: number;
6776
+ /**
6777
+ * @generated from field: string title = 3;
6778
+ */
6779
+ title: string;
6780
+ /**
6781
+ * @generated from field: norsk.api.common.OptionalInt number = 4;
6782
+ */
6783
+ number?: OptionalInt;
6784
+ constructor(data?: PartialMessage<MediaSegment>);
6785
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6786
+ static readonly typeName = "norsk.api.media.MediaSegment";
6787
+ static readonly fields: FieldList;
6788
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaSegment;
6789
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaSegment;
6790
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaSegment;
6791
+ static equals(a: MediaSegment | PlainMessage<MediaSegment> | undefined, b: MediaSegment | PlainMessage<MediaSegment> | undefined): boolean;
6792
+ }
6793
+ /**
6794
+ * Any EXT-X thing you might have
6795
+ *
6796
+ * @generated from message norsk.api.media.HlsTag
6797
+ */
6798
+ export declare class HlsTag extends Message<HlsTag> {
6799
+ /**
6800
+ * @generated from field: string tag = 1;
6801
+ */
6802
+ tag: string;
6803
+ constructor(data?: PartialMessage<HlsTag>);
6804
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6805
+ static readonly typeName = "norsk.api.media.HlsTag";
6806
+ static readonly fields: FieldList;
6807
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTag;
6808
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HlsTag;
6809
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HlsTag;
6810
+ static equals(a: HlsTag | PlainMessage<HlsTag> | undefined, b: HlsTag | PlainMessage<HlsTag> | undefined): boolean;
6811
+ }
6812
+ /**
6813
+ * @generated from message norsk.api.media.ProgramDateTime
6814
+ */
6815
+ export declare class ProgramDateTime extends Message<ProgramDateTime> {
6816
+ /**
6817
+ * @generated from field: uint64 programDateTimeMs = 1;
6818
+ */
6819
+ programDateTimeMs: bigint;
6820
+ constructor(data?: PartialMessage<ProgramDateTime>);
6821
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6822
+ static readonly typeName = "norsk.api.media.ProgramDateTime";
6823
+ static readonly fields: FieldList;
6824
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProgramDateTime;
6825
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProgramDateTime;
6826
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProgramDateTime;
6827
+ static equals(a: ProgramDateTime | PlainMessage<ProgramDateTime> | undefined, b: ProgramDateTime | PlainMessage<ProgramDateTime> | undefined): boolean;
6828
+ }
6829
+ /**
6830
+ * @generated from message norsk.api.media.PlaylistPart
6831
+ */
6832
+ export declare class PlaylistPart extends Message<PlaylistPart> {
6833
+ /**
6834
+ * @generated from oneof norsk.api.media.PlaylistPart.playlist
6835
+ */
6836
+ playlist: {
6837
+ /**
6838
+ * @generated from field: norsk.api.media.MediaSegment mediaSegment = 1;
6839
+ */
6840
+ value: MediaSegment;
6841
+ case: "mediaSegment";
6842
+ } | {
6843
+ /**
6844
+ * @generated from field: norsk.api.media.HlsTag tag = 2;
6845
+ */
6846
+ value: HlsTag;
6847
+ case: "tag";
6848
+ } | {
6849
+ /**
6850
+ * @generated from field: norsk.api.media.AdMarker adMarker = 3;
6851
+ */
6852
+ value: AdMarker;
6853
+ case: "adMarker";
6854
+ } | {
6855
+ /**
6856
+ * @generated from field: norsk.api.media.ProgramDateTime programDateTime = 4;
6857
+ */
6858
+ value: ProgramDateTime;
6859
+ case: "programDateTime";
6860
+ } | {
6861
+ case: undefined;
6862
+ value?: undefined;
6863
+ };
6864
+ constructor(data?: PartialMessage<PlaylistPart>);
6865
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6866
+ static readonly typeName = "norsk.api.media.PlaylistPart";
6867
+ static readonly fields: FieldList;
6868
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PlaylistPart;
6869
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PlaylistPart;
6870
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PlaylistPart;
6871
+ static equals(a: PlaylistPart | PlainMessage<PlaylistPart> | undefined, b: PlaylistPart | PlainMessage<PlaylistPart> | undefined): boolean;
6872
+ }
6873
+ /**
6874
+ * @generated from message norsk.api.media.CmafMediaPlaylistData
6875
+ */
6876
+ export declare class CmafMediaPlaylistData extends Message<CmafMediaPlaylistData> {
6877
+ /**
6878
+ * @generated from field: repeated norsk.api.media.PlaylistPart hlsFilePartPlaylist = 1;
6879
+ */
6880
+ hlsFilePartPlaylist: PlaylistPart[];
6881
+ /**
6882
+ * @generated from field: repeated norsk.api.media.PlaylistPart hlsByteRangePlaylist = 2;
6883
+ */
6884
+ hlsByteRangePlaylist: PlaylistPart[];
6885
+ /**
6886
+ * @generated from field: repeated norsk.api.media.PlaylistPart hlsStandardPlaylist = 3;
6887
+ */
6888
+ hlsStandardPlaylist: PlaylistPart[];
6889
+ /**
6890
+ * @generated from field: uint64 programDateTime = 4;
6891
+ */
6892
+ programDateTime: bigint;
6893
+ constructor(data?: PartialMessage<CmafMediaPlaylistData>);
6894
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6895
+ static readonly typeName = "norsk.api.media.CmafMediaPlaylistData";
6896
+ static readonly fields: FieldList;
6897
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMediaPlaylistData;
6898
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMediaPlaylistData;
6899
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMediaPlaylistData;
6900
+ static equals(a: CmafMediaPlaylistData | PlainMessage<CmafMediaPlaylistData> | undefined, b: CmafMediaPlaylistData | PlainMessage<CmafMediaPlaylistData> | undefined): boolean;
6901
+ }
6902
+ /**
6903
+ * @generated from message norsk.api.media.TsMediaPlaylistData
6904
+ */
6905
+ export declare class TsMediaPlaylistData extends Message<TsMediaPlaylistData> {
6906
+ /**
6907
+ * @generated from field: repeated norsk.api.media.PlaylistPart playlist = 1;
6908
+ */
6909
+ playlist: PlaylistPart[];
6910
+ /**
6911
+ * @generated from field: uint64 programDateTime = 2;
6912
+ */
6913
+ programDateTime: bigint;
6914
+ constructor(data?: PartialMessage<TsMediaPlaylistData>);
6915
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6916
+ static readonly typeName = "norsk.api.media.TsMediaPlaylistData";
6917
+ static readonly fields: FieldList;
6918
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TsMediaPlaylistData;
6919
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TsMediaPlaylistData;
6920
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TsMediaPlaylistData;
6921
+ static equals(a: TsMediaPlaylistData | PlainMessage<TsMediaPlaylistData> | undefined, b: TsMediaPlaylistData | PlainMessage<TsMediaPlaylistData> | undefined): boolean;
6922
+ }
6923
+ /**
6924
+ * @generated from message norsk.api.media.MultiVariantPlaylistData
6925
+ */
6926
+ export declare class MultiVariantPlaylistData extends Message<MultiVariantPlaylistData> {
6927
+ /**
6928
+ * @generated from field: string hls = 1;
6929
+ */
6930
+ hls: string;
6931
+ /**
6932
+ * @generated from field: string dash = 2;
6933
+ */
6934
+ dash: string;
6935
+ constructor(data?: PartialMessage<MultiVariantPlaylistData>);
6936
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6937
+ static readonly typeName = "norsk.api.media.MultiVariantPlaylistData";
6938
+ static readonly fields: FieldList;
6939
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultiVariantPlaylistData;
6940
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultiVariantPlaylistData;
6941
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultiVariantPlaylistData;
6942
+ static equals(a: MultiVariantPlaylistData | PlainMessage<MultiVariantPlaylistData> | undefined, b: MultiVariantPlaylistData | PlainMessage<MultiVariantPlaylistData> | undefined): boolean;
6943
+ }
6589
6944
  /**
6590
6945
  * @generated from message norsk.api.media.CmafWebVttMessage
6591
6946
  */
@@ -6617,6 +6972,12 @@ export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
6617
6972
  */
6618
6973
  value: UpdateCredentials;
6619
6974
  case: "updateCredentials";
6975
+ } | {
6976
+ /**
6977
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 5;
6978
+ */
6979
+ value: UpdateDestinationPlaylist;
6980
+ case: "updatePlaylist";
6620
6981
  } | {
6621
6982
  case: undefined;
6622
6983
  value?: undefined;
@@ -6696,6 +7057,12 @@ export declare class CmafMultiVariantMessage extends Message<CmafMultiVariantMes
6696
7057
  */
6697
7058
  value: UpdateCredentials;
6698
7059
  case: "updateCredentials";
7060
+ } | {
7061
+ /**
7062
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
7063
+ */
7064
+ value: UpdateDestinationPlaylist;
7065
+ case: "updatePlaylist";
6699
7066
  } | {
6700
7067
  case: undefined;
6701
7068
  value?: undefined;
@@ -6769,6 +7136,12 @@ export declare class HlsTsMultiVariantMessage extends Message<HlsTsMultiVariantM
6769
7136
  */
6770
7137
  value: UpdateCredentials;
6771
7138
  case: "updateCredentials";
7139
+ } | {
7140
+ /**
7141
+ * @generated from field: norsk.api.media.UpdateDestinationPlaylist update_playlist = 4;
7142
+ */
7143
+ value: UpdateDestinationPlaylist;
7144
+ case: "updatePlaylist";
6772
7145
  } | {
6773
7146
  case: undefined;
6774
7147
  value?: undefined;
@@ -6931,6 +7304,12 @@ export declare class HlsOutputEvent extends Message<HlsOutputEvent> {
6931
7304
  */
6932
7305
  value: Context;
6933
7306
  case: "outboundContext";
7307
+ } | {
7308
+ /**
7309
+ * @generated from field: norsk.api.media.UpdatePlaylist playlist = 6;
7310
+ */
7311
+ value: UpdatePlaylist;
7312
+ case: "playlist";
6934
7313
  } | {
6935
7314
  case: undefined;
6936
7315
  value?: undefined;
@@ -6972,6 +7351,10 @@ export declare class UdpTsOutputConfiguration extends Message<UdpTsOutputConfigu
6972
7351
  * @generated from field: uint32 buffer_delay_ms = 6;
6973
7352
  */
6974
7353
  bufferDelayMs: number;
7354
+ /**
7355
+ * @generated from field: bool rtp_encapsulate = 7;
7356
+ */
7357
+ rtpEncapsulate: boolean;
6975
7358
  constructor(data?: PartialMessage<UdpTsOutputConfiguration>);
6976
7359
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
6977
7360
  static readonly typeName = "norsk.api.media.UdpTsOutputConfiguration";
@@ -7533,6 +7916,14 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
7533
7916
  * @generated from field: uint32 buffer_delay_ms = 4;
7534
7917
  */
7535
7918
  bufferDelayMs: number;
7919
+ /**
7920
+ * @generated from field: norsk.api.media.SslClientOptions ssl_options = 5;
7921
+ */
7922
+ sslOptions?: SslClientOptions;
7923
+ /**
7924
+ * @generated from field: int32 retry_connection_timeout = 6;
7925
+ */
7926
+ retryConnectionTimeout: number;
7536
7927
  constructor(data?: PartialMessage<RtmpOutputConfiguration>);
7537
7928
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
7538
7929
  static readonly typeName = "norsk.api.media.RtmpOutputConfiguration";
@@ -7542,6 +7933,23 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
7542
7933
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpOutputConfiguration;
7543
7934
  static equals(a: RtmpOutputConfiguration | PlainMessage<RtmpOutputConfiguration> | undefined, b: RtmpOutputConfiguration | PlainMessage<RtmpOutputConfiguration> | undefined): boolean;
7544
7935
  }
7936
+ /**
7937
+ * @generated from message norsk.api.media.SslClientOptions
7938
+ */
7939
+ export declare class SslClientOptions extends Message<SslClientOptions> {
7940
+ /**
7941
+ * @generated from field: norsk.api.common.OptionalBool verify_peer_cert = 1;
7942
+ */
7943
+ verifyPeerCert?: OptionalBool;
7944
+ constructor(data?: PartialMessage<SslClientOptions>);
7945
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
7946
+ static readonly typeName = "norsk.api.media.SslClientOptions";
7947
+ static readonly fields: FieldList;
7948
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SslClientOptions;
7949
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SslClientOptions;
7950
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SslClientOptions;
7951
+ static equals(a: SslClientOptions | PlainMessage<SslClientOptions> | undefined, b: SslClientOptions | PlainMessage<SslClientOptions> | undefined): boolean;
7952
+ }
7545
7953
  /**
7546
7954
  * @generated from message norsk.api.media.RtmpOutputMessage
7547
7955
  */
@@ -7635,7 +8043,11 @@ export declare enum RtmpOutputEvent_State {
7635
8043
  /**
7636
8044
  * @generated from enum value: RTMP_OUTPUT_STATUS_PUBLISH_START = 1;
7637
8045
  */
7638
- RTMP_OUTPUT_STATUS_PUBLISH_START = 1
8046
+ RTMP_OUTPUT_STATUS_PUBLISH_START = 1,
8047
+ /**
8048
+ * @generated from enum value: RTMP_OUTPUT_STATUS_CONNECTION_FAILED_RETRY = 2;
8049
+ */
8050
+ RTMP_OUTPUT_STATUS_CONNECTION_FAILED_RETRY = 2
7639
8051
  }
7640
8052
  /**
7641
8053
  * @generated from message norsk.api.media.FileTsOutputConfiguration
@@ -13109,6 +13521,376 @@ export declare class Scte35SegmentationComponent extends Message<Scte35Segmentat
13109
13521
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentationComponent;
13110
13522
  static equals(a: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined, b: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined): boolean;
13111
13523
  }
13524
+ /**
13525
+ * ////////////////////////////////////////////////////////////////////////////
13526
+ * FrameStore
13527
+ *
13528
+ * @generated from message norsk.api.media.FrameStoreRecorderConfiguration
13529
+ */
13530
+ export declare class FrameStoreRecorderConfiguration extends Message<FrameStoreRecorderConfiguration> {
13531
+ /**
13532
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
13533
+ */
13534
+ id?: MediaNodeId;
13535
+ /**
13536
+ * @generated from field: string name = 2;
13537
+ */
13538
+ name: string;
13539
+ /**
13540
+ * @generated from field: string path = 3;
13541
+ */
13542
+ path: string;
13543
+ /**
13544
+ * @generated from field: uint32 chunk_file_duration_seconds = 4;
13545
+ */
13546
+ chunkFileDurationSeconds: number;
13547
+ constructor(data?: PartialMessage<FrameStoreRecorderConfiguration>);
13548
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13549
+ static readonly typeName = "norsk.api.media.FrameStoreRecorderConfiguration";
13550
+ static readonly fields: FieldList;
13551
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreRecorderConfiguration;
13552
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreRecorderConfiguration;
13553
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreRecorderConfiguration;
13554
+ static equals(a: FrameStoreRecorderConfiguration | PlainMessage<FrameStoreRecorderConfiguration> | undefined, b: FrameStoreRecorderConfiguration | PlainMessage<FrameStoreRecorderConfiguration> | undefined): boolean;
13555
+ }
13556
+ /**
13557
+ * @generated from message norsk.api.media.FrameStoreRecorderMessage
13558
+ */
13559
+ export declare class FrameStoreRecorderMessage extends Message<FrameStoreRecorderMessage> {
13560
+ /**
13561
+ * @generated from oneof norsk.api.media.FrameStoreRecorderMessage.message
13562
+ */
13563
+ message: {
13564
+ /**
13565
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
13566
+ */
13567
+ value: Subscription;
13568
+ case: "subscription";
13569
+ } | {
13570
+ /**
13571
+ * @generated from field: norsk.api.media.FrameStoreRecorderConfiguration configuration = 2;
13572
+ */
13573
+ value: FrameStoreRecorderConfiguration;
13574
+ case: "configuration";
13575
+ } | {
13576
+ case: undefined;
13577
+ value?: undefined;
13578
+ };
13579
+ constructor(data?: PartialMessage<FrameStoreRecorderMessage>);
13580
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13581
+ static readonly typeName = "norsk.api.media.FrameStoreRecorderMessage";
13582
+ static readonly fields: FieldList;
13583
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreRecorderMessage;
13584
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreRecorderMessage;
13585
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreRecorderMessage;
13586
+ static equals(a: FrameStoreRecorderMessage | PlainMessage<FrameStoreRecorderMessage> | undefined, b: FrameStoreRecorderMessage | PlainMessage<FrameStoreRecorderMessage> | undefined): boolean;
13587
+ }
13588
+ /**
13589
+ * @generated from message norsk.api.media.FrameStoreRecorderEvent
13590
+ */
13591
+ export declare class FrameStoreRecorderEvent extends Message<FrameStoreRecorderEvent> {
13592
+ /**
13593
+ * @generated from oneof norsk.api.media.FrameStoreRecorderEvent.message
13594
+ */
13595
+ message: {
13596
+ /**
13597
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
13598
+ */
13599
+ value: MediaNodeId;
13600
+ case: "nodeId";
13601
+ } | {
13602
+ /**
13603
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
13604
+ */
13605
+ value: SubscriptionResponse;
13606
+ case: "subscriptionResponse";
13607
+ } | {
13608
+ /**
13609
+ * @generated from field: norsk.api.media.Context inbound_context = 3;
13610
+ */
13611
+ value: Context;
13612
+ case: "inboundContext";
13613
+ } | {
13614
+ case: undefined;
13615
+ value?: undefined;
13616
+ };
13617
+ constructor(data?: PartialMessage<FrameStoreRecorderEvent>);
13618
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13619
+ static readonly typeName = "norsk.api.media.FrameStoreRecorderEvent";
13620
+ static readonly fields: FieldList;
13621
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreRecorderEvent;
13622
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreRecorderEvent;
13623
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreRecorderEvent;
13624
+ static equals(a: FrameStoreRecorderEvent | PlainMessage<FrameStoreRecorderEvent> | undefined, b: FrameStoreRecorderEvent | PlainMessage<FrameStoreRecorderEvent> | undefined): boolean;
13625
+ }
13626
+ /**
13627
+ * @generated from message norsk.api.media.SingleCut
13628
+ */
13629
+ export declare class SingleCut extends Message<SingleCut> {
13630
+ /**
13631
+ * @generated from field: google.protobuf.Timestamp start_date_time = 1;
13632
+ */
13633
+ startDateTime?: Timestamp;
13634
+ /**
13635
+ * @generated from field: uint32 duration_ms = 2;
13636
+ */
13637
+ durationMs: number;
13638
+ /**
13639
+ * @generated from field: norsk.api.common.OptionalInt session_num = 3;
13640
+ */
13641
+ sessionNum?: OptionalInt;
13642
+ constructor(data?: PartialMessage<SingleCut>);
13643
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13644
+ static readonly typeName = "norsk.api.media.SingleCut";
13645
+ static readonly fields: FieldList;
13646
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SingleCut;
13647
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SingleCut;
13648
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SingleCut;
13649
+ static equals(a: SingleCut | PlainMessage<SingleCut> | undefined, b: SingleCut | PlainMessage<SingleCut> | undefined): boolean;
13650
+ }
13651
+ /**
13652
+ * @generated from message norsk.api.media.FrameStorePlayerConfiguration
13653
+ */
13654
+ export declare class FrameStorePlayerConfiguration extends Message<FrameStorePlayerConfiguration> {
13655
+ /**
13656
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
13657
+ */
13658
+ id?: MediaNodeId;
13659
+ /**
13660
+ * @generated from field: string name = 2;
13661
+ */
13662
+ name: string;
13663
+ /**
13664
+ * @generated from field: string source_name = 3;
13665
+ */
13666
+ sourceName: string;
13667
+ /**
13668
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
13669
+ */
13670
+ statsSampling?: StreamStatisticsSampling;
13671
+ /**
13672
+ * @generated from oneof norsk.api.media.FrameStorePlayerConfiguration.stream_selection
13673
+ */
13674
+ streamSelection: {
13675
+ /**
13676
+ * @generated from field: norsk.api.media.FrameStorePlayerConfiguration.All all = 5;
13677
+ */
13678
+ value: FrameStorePlayerConfiguration_All;
13679
+ case: "all";
13680
+ } | {
13681
+ /**
13682
+ * @generated from field: norsk.api.media.FrameStorePlayerConfiguration.Subset subset = 6;
13683
+ */
13684
+ value: FrameStorePlayerConfiguration_Subset;
13685
+ case: "subset";
13686
+ } | {
13687
+ case: undefined;
13688
+ value?: undefined;
13689
+ };
13690
+ /**
13691
+ * @generated from field: repeated norsk.api.media.SingleCut cuts = 7;
13692
+ */
13693
+ cuts: SingleCut[];
13694
+ /**
13695
+ * @generated from field: bool trim_partial_segments = 8;
13696
+ */
13697
+ trimPartialSegments: boolean;
13698
+ constructor(data?: PartialMessage<FrameStorePlayerConfiguration>);
13699
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13700
+ static readonly typeName = "norsk.api.media.FrameStorePlayerConfiguration";
13701
+ static readonly fields: FieldList;
13702
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerConfiguration;
13703
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration;
13704
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration;
13705
+ static equals(a: FrameStorePlayerConfiguration | PlainMessage<FrameStorePlayerConfiguration> | undefined, b: FrameStorePlayerConfiguration | PlainMessage<FrameStorePlayerConfiguration> | undefined): boolean;
13706
+ }
13707
+ /**
13708
+ * @generated from message norsk.api.media.FrameStorePlayerConfiguration.All
13709
+ */
13710
+ export declare class FrameStorePlayerConfiguration_All extends Message<FrameStorePlayerConfiguration_All> {
13711
+ constructor(data?: PartialMessage<FrameStorePlayerConfiguration_All>);
13712
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13713
+ static readonly typeName = "norsk.api.media.FrameStorePlayerConfiguration.All";
13714
+ static readonly fields: FieldList;
13715
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerConfiguration_All;
13716
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_All;
13717
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_All;
13718
+ static equals(a: FrameStorePlayerConfiguration_All | PlainMessage<FrameStorePlayerConfiguration_All> | undefined, b: FrameStorePlayerConfiguration_All | PlainMessage<FrameStorePlayerConfiguration_All> | undefined): boolean;
13719
+ }
13720
+ /**
13721
+ * @generated from message norsk.api.media.FrameStorePlayerConfiguration.Subset
13722
+ */
13723
+ export declare class FrameStorePlayerConfiguration_Subset extends Message<FrameStorePlayerConfiguration_Subset> {
13724
+ /**
13725
+ * @generated from field: repeated norsk.api.media.StreamKey stream_list = 1;
13726
+ */
13727
+ streamList: StreamKey[];
13728
+ constructor(data?: PartialMessage<FrameStorePlayerConfiguration_Subset>);
13729
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13730
+ static readonly typeName = "norsk.api.media.FrameStorePlayerConfiguration.Subset";
13731
+ static readonly fields: FieldList;
13732
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerConfiguration_Subset;
13733
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_Subset;
13734
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_Subset;
13735
+ static equals(a: FrameStorePlayerConfiguration_Subset | PlainMessage<FrameStorePlayerConfiguration_Subset> | undefined, b: FrameStorePlayerConfiguration_Subset | PlainMessage<FrameStorePlayerConfiguration_Subset> | undefined): boolean;
13736
+ }
13737
+ /**
13738
+ * @generated from message norsk.api.media.FrameStorePlayerMessage
13739
+ */
13740
+ export declare class FrameStorePlayerMessage extends Message<FrameStorePlayerMessage> {
13741
+ /**
13742
+ * @generated from oneof norsk.api.media.FrameStorePlayerMessage.message
13743
+ */
13744
+ message: {
13745
+ /**
13746
+ * @generated from field: norsk.api.media.FrameStorePlayerConfiguration initial_config = 1;
13747
+ */
13748
+ value: FrameStorePlayerConfiguration;
13749
+ case: "initialConfig";
13750
+ } | {
13751
+ /**
13752
+ * @generated from field: norsk.api.media.TimestampNudge nudge = 2;
13753
+ */
13754
+ value: TimestampNudge;
13755
+ case: "nudge";
13756
+ } | {
13757
+ case: undefined;
13758
+ value?: undefined;
13759
+ };
13760
+ constructor(data?: PartialMessage<FrameStorePlayerMessage>);
13761
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13762
+ static readonly typeName = "norsk.api.media.FrameStorePlayerMessage";
13763
+ static readonly fields: FieldList;
13764
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerMessage;
13765
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerMessage;
13766
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerMessage;
13767
+ static equals(a: FrameStorePlayerMessage | PlainMessage<FrameStorePlayerMessage> | undefined, b: FrameStorePlayerMessage | PlainMessage<FrameStorePlayerMessage> | undefined): boolean;
13768
+ }
13769
+ /**
13770
+ * @generated from message norsk.api.media.FrameStorePlayerEvent
13771
+ */
13772
+ export declare class FrameStorePlayerEvent extends Message<FrameStorePlayerEvent> {
13773
+ /**
13774
+ * @generated from oneof norsk.api.media.FrameStorePlayerEvent.message
13775
+ */
13776
+ message: {
13777
+ /**
13778
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
13779
+ */
13780
+ value: MediaNodeId;
13781
+ case: "nodeId";
13782
+ } | {
13783
+ /**
13784
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
13785
+ */
13786
+ value: Context;
13787
+ case: "outboundContext";
13788
+ } | {
13789
+ /**
13790
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
13791
+ */
13792
+ value: MultiStreamStatistics;
13793
+ case: "streamStatistics";
13794
+ } | {
13795
+ case: undefined;
13796
+ value?: undefined;
13797
+ };
13798
+ constructor(data?: PartialMessage<FrameStorePlayerEvent>);
13799
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13800
+ static readonly typeName = "norsk.api.media.FrameStorePlayerEvent";
13801
+ static readonly fields: FieldList;
13802
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerEvent;
13803
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerEvent;
13804
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerEvent;
13805
+ static equals(a: FrameStorePlayerEvent | PlainMessage<FrameStorePlayerEvent> | undefined, b: FrameStorePlayerEvent | PlainMessage<FrameStorePlayerEvent> | undefined): boolean;
13806
+ }
13807
+ /**
13808
+ * @generated from message norsk.api.media.MoqEgestConfiguration
13809
+ */
13810
+ export declare class MoqEgestConfiguration extends Message<MoqEgestConfiguration> {
13811
+ /**
13812
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
13813
+ */
13814
+ id?: MediaNodeId;
13815
+ constructor(data?: PartialMessage<MoqEgestConfiguration>);
13816
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13817
+ static readonly typeName = "norsk.api.media.MoqEgestConfiguration";
13818
+ static readonly fields: FieldList;
13819
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqEgestConfiguration;
13820
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqEgestConfiguration;
13821
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqEgestConfiguration;
13822
+ static equals(a: MoqEgestConfiguration | PlainMessage<MoqEgestConfiguration> | undefined, b: MoqEgestConfiguration | PlainMessage<MoqEgestConfiguration> | undefined): boolean;
13823
+ }
13824
+ /**
13825
+ * @generated from message norsk.api.media.MoqEgestMessage
13826
+ */
13827
+ export declare class MoqEgestMessage extends Message<MoqEgestMessage> {
13828
+ /**
13829
+ * @generated from oneof norsk.api.media.MoqEgestMessage.message
13830
+ */
13831
+ message: {
13832
+ /**
13833
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
13834
+ */
13835
+ value: Subscription;
13836
+ case: "subscription";
13837
+ } | {
13838
+ /**
13839
+ * @generated from field: norsk.api.media.MoqEgestConfiguration configuration = 2;
13840
+ */
13841
+ value: MoqEgestConfiguration;
13842
+ case: "configuration";
13843
+ } | {
13844
+ case: undefined;
13845
+ value?: undefined;
13846
+ };
13847
+ constructor(data?: PartialMessage<MoqEgestMessage>);
13848
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13849
+ static readonly typeName = "norsk.api.media.MoqEgestMessage";
13850
+ static readonly fields: FieldList;
13851
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqEgestMessage;
13852
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqEgestMessage;
13853
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqEgestMessage;
13854
+ static equals(a: MoqEgestMessage | PlainMessage<MoqEgestMessage> | undefined, b: MoqEgestMessage | PlainMessage<MoqEgestMessage> | undefined): boolean;
13855
+ }
13856
+ /**
13857
+ * @generated from message norsk.api.media.MoqEgestEvent
13858
+ */
13859
+ export declare class MoqEgestEvent extends Message<MoqEgestEvent> {
13860
+ /**
13861
+ * @generated from oneof norsk.api.media.MoqEgestEvent.message
13862
+ */
13863
+ message: {
13864
+ /**
13865
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
13866
+ */
13867
+ value: MediaNodeId;
13868
+ case: "nodeId";
13869
+ } | {
13870
+ /**
13871
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
13872
+ */
13873
+ value: SubscriptionResponse;
13874
+ case: "subscriptionResponse";
13875
+ } | {
13876
+ /**
13877
+ * @generated from field: norsk.api.media.Context inbound_context = 3;
13878
+ */
13879
+ value: Context;
13880
+ case: "inboundContext";
13881
+ } | {
13882
+ case: undefined;
13883
+ value?: undefined;
13884
+ };
13885
+ constructor(data?: PartialMessage<MoqEgestEvent>);
13886
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13887
+ static readonly typeName = "norsk.api.media.MoqEgestEvent";
13888
+ static readonly fields: FieldList;
13889
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqEgestEvent;
13890
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqEgestEvent;
13891
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqEgestEvent;
13892
+ static equals(a: MoqEgestEvent | PlainMessage<MoqEgestEvent> | undefined, b: MoqEgestEvent | PlainMessage<MoqEgestEvent> | undefined): boolean;
13893
+ }
13112
13894
  /**
13113
13895
  * ////////////////////////////////////////////////////////////////////////////
13114
13896
  * Hardware