@norskvideo/norsk-api 0.0.328 → 0.0.330
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_grpc_pb.d.ts +44 -44
- package/lib/media_grpc_pb.js +204 -99
- package/lib/media_pb.d.ts +372 -112
- package/lib/media_pb.js +413 -125
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +580 -154
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -371,18 +371,26 @@ export declare enum SampleRate {
|
|
|
371
371
|
*/
|
|
372
372
|
export declare enum SampleFormat {
|
|
373
373
|
/**
|
|
374
|
+
* Signed 16 bits, non-planar
|
|
375
|
+
*
|
|
374
376
|
* @generated from enum value: S16 = 0;
|
|
375
377
|
*/
|
|
376
378
|
S16 = 0,
|
|
377
379
|
/**
|
|
380
|
+
* Signed 16 bits, planar
|
|
381
|
+
*
|
|
378
382
|
* @generated from enum value: S16P = 1;
|
|
379
383
|
*/
|
|
380
384
|
S16P = 1,
|
|
381
385
|
/**
|
|
386
|
+
* 32bit floating point, non-planar
|
|
387
|
+
*
|
|
382
388
|
* @generated from enum value: FLT = 2;
|
|
383
389
|
*/
|
|
384
390
|
FLT = 2,
|
|
385
391
|
/**
|
|
392
|
+
* 32bit floating point, planar
|
|
393
|
+
*
|
|
386
394
|
* @generated from enum value: FLTP = 3;
|
|
387
395
|
*/
|
|
388
396
|
FLTP = 3
|
|
@@ -1037,6 +1045,31 @@ export declare enum VideoIOSupport {
|
|
|
1037
1045
|
*/
|
|
1038
1046
|
PLAYBACK = 1
|
|
1039
1047
|
}
|
|
1048
|
+
/**
|
|
1049
|
+
* @generated from enum norsk.api.media.ContextType
|
|
1050
|
+
*/
|
|
1051
|
+
export declare enum ContextType {
|
|
1052
|
+
/**
|
|
1053
|
+
* @generated from enum value: CONTEXT_TYPE_FULL = 0;
|
|
1054
|
+
*/
|
|
1055
|
+
FULL = 0,
|
|
1056
|
+
/**
|
|
1057
|
+
* @generated from enum value: CONTEXT_TYPE_SINGLE_SOURCE = 1;
|
|
1058
|
+
*/
|
|
1059
|
+
SINGLE_SOURCE = 1,
|
|
1060
|
+
/**
|
|
1061
|
+
* @generated from enum value: CONTEXT_TYPE_SINGLE_PROGRAM = 2;
|
|
1062
|
+
*/
|
|
1063
|
+
SINGLE_PROGRAM = 2,
|
|
1064
|
+
/**
|
|
1065
|
+
* @generated from enum value: CONTEXT_TYPE_SINGLE_STREAM = 3;
|
|
1066
|
+
*/
|
|
1067
|
+
SINGLE_STREAM = 3,
|
|
1068
|
+
/**
|
|
1069
|
+
* @generated from enum value: CONTEXT_TYPE_SINGLE_RENDITION = 4;
|
|
1070
|
+
*/
|
|
1071
|
+
SINGLE_RENDITION = 4
|
|
1072
|
+
}
|
|
1040
1073
|
/**
|
|
1041
1074
|
* The canonical error codes for gRPC APIs.
|
|
1042
1075
|
*
|
|
@@ -1692,11 +1725,11 @@ export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetad
|
|
|
1692
1725
|
}
|
|
1693
1726
|
/**
|
|
1694
1727
|
* *
|
|
1695
|
-
* The Context message is sent from Norsk
|
|
1728
|
+
* The Context message is sent from Norsk in response to a
|
|
1696
1729
|
* change to either the Media Node's inbound or output set of streams.
|
|
1697
|
-
* Once received, your code
|
|
1698
|
-
* with a call to
|
|
1699
|
-
* passing in the
|
|
1730
|
+
* Once received, your code **must** acknowledge the context change
|
|
1731
|
+
* with a call to `Media.UnblockCall`,
|
|
1732
|
+
* passing in the `blockingCallRef`; note that if using the
|
|
1700
1733
|
* JavaScript SDK then this is automatically handled.
|
|
1701
1734
|
*
|
|
1702
1735
|
* @generated from message norsk.api.media.Context
|
|
@@ -1847,8 +1880,8 @@ export declare class TimestampSourceProgramNudge extends Message<TimestampSource
|
|
|
1847
1880
|
* and number of keyframes, measured over configurable sampling windows and
|
|
1848
1881
|
* sent to the client.
|
|
1849
1882
|
*
|
|
1850
|
-
* These are reported on
|
|
1851
|
-
* StreamStats node.
|
|
1883
|
+
* These are reported on most input and output media nodes and also for the
|
|
1884
|
+
* dedicated StreamStats node.
|
|
1852
1885
|
*
|
|
1853
1886
|
* @generated from message norsk.api.media.MultiStreamStats
|
|
1854
1887
|
*/
|
|
@@ -2139,8 +2172,8 @@ export declare class RtmpInputMessage extends Message<RtmpInputMessage> {
|
|
|
2139
2172
|
/**
|
|
2140
2173
|
* *
|
|
2141
2174
|
* Sent to your code when an inbound remote connection is received. Your code
|
|
2142
|
-
* must reply with either an
|
|
2143
|
-
*
|
|
2175
|
+
* must reply with either an `RtmpConnectionAccept` or an
|
|
2176
|
+
* `RtmpConnectionReject`.
|
|
2144
2177
|
*
|
|
2145
2178
|
* @generated from message norsk.api.media.RtmpConnection
|
|
2146
2179
|
*/
|
|
@@ -2209,8 +2242,8 @@ export declare enum RtmpInputStatus_State {
|
|
|
2209
2242
|
/**
|
|
2210
2243
|
* *
|
|
2211
2244
|
* Sent to your code when an inbound remote stream is received on an
|
|
2212
|
-
* active connection. You must reply with either an
|
|
2213
|
-
* or an
|
|
2245
|
+
* active connection. You must reply with either an `RtmpStreamAccept`
|
|
2246
|
+
* or an `RtmpStreamReject`.
|
|
2214
2247
|
*
|
|
2215
2248
|
* @generated from message norsk.api.media.RtmpOnStream
|
|
2216
2249
|
*/
|
|
@@ -2767,7 +2800,7 @@ export declare class SrtTsContext extends Message<SrtTsContext> {
|
|
|
2767
2800
|
*/
|
|
2768
2801
|
export declare class SrtConnectMessage extends Message<SrtConnectMessage> {
|
|
2769
2802
|
/**
|
|
2770
|
-
* The
|
|
2803
|
+
* The stream_id sent on the SRT socket (or empty if none was set)
|
|
2771
2804
|
*
|
|
2772
2805
|
* @generated from field: string srt_stream_id = 1;
|
|
2773
2806
|
*/
|
|
@@ -3067,8 +3100,6 @@ export declare class M3u8MediaInputConfiguration extends Message<M3u8MediaInputC
|
|
|
3067
3100
|
*/
|
|
3068
3101
|
url: string;
|
|
3069
3102
|
/**
|
|
3070
|
-
* Stuff here about modes/etc
|
|
3071
|
-
*
|
|
3072
3103
|
* @generated from field: norsk.api.media.StreamStatsSampling stats_sampling = 4;
|
|
3073
3104
|
*/
|
|
3074
3105
|
statsSampling?: StreamStatsSampling;
|
|
@@ -3686,7 +3717,7 @@ export declare class Mp4FileInputEvent extends Message<Mp4FileInputEvent> {
|
|
|
3686
3717
|
*/
|
|
3687
3718
|
export declare class SineWave extends Message<SineWave> {
|
|
3688
3719
|
/**
|
|
3689
|
-
* @generated from field:
|
|
3720
|
+
* @generated from field: float freq = 1;
|
|
3690
3721
|
*/
|
|
3691
3722
|
freq: number;
|
|
3692
3723
|
constructor(data?: PartialMessage<SineWave>);
|
|
@@ -4220,13 +4251,14 @@ export declare class ComposePart extends Message<ComposePart> {
|
|
|
4220
4251
|
destRect?: OffsetRectangle;
|
|
4221
4252
|
/**
|
|
4222
4253
|
* Z-index to determine ordering by which the sources are overlaid
|
|
4254
|
+
* (higher layers appear on top)
|
|
4223
4255
|
*
|
|
4224
4256
|
* @generated from field: uint32 z_index = 4;
|
|
4225
4257
|
*/
|
|
4226
4258
|
zIndex: number;
|
|
4227
4259
|
/**
|
|
4228
|
-
* Opacity of this overlay (where 0.0 is fully transparent and 1.0
|
|
4229
|
-
* opaque)
|
|
4260
|
+
* Opacity multiplier of this overlay (where 0.0 is fully transparent and 1.0
|
|
4261
|
+
* is fully opaque)
|
|
4230
4262
|
*
|
|
4231
4263
|
* @generated from field: float opacity = 5;
|
|
4232
4264
|
*/
|
|
@@ -4408,7 +4440,7 @@ export declare class ComposeVideoMessage extends Message<ComposeVideoMessage> {
|
|
|
4408
4440
|
}
|
|
4409
4441
|
/**
|
|
4410
4442
|
* *
|
|
4411
|
-
* Configure
|
|
4443
|
+
* Configure a Compose Media Node.
|
|
4412
4444
|
*
|
|
4413
4445
|
* @generated from message norsk.api.media.ComposeVideoConfiguration
|
|
4414
4446
|
*/
|
|
@@ -4552,7 +4584,7 @@ export declare enum ComposeVideoConfiguration_MissingStreamBehaviour {
|
|
|
4552
4584
|
*/
|
|
4553
4585
|
export declare class ComposeVideoUpdateConfiguration extends Message<ComposeVideoUpdateConfiguration> {
|
|
4554
4586
|
/**
|
|
4555
|
-
*
|
|
4587
|
+
* Update the parts (images/overlays) to include in the composition
|
|
4556
4588
|
*
|
|
4557
4589
|
* @generated from field: repeated norsk.api.media.ComposePart parts = 1;
|
|
4558
4590
|
*/
|
|
@@ -5004,7 +5036,7 @@ export declare class AudioGainConfiguration extends Message<AudioGainConfigurati
|
|
|
5004
5036
|
*/
|
|
5005
5037
|
id?: MediaNodeId;
|
|
5006
5038
|
/**
|
|
5007
|
-
* The gains
|
|
5039
|
+
* The gains for this source, one for each channel
|
|
5008
5040
|
*
|
|
5009
5041
|
* @generated from field: repeated norsk.api.media.Db channel_gains = 2;
|
|
5010
5042
|
*/
|
|
@@ -5023,7 +5055,7 @@ export declare class AudioGainConfiguration extends Message<AudioGainConfigurati
|
|
|
5023
5055
|
*/
|
|
5024
5056
|
export declare class AudioGainUpdateConfiguration extends Message<AudioGainUpdateConfiguration> {
|
|
5025
5057
|
/**
|
|
5026
|
-
* The
|
|
5058
|
+
* The gains for this source, one for each channel
|
|
5027
5059
|
*
|
|
5028
5060
|
* @generated from field: repeated norsk.api.media.Db channel_gains = 1;
|
|
5029
5061
|
*/
|
|
@@ -5158,6 +5190,11 @@ export declare class AudioBuildMultichannelConfiguration extends Message<AudioBu
|
|
|
5158
5190
|
*/
|
|
5159
5191
|
channelLayout?: ChannelLayout;
|
|
5160
5192
|
/**
|
|
5193
|
+
* *
|
|
5194
|
+
* Stream keys specifying the source for each channel, where the order is
|
|
5195
|
+
* significant. The streams must all have the same sample format and sample
|
|
5196
|
+
* rate.
|
|
5197
|
+
*
|
|
5161
5198
|
* @generated from field: repeated norsk.api.media.StreamKey channel_list = 7;
|
|
5162
5199
|
*/
|
|
5163
5200
|
channelList: StreamKey[];
|
|
@@ -5463,9 +5500,9 @@ export declare class CMAFDestination extends Message<CMAFDestination> {
|
|
|
5463
5500
|
static equals(a: CMAFDestination | PlainMessage<CMAFDestination> | undefined, b: CMAFDestination | PlainMessage<CMAFDestination> | undefined): boolean;
|
|
5464
5501
|
}
|
|
5465
5502
|
/**
|
|
5466
|
-
* @generated from message norsk.api.media.
|
|
5503
|
+
* @generated from message norsk.api.media.CmafVideoConfiguration
|
|
5467
5504
|
*/
|
|
5468
|
-
export declare class
|
|
5505
|
+
export declare class CmafVideoConfiguration extends Message<CmafVideoConfiguration> {
|
|
5469
5506
|
/**
|
|
5470
5507
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5471
5508
|
*/
|
|
@@ -5494,21 +5531,21 @@ export declare class HlsVideoConfiguration extends Message<HlsVideoConfiguration
|
|
|
5494
5531
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 7;
|
|
5495
5532
|
*/
|
|
5496
5533
|
destinations: CMAFDestination[];
|
|
5497
|
-
constructor(data?: PartialMessage<
|
|
5534
|
+
constructor(data?: PartialMessage<CmafVideoConfiguration>);
|
|
5498
5535
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5499
|
-
static readonly typeName = "norsk.api.media.
|
|
5536
|
+
static readonly typeName = "norsk.api.media.CmafVideoConfiguration";
|
|
5500
5537
|
static readonly fields: FieldList;
|
|
5501
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5502
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5503
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5504
|
-
static equals(a:
|
|
5538
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafVideoConfiguration;
|
|
5539
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafVideoConfiguration;
|
|
5540
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafVideoConfiguration;
|
|
5541
|
+
static equals(a: CmafVideoConfiguration | PlainMessage<CmafVideoConfiguration> | undefined, b: CmafVideoConfiguration | PlainMessage<CmafVideoConfiguration> | undefined): boolean;
|
|
5505
5542
|
}
|
|
5506
5543
|
/**
|
|
5507
|
-
* @generated from message norsk.api.media.
|
|
5544
|
+
* @generated from message norsk.api.media.CmafVideoMessage
|
|
5508
5545
|
*/
|
|
5509
|
-
export declare class
|
|
5546
|
+
export declare class CmafVideoMessage extends Message<CmafVideoMessage> {
|
|
5510
5547
|
/**
|
|
5511
|
-
* @generated from oneof norsk.api.media.
|
|
5548
|
+
* @generated from oneof norsk.api.media.CmafVideoMessage.message
|
|
5512
5549
|
*/
|
|
5513
5550
|
message: {
|
|
5514
5551
|
/**
|
|
@@ -5518,9 +5555,9 @@ export declare class HlsVideoMessage extends Message<HlsVideoMessage> {
|
|
|
5518
5555
|
case: "subscription";
|
|
5519
5556
|
} | {
|
|
5520
5557
|
/**
|
|
5521
|
-
* @generated from field: norsk.api.media.
|
|
5558
|
+
* @generated from field: norsk.api.media.CmafVideoConfiguration configuration = 2;
|
|
5522
5559
|
*/
|
|
5523
|
-
value:
|
|
5560
|
+
value: CmafVideoConfiguration;
|
|
5524
5561
|
case: "configuration";
|
|
5525
5562
|
} | {
|
|
5526
5563
|
/**
|
|
@@ -5532,14 +5569,14 @@ export declare class HlsVideoMessage extends Message<HlsVideoMessage> {
|
|
|
5532
5569
|
case: undefined;
|
|
5533
5570
|
value?: undefined;
|
|
5534
5571
|
};
|
|
5535
|
-
constructor(data?: PartialMessage<
|
|
5572
|
+
constructor(data?: PartialMessage<CmafVideoMessage>);
|
|
5536
5573
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5537
|
-
static readonly typeName = "norsk.api.media.
|
|
5574
|
+
static readonly typeName = "norsk.api.media.CmafVideoMessage";
|
|
5538
5575
|
static readonly fields: FieldList;
|
|
5539
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5540
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5541
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5542
|
-
static equals(a:
|
|
5576
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafVideoMessage;
|
|
5577
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafVideoMessage;
|
|
5578
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafVideoMessage;
|
|
5579
|
+
static equals(a: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined, b: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined): boolean;
|
|
5543
5580
|
}
|
|
5544
5581
|
/**
|
|
5545
5582
|
* @generated from message norsk.api.media.HlsTsVideoConfiguration
|
|
@@ -5603,9 +5640,9 @@ export declare class HlsTsVideoMessage extends Message<HlsTsVideoMessage> {
|
|
|
5603
5640
|
static equals(a: HlsTsVideoMessage | PlainMessage<HlsTsVideoMessage> | undefined, b: HlsTsVideoMessage | PlainMessage<HlsTsVideoMessage> | undefined): boolean;
|
|
5604
5641
|
}
|
|
5605
5642
|
/**
|
|
5606
|
-
* @generated from message norsk.api.media.
|
|
5643
|
+
* @generated from message norsk.api.media.CmafAudioConfiguration
|
|
5607
5644
|
*/
|
|
5608
|
-
export declare class
|
|
5645
|
+
export declare class CmafAudioConfiguration extends Message<CmafAudioConfiguration> {
|
|
5609
5646
|
/**
|
|
5610
5647
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5611
5648
|
*/
|
|
@@ -5634,21 +5671,21 @@ export declare class HlsAudioConfiguration extends Message<HlsAudioConfiguration
|
|
|
5634
5671
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 8;
|
|
5635
5672
|
*/
|
|
5636
5673
|
destinations: CMAFDestination[];
|
|
5637
|
-
constructor(data?: PartialMessage<
|
|
5674
|
+
constructor(data?: PartialMessage<CmafAudioConfiguration>);
|
|
5638
5675
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5639
|
-
static readonly typeName = "norsk.api.media.
|
|
5676
|
+
static readonly typeName = "norsk.api.media.CmafAudioConfiguration";
|
|
5640
5677
|
static readonly fields: FieldList;
|
|
5641
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5642
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5643
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5644
|
-
static equals(a:
|
|
5678
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafAudioConfiguration;
|
|
5679
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafAudioConfiguration;
|
|
5680
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafAudioConfiguration;
|
|
5681
|
+
static equals(a: CmafAudioConfiguration | PlainMessage<CmafAudioConfiguration> | undefined, b: CmafAudioConfiguration | PlainMessage<CmafAudioConfiguration> | undefined): boolean;
|
|
5645
5682
|
}
|
|
5646
5683
|
/**
|
|
5647
|
-
* @generated from message norsk.api.media.
|
|
5684
|
+
* @generated from message norsk.api.media.CmafAudioMessage
|
|
5648
5685
|
*/
|
|
5649
|
-
export declare class
|
|
5686
|
+
export declare class CmafAudioMessage extends Message<CmafAudioMessage> {
|
|
5650
5687
|
/**
|
|
5651
|
-
* @generated from oneof norsk.api.media.
|
|
5688
|
+
* @generated from oneof norsk.api.media.CmafAudioMessage.message
|
|
5652
5689
|
*/
|
|
5653
5690
|
message: {
|
|
5654
5691
|
/**
|
|
@@ -5658,9 +5695,9 @@ export declare class HlsAudioMessage extends Message<HlsAudioMessage> {
|
|
|
5658
5695
|
case: "subscription";
|
|
5659
5696
|
} | {
|
|
5660
5697
|
/**
|
|
5661
|
-
* @generated from field: norsk.api.media.
|
|
5698
|
+
* @generated from field: norsk.api.media.CmafAudioConfiguration configuration = 2;
|
|
5662
5699
|
*/
|
|
5663
|
-
value:
|
|
5700
|
+
value: CmafAudioConfiguration;
|
|
5664
5701
|
case: "configuration";
|
|
5665
5702
|
} | {
|
|
5666
5703
|
/**
|
|
@@ -5672,14 +5709,14 @@ export declare class HlsAudioMessage extends Message<HlsAudioMessage> {
|
|
|
5672
5709
|
case: undefined;
|
|
5673
5710
|
value?: undefined;
|
|
5674
5711
|
};
|
|
5675
|
-
constructor(data?: PartialMessage<
|
|
5712
|
+
constructor(data?: PartialMessage<CmafAudioMessage>);
|
|
5676
5713
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5677
|
-
static readonly typeName = "norsk.api.media.
|
|
5714
|
+
static readonly typeName = "norsk.api.media.CmafAudioMessage";
|
|
5678
5715
|
static readonly fields: FieldList;
|
|
5679
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5680
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5681
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5682
|
-
static equals(a:
|
|
5716
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafAudioMessage;
|
|
5717
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafAudioMessage;
|
|
5718
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafAudioMessage;
|
|
5719
|
+
static equals(a: CmafAudioMessage | PlainMessage<CmafAudioMessage> | undefined, b: CmafAudioMessage | PlainMessage<CmafAudioMessage> | undefined): boolean;
|
|
5683
5720
|
}
|
|
5684
5721
|
/**
|
|
5685
5722
|
* @generated from message norsk.api.media.HlsTsAudioConfiguration
|
|
@@ -5743,9 +5780,9 @@ export declare class HlsTsAudioMessage extends Message<HlsTsAudioMessage> {
|
|
|
5743
5780
|
static equals(a: HlsTsAudioMessage | PlainMessage<HlsTsAudioMessage> | undefined, b: HlsTsAudioMessage | PlainMessage<HlsTsAudioMessage> | undefined): boolean;
|
|
5744
5781
|
}
|
|
5745
5782
|
/**
|
|
5746
|
-
* @generated from message norsk.api.media.
|
|
5783
|
+
* @generated from message norsk.api.media.CmafWebVttConfiguration
|
|
5747
5784
|
*/
|
|
5748
|
-
export declare class
|
|
5785
|
+
export declare class CmafWebVttConfiguration extends Message<CmafWebVttConfiguration> {
|
|
5749
5786
|
/**
|
|
5750
5787
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5751
5788
|
*/
|
|
@@ -5762,14 +5799,14 @@ export declare class HlsWebVttConfiguration extends Message<HlsWebVttConfigurati
|
|
|
5762
5799
|
* @generated from field: string sessionId = 4;
|
|
5763
5800
|
*/
|
|
5764
5801
|
sessionId: string;
|
|
5765
|
-
constructor(data?: PartialMessage<
|
|
5802
|
+
constructor(data?: PartialMessage<CmafWebVttConfiguration>);
|
|
5766
5803
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5767
|
-
static readonly typeName = "norsk.api.media.
|
|
5804
|
+
static readonly typeName = "norsk.api.media.CmafWebVttConfiguration";
|
|
5768
5805
|
static readonly fields: FieldList;
|
|
5769
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5770
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5771
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5772
|
-
static equals(a:
|
|
5806
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafWebVttConfiguration;
|
|
5807
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafWebVttConfiguration;
|
|
5808
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttConfiguration;
|
|
5809
|
+
static equals(a: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined, b: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined): boolean;
|
|
5773
5810
|
}
|
|
5774
5811
|
/**
|
|
5775
5812
|
* @generated from message norsk.api.media.AwsCredentials
|
|
@@ -5892,11 +5929,11 @@ export declare class HlsWebVttPushUpdateConfiguration extends Message<HlsWebVttP
|
|
|
5892
5929
|
static equals(a: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined, b: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined): boolean;
|
|
5893
5930
|
}
|
|
5894
5931
|
/**
|
|
5895
|
-
* @generated from message norsk.api.media.
|
|
5932
|
+
* @generated from message norsk.api.media.CmafWebVttMessage
|
|
5896
5933
|
*/
|
|
5897
|
-
export declare class
|
|
5934
|
+
export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
|
|
5898
5935
|
/**
|
|
5899
|
-
* @generated from oneof norsk.api.media.
|
|
5936
|
+
* @generated from oneof norsk.api.media.CmafWebVttMessage.message
|
|
5900
5937
|
*/
|
|
5901
5938
|
message: {
|
|
5902
5939
|
/**
|
|
@@ -5906,22 +5943,22 @@ export declare class HlsWebVttMessage extends Message<HlsWebVttMessage> {
|
|
|
5906
5943
|
case: "subscription";
|
|
5907
5944
|
} | {
|
|
5908
5945
|
/**
|
|
5909
|
-
* @generated from field: norsk.api.media.
|
|
5946
|
+
* @generated from field: norsk.api.media.CmafWebVttConfiguration configuration = 2;
|
|
5910
5947
|
*/
|
|
5911
|
-
value:
|
|
5948
|
+
value: CmafWebVttConfiguration;
|
|
5912
5949
|
case: "configuration";
|
|
5913
5950
|
} | {
|
|
5914
5951
|
case: undefined;
|
|
5915
5952
|
value?: undefined;
|
|
5916
5953
|
};
|
|
5917
|
-
constructor(data?: PartialMessage<
|
|
5954
|
+
constructor(data?: PartialMessage<CmafWebVttMessage>);
|
|
5918
5955
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5919
|
-
static readonly typeName = "norsk.api.media.
|
|
5956
|
+
static readonly typeName = "norsk.api.media.CmafWebVttMessage";
|
|
5920
5957
|
static readonly fields: FieldList;
|
|
5921
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5922
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5923
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5924
|
-
static equals(a:
|
|
5958
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafWebVttMessage;
|
|
5959
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafWebVttMessage;
|
|
5960
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttMessage;
|
|
5961
|
+
static equals(a: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined, b: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined): boolean;
|
|
5925
5962
|
}
|
|
5926
5963
|
/**
|
|
5927
5964
|
* @generated from message norsk.api.media.HlsWebVttPushMessage
|
|
@@ -5962,9 +5999,9 @@ export declare class HlsWebVttPushMessage extends Message<HlsWebVttPushMessage>
|
|
|
5962
5999
|
static equals(a: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined, b: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined): boolean;
|
|
5963
6000
|
}
|
|
5964
6001
|
/**
|
|
5965
|
-
* @generated from message norsk.api.media.
|
|
6002
|
+
* @generated from message norsk.api.media.CmafMasterConfiguration
|
|
5966
6003
|
*/
|
|
5967
|
-
export declare class
|
|
6004
|
+
export declare class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
|
|
5968
6005
|
/**
|
|
5969
6006
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5970
6007
|
*/
|
|
@@ -5981,21 +6018,21 @@ export declare class HlsMasterConfiguration extends Message<HlsMasterConfigurati
|
|
|
5981
6018
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 4;
|
|
5982
6019
|
*/
|
|
5983
6020
|
destinations: CMAFDestination[];
|
|
5984
|
-
constructor(data?: PartialMessage<
|
|
6021
|
+
constructor(data?: PartialMessage<CmafMasterConfiguration>);
|
|
5985
6022
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5986
|
-
static readonly typeName = "norsk.api.media.
|
|
6023
|
+
static readonly typeName = "norsk.api.media.CmafMasterConfiguration";
|
|
5987
6024
|
static readonly fields: FieldList;
|
|
5988
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5989
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5990
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5991
|
-
static equals(a:
|
|
6025
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterConfiguration;
|
|
6026
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
|
|
6027
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
|
|
6028
|
+
static equals(a: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined, b: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined): boolean;
|
|
5992
6029
|
}
|
|
5993
6030
|
/**
|
|
5994
|
-
* @generated from message norsk.api.media.
|
|
6031
|
+
* @generated from message norsk.api.media.CmafMasterMessage
|
|
5995
6032
|
*/
|
|
5996
|
-
export declare class
|
|
6033
|
+
export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
5997
6034
|
/**
|
|
5998
|
-
* @generated from oneof norsk.api.media.
|
|
6035
|
+
* @generated from oneof norsk.api.media.CmafMasterMessage.message
|
|
5999
6036
|
*/
|
|
6000
6037
|
message: {
|
|
6001
6038
|
/**
|
|
@@ -6005,9 +6042,9 @@ export declare class HlsMasterMessage extends Message<HlsMasterMessage> {
|
|
|
6005
6042
|
case: "subscription";
|
|
6006
6043
|
} | {
|
|
6007
6044
|
/**
|
|
6008
|
-
* @generated from field: norsk.api.media.
|
|
6045
|
+
* @generated from field: norsk.api.media.CmafMasterConfiguration configuration = 2;
|
|
6009
6046
|
*/
|
|
6010
|
-
value:
|
|
6047
|
+
value: CmafMasterConfiguration;
|
|
6011
6048
|
case: "configuration";
|
|
6012
6049
|
} | {
|
|
6013
6050
|
/**
|
|
@@ -6019,14 +6056,14 @@ export declare class HlsMasterMessage extends Message<HlsMasterMessage> {
|
|
|
6019
6056
|
case: undefined;
|
|
6020
6057
|
value?: undefined;
|
|
6021
6058
|
};
|
|
6022
|
-
constructor(data?: PartialMessage<
|
|
6059
|
+
constructor(data?: PartialMessage<CmafMasterMessage>);
|
|
6023
6060
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6024
|
-
static readonly typeName = "norsk.api.media.
|
|
6061
|
+
static readonly typeName = "norsk.api.media.CmafMasterMessage";
|
|
6025
6062
|
static readonly fields: FieldList;
|
|
6026
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6027
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6028
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6029
|
-
static equals(a:
|
|
6063
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterMessage;
|
|
6064
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterMessage;
|
|
6065
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterMessage;
|
|
6066
|
+
static equals(a: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined, b: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined): boolean;
|
|
6030
6067
|
}
|
|
6031
6068
|
/**
|
|
6032
6069
|
* @generated from message norsk.api.media.HlsMasterPushConfiguration
|
|
@@ -7086,7 +7123,7 @@ export declare class Mp4FileOutputMessage extends Message<Mp4FileOutputMessage>
|
|
|
7086
7123
|
case: "configuration";
|
|
7087
7124
|
} | {
|
|
7088
7125
|
/**
|
|
7089
|
-
* @generated from field: norsk.api.media.Mp4FileOutputWriteMessage
|
|
7126
|
+
* @generated from field: norsk.api.media.Mp4FileOutputWriteMessage write_file = 3;
|
|
7090
7127
|
*/
|
|
7091
7128
|
value: Mp4FileOutputWriteMessage;
|
|
7092
7129
|
case: "writeFile";
|
|
@@ -7296,8 +7333,8 @@ export declare class X264Codec extends Message<X264Codec> {
|
|
|
7296
7333
|
profile: X264Codec_X264Profile;
|
|
7297
7334
|
/**
|
|
7298
7335
|
* Sets the level flag in the output. Permissible levels are
|
|
7299
|
-
*
|
|
7300
|
-
* 5, 5.1
|
|
7336
|
+
* 1, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2,
|
|
7337
|
+
* 5, 5.1 - since this field is an integer, you pass in 10 times the
|
|
7301
7338
|
* required value (e.g., 11, 12 etc)
|
|
7302
7339
|
*
|
|
7303
7340
|
* @generated from field: norsk.api.media.OptionalInt level = 3;
|
|
@@ -7604,7 +7641,7 @@ export declare class X265Codec extends Message<X265Codec> {
|
|
|
7604
7641
|
profile: X265Codec_X265Profile;
|
|
7605
7642
|
/**
|
|
7606
7643
|
* Sets the level flag in the output. Permissible levels are
|
|
7607
|
-
*
|
|
7644
|
+
* `1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2` -
|
|
7608
7645
|
* since this field is an integer, you pass in 10 times the
|
|
7609
7646
|
* required value (e.g., 11, 12 etc)
|
|
7610
7647
|
*
|
|
@@ -10152,6 +10189,8 @@ export declare class AwsTranscribeConfiguration extends Message<AwsTranscribeCon
|
|
|
10152
10189
|
*/
|
|
10153
10190
|
language: string;
|
|
10154
10191
|
/**
|
|
10192
|
+
* Region for the transcribe endpoint
|
|
10193
|
+
*
|
|
10155
10194
|
* @generated from field: string aws_region = 4;
|
|
10156
10195
|
*/
|
|
10157
10196
|
awsRegion: string;
|
|
@@ -10482,17 +10521,17 @@ export declare class SubscribeSource extends Message<SubscribeSource> {
|
|
|
10482
10521
|
*/
|
|
10483
10522
|
export declare class Subscription extends Message<Subscription> {
|
|
10484
10523
|
/**
|
|
10485
|
-
*
|
|
10524
|
+
* An arbitrary id of the subscription, to enable correlating of the corresponding subscription response
|
|
10486
10525
|
*
|
|
10487
|
-
* @generated from field:
|
|
10526
|
+
* @generated from field: string id = 1;
|
|
10488
10527
|
*/
|
|
10489
|
-
|
|
10528
|
+
id: string;
|
|
10490
10529
|
/**
|
|
10491
|
-
*
|
|
10530
|
+
* The individual subscription components
|
|
10492
10531
|
*
|
|
10493
|
-
* @generated from field:
|
|
10532
|
+
* @generated from field: repeated norsk.api.media.SubscribeSource sources = 2;
|
|
10494
10533
|
*/
|
|
10495
|
-
|
|
10534
|
+
sources: SubscribeSource[];
|
|
10496
10535
|
constructor(data?: PartialMessage<Subscription>);
|
|
10497
10536
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10498
10537
|
static readonly typeName = "norsk.api.media.Subscription";
|
|
@@ -10509,17 +10548,17 @@ export declare class Subscription extends Message<Subscription> {
|
|
|
10509
10548
|
*/
|
|
10510
10549
|
export declare class SubscriptionResponse extends Message<SubscriptionResponse> {
|
|
10511
10550
|
/**
|
|
10512
|
-
* The subscription
|
|
10551
|
+
* The id of the subscription which this message is a response to
|
|
10513
10552
|
*
|
|
10514
|
-
* @generated from field:
|
|
10553
|
+
* @generated from field: string id = 1;
|
|
10515
10554
|
*/
|
|
10516
|
-
|
|
10555
|
+
id: string;
|
|
10517
10556
|
/**
|
|
10518
|
-
* The
|
|
10557
|
+
* The error that prevented the subscription, if any
|
|
10519
10558
|
*
|
|
10520
|
-
* @generated from field:
|
|
10559
|
+
* @generated from field: norsk.api.media.SubscriptionError error = 2;
|
|
10521
10560
|
*/
|
|
10522
|
-
|
|
10561
|
+
error?: SubscriptionError;
|
|
10523
10562
|
constructor(data?: PartialMessage<SubscriptionResponse>);
|
|
10524
10563
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10525
10564
|
static readonly typeName = "norsk.api.media.SubscriptionResponse";
|
|
@@ -10529,6 +10568,227 @@ export declare class SubscriptionResponse extends Message<SubscriptionResponse>
|
|
|
10529
10568
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionResponse;
|
|
10530
10569
|
static equals(a: SubscriptionResponse | PlainMessage<SubscriptionResponse> | undefined, b: SubscriptionResponse | PlainMessage<SubscriptionResponse> | undefined): boolean;
|
|
10531
10570
|
}
|
|
10571
|
+
/**
|
|
10572
|
+
* @generated from message norsk.api.media.SubscriptionError
|
|
10573
|
+
*/
|
|
10574
|
+
export declare class SubscriptionError extends Message<SubscriptionError> {
|
|
10575
|
+
/**
|
|
10576
|
+
* @generated from oneof norsk.api.media.SubscriptionError.error
|
|
10577
|
+
*/
|
|
10578
|
+
error: {
|
|
10579
|
+
/**
|
|
10580
|
+
* An opaque internal error
|
|
10581
|
+
*
|
|
10582
|
+
* @generated from field: string internal = 1;
|
|
10583
|
+
*/
|
|
10584
|
+
value: string;
|
|
10585
|
+
case: "internal";
|
|
10586
|
+
} | {
|
|
10587
|
+
/**
|
|
10588
|
+
* The media node requesting the subscription does not exist
|
|
10589
|
+
*
|
|
10590
|
+
* @generated from field: norsk.api.media.MediaNodeId unknown_subscriber = 2;
|
|
10591
|
+
*/
|
|
10592
|
+
value: MediaNodeId;
|
|
10593
|
+
case: "unknownSubscriber";
|
|
10594
|
+
} | {
|
|
10595
|
+
/**
|
|
10596
|
+
* Multiple stream keys found for the context type
|
|
10597
|
+
*
|
|
10598
|
+
* @generated from field: norsk.api.media.SubscriptionError.MultipleStreams multiple_streams = 3;
|
|
10599
|
+
*/
|
|
10600
|
+
value: SubscriptionError_MultipleStreams;
|
|
10601
|
+
case: "multipleStreams";
|
|
10602
|
+
} | {
|
|
10603
|
+
/**
|
|
10604
|
+
* Per-source errors
|
|
10605
|
+
*
|
|
10606
|
+
* @generated from field: norsk.api.media.SubscriptionError.SourceSubscriptionErrors source_subscription_error = 4;
|
|
10607
|
+
*/
|
|
10608
|
+
value: SubscriptionError_SourceSubscriptionErrors;
|
|
10609
|
+
case: "sourceSubscriptionError";
|
|
10610
|
+
} | {
|
|
10611
|
+
case: undefined;
|
|
10612
|
+
value?: undefined;
|
|
10613
|
+
};
|
|
10614
|
+
constructor(data?: PartialMessage<SubscriptionError>);
|
|
10615
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10616
|
+
static readonly typeName = "norsk.api.media.SubscriptionError";
|
|
10617
|
+
static readonly fields: FieldList;
|
|
10618
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionError;
|
|
10619
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionError;
|
|
10620
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionError;
|
|
10621
|
+
static equals(a: SubscriptionError | PlainMessage<SubscriptionError> | undefined, b: SubscriptionError | PlainMessage<SubscriptionError> | undefined): boolean;
|
|
10622
|
+
}
|
|
10623
|
+
/**
|
|
10624
|
+
* @generated from message norsk.api.media.SubscriptionError.MultipleStreams
|
|
10625
|
+
*/
|
|
10626
|
+
export declare class SubscriptionError_MultipleStreams extends Message<SubscriptionError_MultipleStreams> {
|
|
10627
|
+
/**
|
|
10628
|
+
* @generated from field: norsk.api.media.ContextType context_type = 1;
|
|
10629
|
+
*/
|
|
10630
|
+
contextType: ContextType;
|
|
10631
|
+
/**
|
|
10632
|
+
* @generated from field: repeated norsk.api.media.StreamKey stream_keys = 2;
|
|
10633
|
+
*/
|
|
10634
|
+
streamKeys: StreamKey[];
|
|
10635
|
+
constructor(data?: PartialMessage<SubscriptionError_MultipleStreams>);
|
|
10636
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10637
|
+
static readonly typeName = "norsk.api.media.SubscriptionError.MultipleStreams";
|
|
10638
|
+
static readonly fields: FieldList;
|
|
10639
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionError_MultipleStreams;
|
|
10640
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionError_MultipleStreams;
|
|
10641
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionError_MultipleStreams;
|
|
10642
|
+
static equals(a: SubscriptionError_MultipleStreams | PlainMessage<SubscriptionError_MultipleStreams> | undefined, b: SubscriptionError_MultipleStreams | PlainMessage<SubscriptionError_MultipleStreams> | undefined): boolean;
|
|
10643
|
+
}
|
|
10644
|
+
/**
|
|
10645
|
+
* @generated from message norsk.api.media.SubscriptionError.SourceSubscriptionErrors
|
|
10646
|
+
*/
|
|
10647
|
+
export declare class SubscriptionError_SourceSubscriptionErrors extends Message<SubscriptionError_SourceSubscriptionErrors> {
|
|
10648
|
+
/**
|
|
10649
|
+
* @generated from field: repeated norsk.api.media.SourceSubscriptionError errors = 1;
|
|
10650
|
+
*/
|
|
10651
|
+
errors: SourceSubscriptionError[];
|
|
10652
|
+
constructor(data?: PartialMessage<SubscriptionError_SourceSubscriptionErrors>);
|
|
10653
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10654
|
+
static readonly typeName = "norsk.api.media.SubscriptionError.SourceSubscriptionErrors";
|
|
10655
|
+
static readonly fields: FieldList;
|
|
10656
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionError_SourceSubscriptionErrors;
|
|
10657
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionError_SourceSubscriptionErrors;
|
|
10658
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionError_SourceSubscriptionErrors;
|
|
10659
|
+
static equals(a: SubscriptionError_SourceSubscriptionErrors | PlainMessage<SubscriptionError_SourceSubscriptionErrors> | undefined, b: SubscriptionError_SourceSubscriptionErrors | PlainMessage<SubscriptionError_SourceSubscriptionErrors> | undefined): boolean;
|
|
10660
|
+
}
|
|
10661
|
+
/**
|
|
10662
|
+
* @generated from message norsk.api.media.SourceSubscriptionError
|
|
10663
|
+
*/
|
|
10664
|
+
export declare class SourceSubscriptionError extends Message<SourceSubscriptionError> {
|
|
10665
|
+
/**
|
|
10666
|
+
* @generated from oneof norsk.api.media.SourceSubscriptionError.error
|
|
10667
|
+
*/
|
|
10668
|
+
error: {
|
|
10669
|
+
/**
|
|
10670
|
+
* An opaque internal error
|
|
10671
|
+
*
|
|
10672
|
+
* @generated from field: string internal = 1;
|
|
10673
|
+
*/
|
|
10674
|
+
value: string;
|
|
10675
|
+
case: "internal";
|
|
10676
|
+
} | {
|
|
10677
|
+
/**
|
|
10678
|
+
* The media node does not exist (maybe it crashed)
|
|
10679
|
+
*
|
|
10680
|
+
* @generated from field: norsk.api.media.MediaNodeId unknown_source_id = 2;
|
|
10681
|
+
*/
|
|
10682
|
+
value: MediaNodeId;
|
|
10683
|
+
case: "unknownSourceId";
|
|
10684
|
+
} | {
|
|
10685
|
+
/**
|
|
10686
|
+
* The media node exists, but does not have the stream key
|
|
10687
|
+
*
|
|
10688
|
+
* @generated from field: norsk.api.media.SourceSubscriptionError.SourceStream unknown_source_stream = 3;
|
|
10689
|
+
*/
|
|
10690
|
+
value: SourceSubscriptionError_SourceStream;
|
|
10691
|
+
case: "unknownSourceStream";
|
|
10692
|
+
} | {
|
|
10693
|
+
/**
|
|
10694
|
+
* The media node is not set up to receive data on this pin (which may be auto-detected)
|
|
10695
|
+
*
|
|
10696
|
+
* @generated from field: norsk.api.media.SourceSubscriptionError.NoSubscriberPin no_subscriber_pin = 4;
|
|
10697
|
+
*/
|
|
10698
|
+
value: SourceSubscriptionError_NoSubscriberPin;
|
|
10699
|
+
case: "noSubscriberPin";
|
|
10700
|
+
} | {
|
|
10701
|
+
/**
|
|
10702
|
+
* Norsk does not support conversion from the media types of the source to the media types accepted by the subscriber
|
|
10703
|
+
*
|
|
10704
|
+
* @generated from field: norsk.api.media.SourceSubscriptionError.UnsupportedConversion unsupported_conversion = 5;
|
|
10705
|
+
*/
|
|
10706
|
+
value: SourceSubscriptionError_UnsupportedConversion;
|
|
10707
|
+
case: "unsupportedConversion";
|
|
10708
|
+
} | {
|
|
10709
|
+
case: undefined;
|
|
10710
|
+
value?: undefined;
|
|
10711
|
+
};
|
|
10712
|
+
constructor(data?: PartialMessage<SourceSubscriptionError>);
|
|
10713
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10714
|
+
static readonly typeName = "norsk.api.media.SourceSubscriptionError";
|
|
10715
|
+
static readonly fields: FieldList;
|
|
10716
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceSubscriptionError;
|
|
10717
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceSubscriptionError;
|
|
10718
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceSubscriptionError;
|
|
10719
|
+
static equals(a: SourceSubscriptionError | PlainMessage<SourceSubscriptionError> | undefined, b: SourceSubscriptionError | PlainMessage<SourceSubscriptionError> | undefined): boolean;
|
|
10720
|
+
}
|
|
10721
|
+
/**
|
|
10722
|
+
* @generated from message norsk.api.media.SourceSubscriptionError.SourceStream
|
|
10723
|
+
*/
|
|
10724
|
+
export declare class SourceSubscriptionError_SourceStream extends Message<SourceSubscriptionError_SourceStream> {
|
|
10725
|
+
/**
|
|
10726
|
+
* @generated from field: norsk.api.media.MediaNodeId media_node_id = 1;
|
|
10727
|
+
*/
|
|
10728
|
+
mediaNodeId?: MediaNodeId;
|
|
10729
|
+
/**
|
|
10730
|
+
* @generated from field: norsk.api.media.StreamKey stream_key = 2;
|
|
10731
|
+
*/
|
|
10732
|
+
streamKey?: StreamKey;
|
|
10733
|
+
constructor(data?: PartialMessage<SourceSubscriptionError_SourceStream>);
|
|
10734
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10735
|
+
static readonly typeName = "norsk.api.media.SourceSubscriptionError.SourceStream";
|
|
10736
|
+
static readonly fields: FieldList;
|
|
10737
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceSubscriptionError_SourceStream;
|
|
10738
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceSubscriptionError_SourceStream;
|
|
10739
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceSubscriptionError_SourceStream;
|
|
10740
|
+
static equals(a: SourceSubscriptionError_SourceStream | PlainMessage<SourceSubscriptionError_SourceStream> | undefined, b: SourceSubscriptionError_SourceStream | PlainMessage<SourceSubscriptionError_SourceStream> | undefined): boolean;
|
|
10741
|
+
}
|
|
10742
|
+
/**
|
|
10743
|
+
* @generated from message norsk.api.media.SourceSubscriptionError.NoSubscriberPin
|
|
10744
|
+
*/
|
|
10745
|
+
export declare class SourceSubscriptionError_NoSubscriberPin extends Message<SourceSubscriptionError_NoSubscriberPin> {
|
|
10746
|
+
/**
|
|
10747
|
+
* @generated from field: norsk.api.media.SourceSubscriptionError.SourceStream source_stream = 1;
|
|
10748
|
+
*/
|
|
10749
|
+
sourceStream?: SourceSubscriptionError_SourceStream;
|
|
10750
|
+
/**
|
|
10751
|
+
* @generated from field: string pin = 2;
|
|
10752
|
+
*/
|
|
10753
|
+
pin: string;
|
|
10754
|
+
/**
|
|
10755
|
+
* @generated from field: repeated string subscriber_pins = 3;
|
|
10756
|
+
*/
|
|
10757
|
+
subscriberPins: string[];
|
|
10758
|
+
constructor(data?: PartialMessage<SourceSubscriptionError_NoSubscriberPin>);
|
|
10759
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10760
|
+
static readonly typeName = "norsk.api.media.SourceSubscriptionError.NoSubscriberPin";
|
|
10761
|
+
static readonly fields: FieldList;
|
|
10762
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceSubscriptionError_NoSubscriberPin;
|
|
10763
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceSubscriptionError_NoSubscriberPin;
|
|
10764
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceSubscriptionError_NoSubscriberPin;
|
|
10765
|
+
static equals(a: SourceSubscriptionError_NoSubscriberPin | PlainMessage<SourceSubscriptionError_NoSubscriberPin> | undefined, b: SourceSubscriptionError_NoSubscriberPin | PlainMessage<SourceSubscriptionError_NoSubscriberPin> | undefined): boolean;
|
|
10766
|
+
}
|
|
10767
|
+
/**
|
|
10768
|
+
* @generated from message norsk.api.media.SourceSubscriptionError.UnsupportedConversion
|
|
10769
|
+
*/
|
|
10770
|
+
export declare class SourceSubscriptionError_UnsupportedConversion extends Message<SourceSubscriptionError_UnsupportedConversion> {
|
|
10771
|
+
/**
|
|
10772
|
+
* @generated from field: norsk.api.media.SourceSubscriptionError.SourceStream source_stream = 1;
|
|
10773
|
+
*/
|
|
10774
|
+
sourceStream?: SourceSubscriptionError_SourceStream;
|
|
10775
|
+
/**
|
|
10776
|
+
* @generated from field: repeated string source_types = 2;
|
|
10777
|
+
*/
|
|
10778
|
+
sourceTypes: string[];
|
|
10779
|
+
/**
|
|
10780
|
+
* @generated from field: repeated string subscriber_types = 3;
|
|
10781
|
+
*/
|
|
10782
|
+
subscriberTypes: string[];
|
|
10783
|
+
constructor(data?: PartialMessage<SourceSubscriptionError_UnsupportedConversion>);
|
|
10784
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10785
|
+
static readonly typeName = "norsk.api.media.SourceSubscriptionError.UnsupportedConversion";
|
|
10786
|
+
static readonly fields: FieldList;
|
|
10787
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SourceSubscriptionError_UnsupportedConversion;
|
|
10788
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SourceSubscriptionError_UnsupportedConversion;
|
|
10789
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SourceSubscriptionError_UnsupportedConversion;
|
|
10790
|
+
static equals(a: SourceSubscriptionError_UnsupportedConversion | PlainMessage<SourceSubscriptionError_UnsupportedConversion> | undefined, b: SourceSubscriptionError_UnsupportedConversion | PlainMessage<SourceSubscriptionError_UnsupportedConversion> | undefined): boolean;
|
|
10791
|
+
}
|
|
10532
10792
|
/**
|
|
10533
10793
|
* `Struct` represents a structured data value, consisting of fields
|
|
10534
10794
|
* which map to dynamically typed values. In some languages, `Struct`
|