@norskvideo/norsk-api 1.0.358 → 1.0.360

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
@@ -432,6 +432,64 @@ export declare enum AudioCodec {
432
432
  */
433
433
  AC3 = 7
434
434
  }
435
+ /**
436
+ * @generated from enum norsk.api.media.SubtitleFormat
437
+ */
438
+ export declare enum SubtitleFormat {
439
+ /**
440
+ * @generated from enum value: SUBTITLE_FORMAT_UNKNOWN = 0;
441
+ */
442
+ UNKNOWN = 0,
443
+ /**
444
+ * @generated from enum value: SUBTITLE_FORMAT_TRANSCRIBED = 1;
445
+ */
446
+ TRANSCRIBED = 1,
447
+ /**
448
+ * @generated from enum value: SUBTITLE_FORMAT_TRANSLATED = 2;
449
+ */
450
+ TRANSLATED = 2,
451
+ /**
452
+ * @generated from enum value: SUBTITLE_FORMAT_WEBVTT = 3;
453
+ */
454
+ WEBVTT = 3,
455
+ /**
456
+ * @generated from enum value: SUBTITLE_FORMAT_CTA608 = 4;
457
+ */
458
+ CTA608 = 4,
459
+ /**
460
+ * @generated from enum value: SUBTITLE_FORMAT_CTA708 = 5;
461
+ */
462
+ CTA708 = 5,
463
+ /**
464
+ * @generated from enum value: SUBTITLE_FORMAT_TELETEXT = 6;
465
+ */
466
+ TELETEXT = 6,
467
+ /**
468
+ * @generated from enum value: SUBTITLE_FORMAT_TTML = 7;
469
+ */
470
+ TTML = 7
471
+ }
472
+ /**
473
+ * @generated from enum norsk.api.media.AncillaryType
474
+ */
475
+ export declare enum AncillaryType {
476
+ /**
477
+ * @generated from enum value: ANCILLARY_TYPE_OTHER = 0;
478
+ */
479
+ OTHER = 0,
480
+ /**
481
+ * @generated from enum value: ANCILLARY_TYPE_SCTE35 = 1;
482
+ */
483
+ SCTE35 = 1,
484
+ /**
485
+ * @generated from enum value: ANCILLARY_TYPE_SMTPE2038 = 2;
486
+ */
487
+ SMTPE2038 = 2,
488
+ /**
489
+ * @generated from enum value: ANCILLARY_TYPE_METADATA = 3;
490
+ */
491
+ METADATA = 3
492
+ }
435
493
  /**
436
494
  * @generated from enum norsk.api.media.SrtMode
437
495
  */
@@ -1024,6 +1082,23 @@ export declare enum SentenceStabilizationMode {
1024
1082
  */
1025
1083
  Low = 2
1026
1084
  }
1085
+ /**
1086
+ * @generated from enum norsk.api.media.MetadataKind
1087
+ */
1088
+ export declare enum MetadataKind {
1089
+ /**
1090
+ * @generated from enum value: METADATA_KIND_OTHER = 0;
1091
+ */
1092
+ OTHER = 0,
1093
+ /**
1094
+ * @generated from enum value: METADATA_KIND_ID3 = 1;
1095
+ */
1096
+ ID3 = 1,
1097
+ /**
1098
+ * @generated from enum value: METADATA_KIND_KLV = 2;
1099
+ */
1100
+ KLV = 2
1101
+ }
1027
1102
  /**
1028
1103
  * @generated from enum norsk.api.media.VancPayloadFormat
1029
1104
  */
@@ -1545,6 +1620,12 @@ export declare class StreamMetadata_AudioMetadata extends Message<StreamMetadata
1545
1620
  * @generated from field: int32 bitrate = 5;
1546
1621
  */
1547
1622
  bitrate: number;
1623
+ /**
1624
+ * The audio language (if specified)
1625
+ *
1626
+ * @generated from field: string language = 6;
1627
+ */
1628
+ language: string;
1548
1629
  constructor(data?: PartialMessage<StreamMetadata_AudioMetadata>);
1549
1630
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1550
1631
  static readonly typeName = "norsk.api.media.StreamMetadata.AudioMetadata";
@@ -1605,6 +1686,18 @@ export declare class StreamMetadata_VideoMetadata extends Message<StreamMetadata
1605
1686
  * @generated from message norsk.api.media.StreamMetadata.SubtitleMetadata
1606
1687
  */
1607
1688
  export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetadata_SubtitleMetadata> {
1689
+ /**
1690
+ * The subtitle format or source
1691
+ *
1692
+ * @generated from field: norsk.api.media.SubtitleFormat format = 2;
1693
+ */
1694
+ format: SubtitleFormat;
1695
+ /**
1696
+ * Subtitle language (if specified)
1697
+ *
1698
+ * @generated from field: string language = 3;
1699
+ */
1700
+ language: string;
1608
1701
  constructor(data?: PartialMessage<StreamMetadata_SubtitleMetadata>);
1609
1702
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1610
1703
  static readonly typeName = "norsk.api.media.StreamMetadata.SubtitleMetadata";
@@ -1641,6 +1734,14 @@ export declare class StreamMetadata_PlaylistMetadata extends Message<StreamMetad
1641
1734
  * @generated from message norsk.api.media.StreamMetadata.AncillaryMetadata
1642
1735
  */
1643
1736
  export declare class StreamMetadata_AncillaryMetadata extends Message<StreamMetadata_AncillaryMetadata> {
1737
+ /**
1738
+ * @generated from field: norsk.api.media.AncillaryType type = 2;
1739
+ */
1740
+ type: AncillaryType;
1741
+ /**
1742
+ * @generated from field: string ancillary_subtype = 3;
1743
+ */
1744
+ ancillarySubtype: string;
1644
1745
  constructor(data?: PartialMessage<StreamMetadata_AncillaryMetadata>);
1645
1746
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1646
1747
  static readonly typeName = "norsk.api.media.StreamMetadata.AncillaryMetadata";
@@ -1690,8 +1791,8 @@ export declare class Context extends Message<Context> {
1690
1791
  * certain nodes that are permitted non-disjoint context keys
1691
1792
  * .
1692
1793
  * Once received, your code **must** acknowledge the context change
1693
- * with a call to `Media.UnblockCall`,
1694
- * passing in the `blockingCallRef`; note that if using the
1794
+ * with a call through a subscription channel `Media.createSubscriptionChannel`,
1795
+ * passing in the `blockingCallRef` to an 'unblock' message; note that if using the
1695
1796
  * JavaScript SDK then this is automatically handled.
1696
1797
  *
1697
1798
  * @generated from message norsk.api.media.MultipleContext
@@ -1800,7 +1901,11 @@ export declare enum ValidationResponse_ContextValidationResponse {
1800
1901
  /**
1801
1902
  * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
1802
1903
  */
1803
- CONTEXT_VALIDATION_DENY_AND_QUEUE = 3
1904
+ CONTEXT_VALIDATION_DENY_AND_QUEUE = 3,
1905
+ /**
1906
+ * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_DROP = 4;
1907
+ */
1908
+ CONTEXT_VALIDATION_DENY_AND_DROP = 4
1804
1909
  }
1805
1910
  /**
1806
1911
  * @generated from message norsk.api.media.ValidationResponseAck
@@ -3874,6 +3979,109 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
3874
3979
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeckLinkInputEvent;
3875
3980
  static equals(a: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined, b: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined): boolean;
3876
3981
  }
3982
+ /**
3983
+ * @generated from message norsk.api.media.DeltacastInputConfiguration
3984
+ */
3985
+ export declare class DeltacastInputConfiguration extends Message<DeltacastInputConfiguration> {
3986
+ /**
3987
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
3988
+ */
3989
+ id?: MediaNodeId;
3990
+ /**
3991
+ * @generated from field: string source_name = 2;
3992
+ */
3993
+ sourceName: string;
3994
+ /**
3995
+ * @generated from field: uint32 device_id = 3;
3996
+ */
3997
+ deviceId: number;
3998
+ /**
3999
+ * @generated from field: uint32 card_index = 4;
4000
+ */
4001
+ cardIndex: number;
4002
+ /**
4003
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
4004
+ */
4005
+ statsSampling?: StreamStatisticsSampling;
4006
+ constructor(data?: PartialMessage<DeltacastInputConfiguration>);
4007
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4008
+ static readonly typeName = "norsk.api.media.DeltacastInputConfiguration";
4009
+ static readonly fields: FieldList;
4010
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputConfiguration;
4011
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
4012
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
4013
+ static equals(a: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined, b: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined): boolean;
4014
+ }
4015
+ /**
4016
+ * @generated from message norsk.api.media.DeltacastInputMessage
4017
+ */
4018
+ export declare class DeltacastInputMessage extends Message<DeltacastInputMessage> {
4019
+ /**
4020
+ * @generated from oneof norsk.api.media.DeltacastInputMessage.message
4021
+ */
4022
+ message: {
4023
+ /**
4024
+ * @generated from field: norsk.api.media.DeltacastInputConfiguration initial_config = 1;
4025
+ */
4026
+ value: DeltacastInputConfiguration;
4027
+ case: "initialConfig";
4028
+ } | {
4029
+ /**
4030
+ * @generated from field: norsk.api.media.TimestampNudge nudge = 2;
4031
+ */
4032
+ value: TimestampNudge;
4033
+ case: "nudge";
4034
+ } | {
4035
+ case: undefined;
4036
+ value?: undefined;
4037
+ };
4038
+ constructor(data?: PartialMessage<DeltacastInputMessage>);
4039
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4040
+ static readonly typeName = "norsk.api.media.DeltacastInputMessage";
4041
+ static readonly fields: FieldList;
4042
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputMessage;
4043
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
4044
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
4045
+ static equals(a: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined, b: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined): boolean;
4046
+ }
4047
+ /**
4048
+ * @generated from message norsk.api.media.DeltacastInputEvent
4049
+ */
4050
+ export declare class DeltacastInputEvent extends Message<DeltacastInputEvent> {
4051
+ /**
4052
+ * @generated from oneof norsk.api.media.DeltacastInputEvent.message
4053
+ */
4054
+ message: {
4055
+ /**
4056
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
4057
+ */
4058
+ value: MediaNodeId;
4059
+ case: "nodeId";
4060
+ } | {
4061
+ /**
4062
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
4063
+ */
4064
+ value: Context;
4065
+ case: "outboundContext";
4066
+ } | {
4067
+ /**
4068
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
4069
+ */
4070
+ value: MultiStreamStatistics;
4071
+ case: "streamStatistics";
4072
+ } | {
4073
+ case: undefined;
4074
+ value?: undefined;
4075
+ };
4076
+ constructor(data?: PartialMessage<DeltacastInputEvent>);
4077
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
4078
+ static readonly typeName = "norsk.api.media.DeltacastInputEvent";
4079
+ static readonly fields: FieldList;
4080
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputEvent;
4081
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
4082
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
4083
+ static equals(a: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined, b: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined): boolean;
4084
+ }
3877
4085
  /**
3878
4086
  * @generated from message norsk.api.media.FileImageInputConfiguration
3879
4087
  */
@@ -3898,6 +4106,10 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3898
4106
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3899
4107
  */
3900
4108
  statsSampling?: StreamStatisticsSampling;
4109
+ /**
4110
+ * @generated from field: norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration hardware_acceleration = 6;
4111
+ */
4112
+ hardwareAcceleration: FileImageInputConfiguration_FileImageHardwareAcceleration;
3901
4113
  constructor(data?: PartialMessage<FileImageInputConfiguration>);
3902
4114
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3903
4115
  static readonly typeName = "norsk.api.media.FileImageInputConfiguration";
@@ -3907,6 +4119,19 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3907
4119
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileImageInputConfiguration;
3908
4120
  static equals(a: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined, b: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined): boolean;
3909
4121
  }
4122
+ /**
4123
+ * @generated from enum norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration
4124
+ */
4125
+ export declare enum FileImageInputConfiguration_FileImageHardwareAcceleration {
4126
+ /**
4127
+ * @generated from enum value: FILEIMAGE_NONE = 0;
4128
+ */
4129
+ FILEIMAGE_NONE = 0,
4130
+ /**
4131
+ * @generated from enum value: FILEIMAGE_QUADRA = 1;
4132
+ */
4133
+ FILEIMAGE_QUADRA = 1
4134
+ }
3910
4135
  /**
3911
4136
  * @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
3912
4137
  */
@@ -8114,6 +8339,12 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8114
8339
  */
8115
8340
  value: MultiStreamStatistics;
8116
8341
  case: "streamStatistics";
8342
+ } | {
8343
+ /**
8344
+ * @generated from field: norsk.api.media.WhepOutputEvent.State status = 5;
8345
+ */
8346
+ value: WhepOutputEvent_State;
8347
+ case: "status";
8117
8348
  } | {
8118
8349
  case: undefined;
8119
8350
  value?: undefined;
@@ -8127,6 +8358,19 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8127
8358
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
8128
8359
  static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
8129
8360
  }
8361
+ /**
8362
+ * @generated from enum norsk.api.media.WhepOutputEvent.State
8363
+ */
8364
+ export declare enum WhepOutputEvent_State {
8365
+ /**
8366
+ * @generated from enum value: WHEP_OUTPUT_STATUS_UNKNOWN = 0;
8367
+ */
8368
+ WHEP_OUTPUT_STATUS_UNKNOWN = 0,
8369
+ /**
8370
+ * @generated from enum value: WHEP_OUTPUT_STATUS_READY = 1;
8371
+ */
8372
+ WHEP_OUTPUT_STATUS_READY = 1
8373
+ }
8130
8374
  /**
8131
8375
  * @generated from message norsk.api.media.RtmpOutputConfiguration
8132
8376
  */
@@ -10560,10 +10804,10 @@ export declare class AmdMA35DEncodeCommon extends Message<AmdMA35DEncodeCommon>
10560
10804
  case: "constrainedVbr";
10561
10805
  } | {
10562
10806
  /**
10563
- * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR constrained_abr = 5;
10807
+ * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive content_adaptive = 5;
10564
10808
  */
10565
- value: AmdMA35DEncodeCommon_ConstrainedABR;
10566
- case: "constrainedAbr";
10809
+ value: AmdMA35DEncodeCommon_ContentAdaptive;
10810
+ case: "contentAdaptive";
10567
10811
  } | {
10568
10812
  case: undefined;
10569
10813
  value?: undefined;
@@ -10802,9 +11046,9 @@ export declare class AmdMA35DEncodeCommon_ConstrainedVBR extends Message<AmdMA35
10802
11046
  static equals(a: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined): boolean;
10803
11047
  }
10804
11048
  /**
10805
- * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR
11049
+ * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive
10806
11050
  */
10807
- export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35DEncodeCommon_ConstrainedABR> {
11051
+ export declare class AmdMA35DEncodeCommon_ContentAdaptive extends Message<AmdMA35DEncodeCommon_ContentAdaptive> {
10808
11052
  /**
10809
11053
  * @generated from field: uint32 bitrate = 1;
10810
11054
  */
@@ -10817,14 +11061,14 @@ export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35
10817
11061
  * @generated from field: uint32 buf_size = 3;
10818
11062
  */
10819
11063
  bufSize: number;
10820
- constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ConstrainedABR>);
11064
+ constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ContentAdaptive>);
10821
11065
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10822
- static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR";
11066
+ static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive";
10823
11067
  static readonly fields: FieldList;
10824
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10825
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10826
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10827
- static equals(a: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined): boolean;
11068
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
11069
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
11070
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
11071
+ static equals(a: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined, b: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined): boolean;
10828
11072
  }
10829
11073
  /**
10830
11074
  * @generated from message norsk.api.media.AmdMA35DH264
@@ -12847,6 +13091,12 @@ export declare class StreamStatisticsEvent extends Message<StreamStatisticsEvent
12847
13091
  */
12848
13092
  value: Context;
12849
13093
  case: "inboundContext";
13094
+ } | {
13095
+ /**
13096
+ * @generated from field: norsk.api.media.GopStructure gop_structure = 6;
13097
+ */
13098
+ value: GopStructure;
13099
+ case: "gopStructure";
12850
13100
  } | {
12851
13101
  case: undefined;
12852
13102
  value?: undefined;
@@ -14119,6 +14369,12 @@ export declare class AncillaryMessage extends Message<AncillaryMessage> {
14119
14369
  */
14120
14370
  value: Scte35Event;
14121
14371
  case: "scte35Event";
14372
+ } | {
14373
+ /**
14374
+ * @generated from field: norsk.api.media.MetadataMessage metadata = 6;
14375
+ */
14376
+ value: MetadataMessage;
14377
+ case: "metadata";
14122
14378
  } | {
14123
14379
  case: undefined;
14124
14380
  value?: undefined;
@@ -14132,6 +14388,47 @@ export declare class AncillaryMessage extends Message<AncillaryMessage> {
14132
14388
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryMessage;
14133
14389
  static equals(a: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined, b: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined): boolean;
14134
14390
  }
14391
+ /**
14392
+ * @generated from message norsk.api.media.MetadataMessage
14393
+ */
14394
+ export declare class MetadataMessage extends Message<MetadataMessage> {
14395
+ /**
14396
+ * @generated from field: norsk.api.media.StreamKey stream = 1;
14397
+ */
14398
+ stream?: StreamKey;
14399
+ /**
14400
+ * The raw data of the metadata message, excluding Metadata Access Unit wrapper if present
14401
+ *
14402
+ * @generated from field: bytes data = 2;
14403
+ */
14404
+ data: Uint8Array;
14405
+ /**
14406
+ * Metadata service id, if present
14407
+ *
14408
+ * @generated from field: uint32 metadata_service_id = 3;
14409
+ */
14410
+ metadataServiceId: number;
14411
+ /**
14412
+ * Timestamp of the metadata message
14413
+ *
14414
+ * @generated from field: norsk.api.media.Interval pts = 4;
14415
+ */
14416
+ pts?: Interval;
14417
+ /**
14418
+ * The form of metadata being transported
14419
+ *
14420
+ * @generated from field: norsk.api.media.MetadataKind format = 5;
14421
+ */
14422
+ format: MetadataKind;
14423
+ constructor(data?: PartialMessage<MetadataMessage>);
14424
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14425
+ static readonly typeName = "norsk.api.media.MetadataMessage";
14426
+ static readonly fields: FieldList;
14427
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataMessage;
14428
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetadataMessage;
14429
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetadataMessage;
14430
+ static equals(a: MetadataMessage | PlainMessage<MetadataMessage> | undefined, b: MetadataMessage | PlainMessage<MetadataMessage> | undefined): boolean;
14431
+ }
14135
14432
  /**
14136
14433
  * @generated from message norsk.api.media.AncillaryEvent
14137
14434
  */
@@ -14175,6 +14472,12 @@ export declare class AncillaryEvent extends Message<AncillaryEvent> {
14175
14472
  */
14176
14473
  value: Context;
14177
14474
  case: "inboundContext";
14475
+ } | {
14476
+ /**
14477
+ * @generated from field: norsk.api.media.MetadataMessage metadata = 8;
14478
+ */
14479
+ value: MetadataMessage;
14480
+ case: "metadata";
14178
14481
  } | {
14179
14482
  case: undefined;
14180
14483
  value?: undefined;
@@ -14200,6 +14503,12 @@ export declare class Scte35Event extends Message<Scte35Event> {
14200
14503
  * @generated from field: norsk.api.media.Scte35SpliceInfoSection info = 2;
14201
14504
  */
14202
14505
  info?: Scte35SpliceInfoSection;
14506
+ /**
14507
+ * Timestamp assigned to the SCTE-35 message in processing
14508
+ *
14509
+ * @generated from field: norsk.api.media.Interval pts = 3;
14510
+ */
14511
+ pts?: Interval;
14203
14512
  constructor(data?: PartialMessage<Scte35Event>);
14204
14513
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14205
14514
  static readonly typeName = "norsk.api.media.Scte35Event";
@@ -14241,6 +14550,12 @@ export declare class Smpte2038Message extends Message<Smpte2038Message> {
14241
14550
  * @generated from field: bytes user_data = 7;
14242
14551
  */
14243
14552
  userData: Uint8Array;
14553
+ /**
14554
+ * Timestamp of the SMPTE-2038 message
14555
+ *
14556
+ * @generated from field: norsk.api.media.Interval pts = 8;
14557
+ */
14558
+ pts?: Interval;
14244
14559
  constructor(data?: PartialMessage<Smpte2038Message>);
14245
14560
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14246
14561
  static readonly typeName = "norsk.api.media.Smpte2038Message";
@@ -14271,6 +14586,99 @@ export declare class VancType2AncillaryId extends Message<VancType2AncillaryId>
14271
14586
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VancType2AncillaryId;
14272
14587
  static equals(a: VancType2AncillaryId | PlainMessage<VancType2AncillaryId> | undefined, b: VancType2AncillaryId | PlainMessage<VancType2AncillaryId> | undefined): boolean;
14273
14588
  }
14589
+ /**
14590
+ * @generated from message norsk.api.media.StreamConditionConfiguration
14591
+ */
14592
+ export declare class StreamConditionConfiguration extends Message<StreamConditionConfiguration> {
14593
+ /**
14594
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
14595
+ */
14596
+ id?: MediaNodeId;
14597
+ constructor(data?: PartialMessage<StreamConditionConfiguration>);
14598
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14599
+ static readonly typeName = "norsk.api.media.StreamConditionConfiguration";
14600
+ static readonly fields: FieldList;
14601
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamConditionConfiguration;
14602
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamConditionConfiguration;
14603
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamConditionConfiguration;
14604
+ static equals(a: StreamConditionConfiguration | PlainMessage<StreamConditionConfiguration> | undefined, b: StreamConditionConfiguration | PlainMessage<StreamConditionConfiguration> | undefined): boolean;
14605
+ }
14606
+ /**
14607
+ * @generated from message norsk.api.media.StreamConditionMessage
14608
+ */
14609
+ export declare class StreamConditionMessage extends Message<StreamConditionMessage> {
14610
+ /**
14611
+ * @generated from oneof norsk.api.media.StreamConditionMessage.message
14612
+ */
14613
+ message: {
14614
+ /**
14615
+ * @generated from field: norsk.api.media.StreamConditionConfiguration initial_config = 1;
14616
+ */
14617
+ value: StreamConditionConfiguration;
14618
+ case: "initialConfig";
14619
+ } | {
14620
+ /**
14621
+ * @generated from field: norsk.api.media.Subscription subscription = 2;
14622
+ */
14623
+ value: Subscription;
14624
+ case: "subscription";
14625
+ } | {
14626
+ case: undefined;
14627
+ value?: undefined;
14628
+ };
14629
+ constructor(data?: PartialMessage<StreamConditionMessage>);
14630
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14631
+ static readonly typeName = "norsk.api.media.StreamConditionMessage";
14632
+ static readonly fields: FieldList;
14633
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamConditionMessage;
14634
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamConditionMessage;
14635
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamConditionMessage;
14636
+ static equals(a: StreamConditionMessage | PlainMessage<StreamConditionMessage> | undefined, b: StreamConditionMessage | PlainMessage<StreamConditionMessage> | undefined): boolean;
14637
+ }
14638
+ /**
14639
+ * @generated from message norsk.api.media.StreamConditionEvent
14640
+ */
14641
+ export declare class StreamConditionEvent extends Message<StreamConditionEvent> {
14642
+ /**
14643
+ * @generated from oneof norsk.api.media.StreamConditionEvent.message
14644
+ */
14645
+ message: {
14646
+ /**
14647
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
14648
+ */
14649
+ value: MediaNodeId;
14650
+ case: "nodeId";
14651
+ } | {
14652
+ /**
14653
+ * @generated from field: norsk.api.media.Context inbound_context = 2;
14654
+ */
14655
+ value: Context;
14656
+ case: "inboundContext";
14657
+ } | {
14658
+ /**
14659
+ * @generated from field: norsk.api.media.Context outbound_context = 3;
14660
+ */
14661
+ value: Context;
14662
+ case: "outboundContext";
14663
+ } | {
14664
+ /**
14665
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 4;
14666
+ */
14667
+ value: SubscriptionResponse;
14668
+ case: "subscriptionResponse";
14669
+ } | {
14670
+ case: undefined;
14671
+ value?: undefined;
14672
+ };
14673
+ constructor(data?: PartialMessage<StreamConditionEvent>);
14674
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
14675
+ static readonly typeName = "norsk.api.media.StreamConditionEvent";
14676
+ static readonly fields: FieldList;
14677
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamConditionEvent;
14678
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamConditionEvent;
14679
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamConditionEvent;
14680
+ static equals(a: StreamConditionEvent | PlainMessage<StreamConditionEvent> | undefined, b: StreamConditionEvent | PlainMessage<StreamConditionEvent> | undefined): boolean;
14681
+ }
14274
14682
  /**
14275
14683
  * @generated from message norsk.api.media.Scte35SpliceInfoSection
14276
14684
  */
@@ -14485,6 +14893,8 @@ export declare class Scte35InsertCommandMode extends Message<Scte35InsertCommand
14485
14893
  */
14486
14894
  export declare class Scte35InsertCommandMode_InsertProgram extends Message<Scte35InsertCommandMode_InsertProgram> {
14487
14895
  /**
14896
+ * Splice time (optional - omitted is splice immediate)
14897
+ *
14488
14898
  * @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 1;
14489
14899
  */
14490
14900
  spliceTime?: Scte35SpliceTime;
@@ -14523,6 +14933,8 @@ export declare class Scte35InsertCommandComponent extends Message<Scte35InsertCo
14523
14933
  */
14524
14934
  componentTag: number;
14525
14935
  /**
14936
+ * Splice time (optional - omitted is splice immediate)
14937
+ *
14526
14938
  * @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 2;
14527
14939
  */
14528
14940
  spliceTime?: Scte35SpliceTime;
@@ -14540,6 +14952,8 @@ export declare class Scte35InsertCommandComponent extends Message<Scte35InsertCo
14540
14952
  */
14541
14953
  export declare class Scte35SpliceTime extends Message<Scte35SpliceTime> {
14542
14954
  /**
14955
+ * Splice time if specified (otherwise represents the default splice time in Component Splice Mode, see SCTE 35 9.9.2.1)
14956
+ *
14543
14957
  * @generated from field: norsk.api.common.OptionalInt pts_time = 1;
14544
14958
  */
14545
14959
  ptsTime?: OptionalInt;
@@ -16267,3 +16681,48 @@ export declare class NorskStatusEvent extends Message<NorskStatusEvent> {
16267
16681
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NorskStatusEvent;
16268
16682
  static equals(a: NorskStatusEvent | PlainMessage<NorskStatusEvent> | undefined, b: NorskStatusEvent | PlainMessage<NorskStatusEvent> | undefined): boolean;
16269
16683
  }
16684
+ /**
16685
+ * @generated from message norsk.api.media.SubscriptionChannelMessage
16686
+ */
16687
+ export declare class SubscriptionChannelMessage extends Message<SubscriptionChannelMessage> {
16688
+ /**
16689
+ * @generated from oneof norsk.api.media.SubscriptionChannelMessage.message
16690
+ */
16691
+ message: {
16692
+ /**
16693
+ * @generated from field: norsk.api.media.BlockingCallRef unblock = 1;
16694
+ */
16695
+ value: BlockingCallRef;
16696
+ case: "unblock";
16697
+ } | {
16698
+ /**
16699
+ * @generated from field: norsk.api.media.ValidationResponse validation_response = 2;
16700
+ */
16701
+ value: ValidationResponse;
16702
+ case: "validationResponse";
16703
+ } | {
16704
+ case: undefined;
16705
+ value?: undefined;
16706
+ };
16707
+ constructor(data?: PartialMessage<SubscriptionChannelMessage>);
16708
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
16709
+ static readonly typeName = "norsk.api.media.SubscriptionChannelMessage";
16710
+ static readonly fields: FieldList;
16711
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionChannelMessage;
16712
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionChannelMessage;
16713
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionChannelMessage;
16714
+ static equals(a: SubscriptionChannelMessage | PlainMessage<SubscriptionChannelMessage> | undefined, b: SubscriptionChannelMessage | PlainMessage<SubscriptionChannelMessage> | undefined): boolean;
16715
+ }
16716
+ /**
16717
+ * @generated from message norsk.api.media.SubscriptionChannelResponse
16718
+ */
16719
+ export declare class SubscriptionChannelResponse extends Message<SubscriptionChannelResponse> {
16720
+ constructor(data?: PartialMessage<SubscriptionChannelResponse>);
16721
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
16722
+ static readonly typeName = "norsk.api.media.SubscriptionChannelResponse";
16723
+ static readonly fields: FieldList;
16724
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionChannelResponse;
16725
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionChannelResponse;
16726
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionChannelResponse;
16727
+ static equals(a: SubscriptionChannelResponse | PlainMessage<SubscriptionChannelResponse> | undefined, b: SubscriptionChannelResponse | PlainMessage<SubscriptionChannelResponse> | undefined): boolean;
16728
+ }