@norskvideo/norsk-api 1.0.365 → 1.0.367
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 +23 -6
- package/lib/media_grpc_pb.js +36 -1
- package/lib/media_pb.d.ts +328 -21
- package/lib/media_pb.js +398 -44
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +554 -32
- package/lib/shared/common_pb.d.ts +37 -1
- package/lib/shared/common_pb.js +38 -1
- package/lib/shared/common_pb.js.map +1 -1
- package/lib/shared/common_pb.ts +57 -1
- package/package.json +1 -1
package/lib/media_grpc_pb.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ interface IMediaService extends grpc.ServiceDefinition<grpc.UntypedServiceImplem
|
|
|
80
80
|
closeMediaNode: IMediaService_ICloseMediaNode;
|
|
81
81
|
hardwareInfo: IMediaService_IHardwareInfo;
|
|
82
82
|
createMediaStoreRecorder: IMediaService_ICreateMediaStoreRecorder;
|
|
83
|
+
createMediaStoreSnapshot: IMediaService_ICreateMediaStoreSnapshot;
|
|
83
84
|
createMediaStorePlayer: IMediaService_ICreateMediaStorePlayer;
|
|
84
85
|
createMediaStoreAsset: IMediaService_ICreateMediaStoreAsset;
|
|
85
86
|
createMediaStoreCut: IMediaService_ICreateMediaStoreCut;
|
|
@@ -700,6 +701,15 @@ interface IMediaService_ICreateMediaStoreRecorder extends grpc.MethodDefinition<
|
|
|
700
701
|
responseSerialize: grpc.serialize<media_pb.MediaStoreRecorderEvent>;
|
|
701
702
|
responseDeserialize: grpc.deserialize<media_pb.MediaStoreRecorderEvent>;
|
|
702
703
|
}
|
|
704
|
+
interface IMediaService_ICreateMediaStoreSnapshot extends grpc.MethodDefinition<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent> {
|
|
705
|
+
path: "/norsk.api.media.Media/CreateMediaStoreSnapshot";
|
|
706
|
+
requestStream: true;
|
|
707
|
+
responseStream: true;
|
|
708
|
+
requestSerialize: grpc.serialize<media_pb.MediaStoreSnapshotMessage>;
|
|
709
|
+
requestDeserialize: grpc.deserialize<media_pb.MediaStoreSnapshotMessage>;
|
|
710
|
+
responseSerialize: grpc.serialize<media_pb.MediaStoreSnapshotEvent>;
|
|
711
|
+
responseDeserialize: grpc.deserialize<media_pb.MediaStoreSnapshotEvent>;
|
|
712
|
+
}
|
|
703
713
|
interface IMediaService_ICreateMediaStorePlayer extends grpc.MethodDefinition<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent> {
|
|
704
714
|
path: "/norsk.api.media.Media/CreateMediaStorePlayer";
|
|
705
715
|
requestStream: true;
|
|
@@ -720,7 +730,7 @@ interface IMediaService_ICreateMediaStoreAsset extends grpc.MethodDefinition<med
|
|
|
720
730
|
}
|
|
721
731
|
interface IMediaService_ICreateMediaStoreCut extends grpc.MethodDefinition<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent> {
|
|
722
732
|
path: "/norsk.api.media.Media/CreateMediaStoreCut";
|
|
723
|
-
requestStream:
|
|
733
|
+
requestStream: true;
|
|
724
734
|
responseStream: true;
|
|
725
735
|
requestSerialize: grpc.serialize<media_pb.MediaStoreCutRequest>;
|
|
726
736
|
requestDeserialize: grpc.deserialize<media_pb.MediaStoreCutRequest>;
|
|
@@ -826,9 +836,10 @@ export interface IMediaServer extends grpc.UntypedServiceImplementation {
|
|
|
826
836
|
closeMediaNode: grpc.handleUnaryCall<media_pb.MediaNodeId, google_protobuf_empty_pb.Empty>;
|
|
827
837
|
hardwareInfo: grpc.handleUnaryCall<google_protobuf_empty_pb.Empty, media_pb.Hardware>;
|
|
828
838
|
createMediaStoreRecorder: grpc.handleBidiStreamingCall<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
839
|
+
createMediaStoreSnapshot: grpc.handleBidiStreamingCall<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
829
840
|
createMediaStorePlayer: grpc.handleBidiStreamingCall<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
830
841
|
createMediaStoreAsset: grpc.handleServerStreamingCall<media_pb.MediaStoreAssetSettings, media_pb.MediaStoreAssetEvent>;
|
|
831
|
-
createMediaStoreCut: grpc.
|
|
842
|
+
createMediaStoreCut: grpc.handleBidiStreamingCall<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
832
843
|
mediaStoreMetadata: grpc.handleUnaryCall<media_pb.MediaStoreMetadataRequest, media_pb.MediaStoreMetadataResponse>;
|
|
833
844
|
createOutputMoq: grpc.handleBidiStreamingCall<media_pb.MoqOutputMessage, media_pb.MoqOutputEvent>;
|
|
834
845
|
enumDeckLinkDisplayModes: grpc.handleUnaryCall<media_pb.DeckLinkCardIndex, media_pb.DeckLinkDisplayModes>;
|
|
@@ -1035,13 +1046,17 @@ export interface IMediaClient {
|
|
|
1035
1046
|
createMediaStoreRecorder(): grpc.ClientDuplexStream<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
1036
1047
|
createMediaStoreRecorder(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
1037
1048
|
createMediaStoreRecorder(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
1049
|
+
createMediaStoreSnapshot(): grpc.ClientDuplexStream<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
1050
|
+
createMediaStoreSnapshot(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
1051
|
+
createMediaStoreSnapshot(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
1038
1052
|
createMediaStorePlayer(): grpc.ClientDuplexStream<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
1039
1053
|
createMediaStorePlayer(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
1040
1054
|
createMediaStorePlayer(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
1041
1055
|
createMediaStoreAsset(request: media_pb.MediaStoreAssetSettings, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.MediaStoreAssetEvent>;
|
|
1042
1056
|
createMediaStoreAsset(request: media_pb.MediaStoreAssetSettings, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.MediaStoreAssetEvent>;
|
|
1043
|
-
createMediaStoreCut(
|
|
1044
|
-
createMediaStoreCut(
|
|
1057
|
+
createMediaStoreCut(): grpc.ClientDuplexStream<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
1058
|
+
createMediaStoreCut(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
1059
|
+
createMediaStoreCut(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
1045
1060
|
mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
|
1046
1061
|
mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
|
1047
1062
|
mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
|
@@ -1193,12 +1208,14 @@ export class MediaClient extends grpc.Client implements IMediaClient {
|
|
|
1193
1208
|
public hardwareInfo(request: google_protobuf_empty_pb.Empty, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: media_pb.Hardware) => void): grpc.ClientUnaryCall;
|
|
1194
1209
|
public createMediaStoreRecorder(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
1195
1210
|
public createMediaStoreRecorder(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreRecorderMessage, media_pb.MediaStoreRecorderEvent>;
|
|
1211
|
+
public createMediaStoreSnapshot(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
1212
|
+
public createMediaStoreSnapshot(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreSnapshotMessage, media_pb.MediaStoreSnapshotEvent>;
|
|
1196
1213
|
public createMediaStorePlayer(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
1197
1214
|
public createMediaStorePlayer(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStorePlayerMessage, media_pb.MediaStorePlayerEvent>;
|
|
1198
1215
|
public createMediaStoreAsset(request: media_pb.MediaStoreAssetSettings, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.MediaStoreAssetEvent>;
|
|
1199
1216
|
public createMediaStoreAsset(request: media_pb.MediaStoreAssetSettings, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.MediaStoreAssetEvent>;
|
|
1200
|
-
public createMediaStoreCut(
|
|
1201
|
-
public createMediaStoreCut(
|
|
1217
|
+
public createMediaStoreCut(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
1218
|
+
public createMediaStoreCut(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.MediaStoreCutRequest, media_pb.MediaStoreCutEvent>;
|
|
1202
1219
|
public mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
|
1203
1220
|
public mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
|
1204
1221
|
public mediaStoreMetadata(request: media_pb.MediaStoreMetadataRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: media_pb.MediaStoreMetadataResponse) => void): grpc.ClientUnaryCall;
|
package/lib/media_grpc_pb.js
CHANGED
|
@@ -778,6 +778,28 @@ function deserialize_norsk_api_media_MediaStoreRecorderMessage(buffer_arg) {
|
|
|
778
778
|
return media_pb.MediaStoreRecorderMessage.fromBinary(new Uint8Array(buffer_arg));
|
|
779
779
|
}
|
|
780
780
|
|
|
781
|
+
function serialize_norsk_api_media_MediaStoreSnapshotEvent(arg) {
|
|
782
|
+
if (!(arg instanceof media_pb.MediaStoreSnapshotEvent)) {
|
|
783
|
+
throw new Error('Expected argument of type norsk.api.media.MediaStoreSnapshotEvent');
|
|
784
|
+
}
|
|
785
|
+
return Buffer.from(arg.toBinary());
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
function deserialize_norsk_api_media_MediaStoreSnapshotEvent(buffer_arg) {
|
|
789
|
+
return media_pb.MediaStoreSnapshotEvent.fromBinary(new Uint8Array(buffer_arg));
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
function serialize_norsk_api_media_MediaStoreSnapshotMessage(arg) {
|
|
793
|
+
if (!(arg instanceof media_pb.MediaStoreSnapshotMessage)) {
|
|
794
|
+
throw new Error('Expected argument of type norsk.api.media.MediaStoreSnapshotMessage');
|
|
795
|
+
}
|
|
796
|
+
return Buffer.from(arg.toBinary());
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
function deserialize_norsk_api_media_MediaStoreSnapshotMessage(buffer_arg) {
|
|
800
|
+
return media_pb.MediaStoreSnapshotMessage.fromBinary(new Uint8Array(buffer_arg));
|
|
801
|
+
}
|
|
802
|
+
|
|
781
803
|
function serialize_norsk_api_media_MetadataCombineEvent(arg) {
|
|
782
804
|
if (!(arg instanceof media_pb.MetadataCombineEvent)) {
|
|
783
805
|
throw new Error('Expected argument of type norsk.api.media.MetadataCombineEvent');
|
|
@@ -2450,6 +2472,19 @@ createMediaStoreRecorder: {
|
|
|
2450
2472
|
responseDeserialize: deserialize_norsk_api_media_MediaStoreRecorderEvent,
|
|
2451
2473
|
},
|
|
2452
2474
|
// *
|
|
2475
|
+
// Create a Media Store snapshot
|
|
2476
|
+
createMediaStoreSnapshot: {
|
|
2477
|
+
path: '/norsk.api.media.Media/CreateMediaStoreSnapshot',
|
|
2478
|
+
requestStream: true,
|
|
2479
|
+
responseStream: true,
|
|
2480
|
+
requestType: media_pb.MediaStoreSnapshotMessage,
|
|
2481
|
+
responseType: media_pb.MediaStoreSnapshotEvent,
|
|
2482
|
+
requestSerialize: serialize_norsk_api_media_MediaStoreSnapshotMessage,
|
|
2483
|
+
requestDeserialize: deserialize_norsk_api_media_MediaStoreSnapshotMessage,
|
|
2484
|
+
responseSerialize: serialize_norsk_api_media_MediaStoreSnapshotEvent,
|
|
2485
|
+
responseDeserialize: deserialize_norsk_api_media_MediaStoreSnapshotEvent,
|
|
2486
|
+
},
|
|
2487
|
+
// *
|
|
2453
2488
|
// Create a Media Store player
|
|
2454
2489
|
createMediaStorePlayer: {
|
|
2455
2490
|
path: '/norsk.api.media.Media/CreateMediaStorePlayer',
|
|
@@ -2479,7 +2514,7 @@ createMediaStoreAsset: {
|
|
|
2479
2514
|
// Perform a Media Store cut
|
|
2480
2515
|
createMediaStoreCut: {
|
|
2481
2516
|
path: '/norsk.api.media.Media/CreateMediaStoreCut',
|
|
2482
|
-
requestStream:
|
|
2517
|
+
requestStream: true,
|
|
2483
2518
|
responseStream: true,
|
|
2484
2519
|
requestType: media_pb.MediaStoreCutRequest,
|
|
2485
2520
|
responseType: media_pb.MediaStoreCutEvent,
|
package/lib/media_pb.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
2
|
import { Empty, Message, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
-
import { CurrentLoad, Log, OptionalBool, OptionalInt, OptionalInt64, OptionalString, Version } from "./shared/common_pb.js";
|
|
3
|
+
import { CurrentLoad, Log, OptionalBool, OptionalInt, OptionalInt64, OptionalString, UInt32OrInfinity, Version } from "./shared/common_pb.js";
|
|
4
4
|
/**
|
|
5
5
|
* Enumeration of possible channel positions.
|
|
6
6
|
*
|
|
@@ -3901,9 +3901,9 @@ export declare class TestCardVideoConfiguration extends Message<TestCardVideoCon
|
|
|
3901
3901
|
*/
|
|
3902
3902
|
sourceName: string;
|
|
3903
3903
|
/**
|
|
3904
|
-
* @generated from field:
|
|
3904
|
+
* @generated from field: norsk.api.common.UInt32OrInfinity number_of_frames = 4;
|
|
3905
3905
|
*/
|
|
3906
|
-
numberOfFrames
|
|
3906
|
+
numberOfFrames?: UInt32OrInfinity;
|
|
3907
3907
|
/**
|
|
3908
3908
|
* @generated from field: bool realtime = 5;
|
|
3909
3909
|
*/
|
|
@@ -4134,15 +4134,19 @@ export declare class DeltacastInputConfiguration extends Message<DeltacastInputC
|
|
|
4134
4134
|
*/
|
|
4135
4135
|
deviceId: number;
|
|
4136
4136
|
/**
|
|
4137
|
-
* @generated from field:
|
|
4137
|
+
* @generated from field: bool capture_video = 4;
|
|
4138
|
+
*/
|
|
4139
|
+
captureVideo: boolean;
|
|
4140
|
+
/**
|
|
4141
|
+
* @generated from field: uint32 channel_index = 5;
|
|
4138
4142
|
*/
|
|
4139
4143
|
channelIndex: number;
|
|
4140
4144
|
/**
|
|
4141
|
-
* @generated from field: uint32 audio_channel_mask =
|
|
4145
|
+
* @generated from field: uint32 audio_channel_mask = 6;
|
|
4142
4146
|
*/
|
|
4143
4147
|
audioChannelMask: number;
|
|
4144
4148
|
/**
|
|
4145
|
-
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling =
|
|
4149
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 7;
|
|
4146
4150
|
*/
|
|
4147
4151
|
statsSampling?: StreamStatisticsSampling;
|
|
4148
4152
|
constructor(data?: PartialMessage<DeltacastInputConfiguration>);
|
|
@@ -4483,6 +4487,18 @@ export declare class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
|
4483
4487
|
*/
|
|
4484
4488
|
value: Empty;
|
|
4485
4489
|
case: "pause";
|
|
4490
|
+
} | {
|
|
4491
|
+
/**
|
|
4492
|
+
* @generated from field: norsk.api.media.FileMp4InputSeek seek = 6;
|
|
4493
|
+
*/
|
|
4494
|
+
value: FileMp4InputSeek;
|
|
4495
|
+
case: "seek";
|
|
4496
|
+
} | {
|
|
4497
|
+
/**
|
|
4498
|
+
* @generated from field: norsk.api.media.FileMp4InputPlayUntil playUntil = 7;
|
|
4499
|
+
*/
|
|
4500
|
+
value: FileMp4InputPlayUntil;
|
|
4501
|
+
case: "playUntil";
|
|
4486
4502
|
} | {
|
|
4487
4503
|
case: undefined;
|
|
4488
4504
|
value?: undefined;
|
|
@@ -4496,6 +4512,40 @@ export declare class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
|
4496
4512
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputMessage;
|
|
4497
4513
|
static equals(a: FileMp4InputMessage | PlainMessage<FileMp4InputMessage> | undefined, b: FileMp4InputMessage | PlainMessage<FileMp4InputMessage> | undefined): boolean;
|
|
4498
4514
|
}
|
|
4515
|
+
/**
|
|
4516
|
+
* @generated from message norsk.api.media.FileMp4InputSeek
|
|
4517
|
+
*/
|
|
4518
|
+
export declare class FileMp4InputSeek extends Message<FileMp4InputSeek> {
|
|
4519
|
+
/**
|
|
4520
|
+
* @generated from field: uint32 offset_ms = 1;
|
|
4521
|
+
*/
|
|
4522
|
+
offsetMs: number;
|
|
4523
|
+
constructor(data?: PartialMessage<FileMp4InputSeek>);
|
|
4524
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4525
|
+
static readonly typeName = "norsk.api.media.FileMp4InputSeek";
|
|
4526
|
+
static readonly fields: FieldList;
|
|
4527
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputSeek;
|
|
4528
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputSeek;
|
|
4529
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputSeek;
|
|
4530
|
+
static equals(a: FileMp4InputSeek | PlainMessage<FileMp4InputSeek> | undefined, b: FileMp4InputSeek | PlainMessage<FileMp4InputSeek> | undefined): boolean;
|
|
4531
|
+
}
|
|
4532
|
+
/**
|
|
4533
|
+
* @generated from message norsk.api.media.FileMp4InputPlayUntil
|
|
4534
|
+
*/
|
|
4535
|
+
export declare class FileMp4InputPlayUntil extends Message<FileMp4InputPlayUntil> {
|
|
4536
|
+
/**
|
|
4537
|
+
* @generated from field: uint32 offset_ms = 1;
|
|
4538
|
+
*/
|
|
4539
|
+
offsetMs: number;
|
|
4540
|
+
constructor(data?: PartialMessage<FileMp4InputPlayUntil>);
|
|
4541
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4542
|
+
static readonly typeName = "norsk.api.media.FileMp4InputPlayUntil";
|
|
4543
|
+
static readonly fields: FieldList;
|
|
4544
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputPlayUntil;
|
|
4545
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputPlayUntil;
|
|
4546
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputPlayUntil;
|
|
4547
|
+
static equals(a: FileMp4InputPlayUntil | PlainMessage<FileMp4InputPlayUntil> | undefined, b: FileMp4InputPlayUntil | PlainMessage<FileMp4InputPlayUntil> | undefined): boolean;
|
|
4548
|
+
}
|
|
4499
4549
|
/**
|
|
4500
4550
|
* @generated from message norsk.api.media.FileMp4InputStatus
|
|
4501
4551
|
*/
|
|
@@ -4524,7 +4574,15 @@ export declare enum FileMp4InputStatus_State {
|
|
|
4524
4574
|
/**
|
|
4525
4575
|
* @generated from enum value: INPUT_STATUS_EOF = 1;
|
|
4526
4576
|
*/
|
|
4527
|
-
INPUT_STATUS_EOF = 1
|
|
4577
|
+
INPUT_STATUS_EOF = 1,
|
|
4578
|
+
/**
|
|
4579
|
+
* @generated from enum value: INPUT_STATUS_EOF_LOOPING = 2;
|
|
4580
|
+
*/
|
|
4581
|
+
INPUT_STATUS_EOF_LOOPING = 2,
|
|
4582
|
+
/**
|
|
4583
|
+
* @generated from enum value: INPUT_STATUS_STOP_POSITION = 3;
|
|
4584
|
+
*/
|
|
4585
|
+
INPUT_STATUS_STOP_POSITION = 3
|
|
4528
4586
|
}
|
|
4529
4587
|
/**
|
|
4530
4588
|
* @generated from message norsk.api.media.FileMp4InputInfo
|
|
@@ -7796,6 +7854,18 @@ export declare class HlsPushDestination extends Message<HlsPushDestination> {
|
|
|
7796
7854
|
* @generated from field: float part_hold_back_seconds = 9;
|
|
7797
7855
|
*/
|
|
7798
7856
|
partHoldBackSeconds: number;
|
|
7857
|
+
/**
|
|
7858
|
+
* whether the server supports gzip compression on PUT/POST requests
|
|
7859
|
+
*
|
|
7860
|
+
* @generated from field: bool supports_gzip = 10;
|
|
7861
|
+
*/
|
|
7862
|
+
supportsGzip: boolean;
|
|
7863
|
+
/**
|
|
7864
|
+
* Whether to use TLS or plain TCP transport, by default TLS used if port is 443
|
|
7865
|
+
*
|
|
7866
|
+
* @generated from field: norsk.api.common.OptionalBool tls_transport = 11;
|
|
7867
|
+
*/
|
|
7868
|
+
tlsTransport?: OptionalBool;
|
|
7799
7869
|
constructor(data?: PartialMessage<HlsPushDestination>);
|
|
7800
7870
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7801
7871
|
static readonly typeName = "norsk.api.media.HlsPushDestination";
|
|
@@ -15831,6 +15901,27 @@ export declare class MediaStoreRecorderConfiguration extends Message<MediaStoreR
|
|
|
15831
15901
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreRecorderConfiguration;
|
|
15832
15902
|
static equals(a: MediaStoreRecorderConfiguration | PlainMessage<MediaStoreRecorderConfiguration> | undefined, b: MediaStoreRecorderConfiguration | PlainMessage<MediaStoreRecorderConfiguration> | undefined): boolean;
|
|
15833
15903
|
}
|
|
15904
|
+
/**
|
|
15905
|
+
* @generated from message norsk.api.media.MediaStoreSnapshotConfiguration
|
|
15906
|
+
*/
|
|
15907
|
+
export declare class MediaStoreSnapshotConfiguration extends Message<MediaStoreSnapshotConfiguration> {
|
|
15908
|
+
/**
|
|
15909
|
+
* @generated from field: string name = 1;
|
|
15910
|
+
*/
|
|
15911
|
+
name: string;
|
|
15912
|
+
/**
|
|
15913
|
+
* @generated from field: string path = 2;
|
|
15914
|
+
*/
|
|
15915
|
+
path: string;
|
|
15916
|
+
constructor(data?: PartialMessage<MediaStoreSnapshotConfiguration>);
|
|
15917
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
15918
|
+
static readonly typeName = "norsk.api.media.MediaStoreSnapshotConfiguration";
|
|
15919
|
+
static readonly fields: FieldList;
|
|
15920
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreSnapshotConfiguration;
|
|
15921
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreSnapshotConfiguration;
|
|
15922
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreSnapshotConfiguration;
|
|
15923
|
+
static equals(a: MediaStoreSnapshotConfiguration | PlainMessage<MediaStoreSnapshotConfiguration> | undefined, b: MediaStoreSnapshotConfiguration | PlainMessage<MediaStoreSnapshotConfiguration> | undefined): boolean;
|
|
15924
|
+
}
|
|
15834
15925
|
/**
|
|
15835
15926
|
* @generated from message norsk.api.media.StreamSelection
|
|
15836
15927
|
*/
|
|
@@ -15880,6 +15971,10 @@ export declare class SingleCut extends Message<SingleCut> {
|
|
|
15880
15971
|
* @generated from field: norsk.api.common.OptionalInt session_num = 6;
|
|
15881
15972
|
*/
|
|
15882
15973
|
sessionNum?: OptionalInt;
|
|
15974
|
+
/**
|
|
15975
|
+
* @generated from field: norsk.api.common.UInt32OrInfinity repeat_count = 7;
|
|
15976
|
+
*/
|
|
15977
|
+
repeatCount?: UInt32OrInfinity;
|
|
15883
15978
|
constructor(data?: PartialMessage<SingleCut>);
|
|
15884
15979
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
15885
15980
|
static readonly typeName = "norsk.api.media.SingleCut";
|
|
@@ -15890,9 +15985,9 @@ export declare class SingleCut extends Message<SingleCut> {
|
|
|
15890
15985
|
static equals(a: SingleCut | PlainMessage<SingleCut> | undefined, b: SingleCut | PlainMessage<SingleCut> | undefined): boolean;
|
|
15891
15986
|
}
|
|
15892
15987
|
/**
|
|
15893
|
-
* @generated from message norsk.api.media.
|
|
15988
|
+
* @generated from message norsk.api.media.StartMediaStoreCut
|
|
15894
15989
|
*/
|
|
15895
|
-
export declare class
|
|
15990
|
+
export declare class StartMediaStoreCut extends Message<StartMediaStoreCut> {
|
|
15896
15991
|
/**
|
|
15897
15992
|
* @generated from field: string id = 1;
|
|
15898
15993
|
*/
|
|
@@ -15906,27 +16001,72 @@ export declare class MediaStoreCutRequest extends Message<MediaStoreCutRequest>
|
|
|
15906
16001
|
*/
|
|
15907
16002
|
fileName: string;
|
|
15908
16003
|
/**
|
|
15909
|
-
* @generated from field: norsk.api.media.
|
|
16004
|
+
* @generated from field: norsk.api.media.StartMediaStoreCut.FileFormat file_format = 4;
|
|
15910
16005
|
*/
|
|
15911
|
-
fileFormat:
|
|
15912
|
-
constructor(data?: PartialMessage<
|
|
16006
|
+
fileFormat: StartMediaStoreCut_FileFormat;
|
|
16007
|
+
constructor(data?: PartialMessage<StartMediaStoreCut>);
|
|
15913
16008
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
15914
|
-
static readonly typeName = "norsk.api.media.
|
|
16009
|
+
static readonly typeName = "norsk.api.media.StartMediaStoreCut";
|
|
15915
16010
|
static readonly fields: FieldList;
|
|
15916
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
15917
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
15918
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
15919
|
-
static equals(a:
|
|
16011
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartMediaStoreCut;
|
|
16012
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartMediaStoreCut;
|
|
16013
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartMediaStoreCut;
|
|
16014
|
+
static equals(a: StartMediaStoreCut | PlainMessage<StartMediaStoreCut> | undefined, b: StartMediaStoreCut | PlainMessage<StartMediaStoreCut> | undefined): boolean;
|
|
15920
16015
|
}
|
|
15921
16016
|
/**
|
|
15922
|
-
* @generated from enum norsk.api.media.
|
|
16017
|
+
* @generated from enum norsk.api.media.StartMediaStoreCut.FileFormat
|
|
15923
16018
|
*/
|
|
15924
|
-
export declare enum
|
|
16019
|
+
export declare enum StartMediaStoreCut_FileFormat {
|
|
15925
16020
|
/**
|
|
15926
16021
|
* @generated from enum value: CUT_MP4 = 0;
|
|
15927
16022
|
*/
|
|
15928
16023
|
CUT_MP4 = 0
|
|
15929
16024
|
}
|
|
16025
|
+
/**
|
|
16026
|
+
* @generated from message norsk.api.media.CancelMediaStoreCut
|
|
16027
|
+
*/
|
|
16028
|
+
export declare class CancelMediaStoreCut extends Message<CancelMediaStoreCut> {
|
|
16029
|
+
constructor(data?: PartialMessage<CancelMediaStoreCut>);
|
|
16030
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16031
|
+
static readonly typeName = "norsk.api.media.CancelMediaStoreCut";
|
|
16032
|
+
static readonly fields: FieldList;
|
|
16033
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CancelMediaStoreCut;
|
|
16034
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CancelMediaStoreCut;
|
|
16035
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CancelMediaStoreCut;
|
|
16036
|
+
static equals(a: CancelMediaStoreCut | PlainMessage<CancelMediaStoreCut> | undefined, b: CancelMediaStoreCut | PlainMessage<CancelMediaStoreCut> | undefined): boolean;
|
|
16037
|
+
}
|
|
16038
|
+
/**
|
|
16039
|
+
* @generated from message norsk.api.media.MediaStoreCutRequest
|
|
16040
|
+
*/
|
|
16041
|
+
export declare class MediaStoreCutRequest extends Message<MediaStoreCutRequest> {
|
|
16042
|
+
/**
|
|
16043
|
+
* @generated from oneof norsk.api.media.MediaStoreCutRequest.message
|
|
16044
|
+
*/
|
|
16045
|
+
message: {
|
|
16046
|
+
/**
|
|
16047
|
+
* @generated from field: norsk.api.media.StartMediaStoreCut start_cut = 1;
|
|
16048
|
+
*/
|
|
16049
|
+
value: StartMediaStoreCut;
|
|
16050
|
+
case: "startCut";
|
|
16051
|
+
} | {
|
|
16052
|
+
/**
|
|
16053
|
+
* @generated from field: norsk.api.media.CancelMediaStoreCut cancel_cut = 2;
|
|
16054
|
+
*/
|
|
16055
|
+
value: CancelMediaStoreCut;
|
|
16056
|
+
case: "cancelCut";
|
|
16057
|
+
} | {
|
|
16058
|
+
case: undefined;
|
|
16059
|
+
value?: undefined;
|
|
16060
|
+
};
|
|
16061
|
+
constructor(data?: PartialMessage<MediaStoreCutRequest>);
|
|
16062
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16063
|
+
static readonly typeName = "norsk.api.media.MediaStoreCutRequest";
|
|
16064
|
+
static readonly fields: FieldList;
|
|
16065
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreCutRequest;
|
|
16066
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreCutRequest;
|
|
16067
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreCutRequest;
|
|
16068
|
+
static equals(a: MediaStoreCutRequest | PlainMessage<MediaStoreCutRequest> | undefined, b: MediaStoreCutRequest | PlainMessage<MediaStoreCutRequest> | undefined): boolean;
|
|
16069
|
+
}
|
|
15930
16070
|
/**
|
|
15931
16071
|
* @generated from message norsk.api.media.Progress
|
|
15932
16072
|
*/
|
|
@@ -16031,6 +16171,167 @@ export declare class MediaStoreRecorderEvent extends Message<MediaStoreRecorderE
|
|
|
16031
16171
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreRecorderEvent;
|
|
16032
16172
|
static equals(a: MediaStoreRecorderEvent | PlainMessage<MediaStoreRecorderEvent> | undefined, b: MediaStoreRecorderEvent | PlainMessage<MediaStoreRecorderEvent> | undefined): boolean;
|
|
16033
16173
|
}
|
|
16174
|
+
/**
|
|
16175
|
+
* @generated from message norsk.api.media.MediaStoreSnapshotMessage
|
|
16176
|
+
*/
|
|
16177
|
+
export declare class MediaStoreSnapshotMessage extends Message<MediaStoreSnapshotMessage> {
|
|
16178
|
+
/**
|
|
16179
|
+
* @generated from oneof norsk.api.media.MediaStoreSnapshotMessage.message
|
|
16180
|
+
*/
|
|
16181
|
+
message: {
|
|
16182
|
+
/**
|
|
16183
|
+
* @generated from field: norsk.api.media.MediaStoreSnapshotConfiguration configuration = 1;
|
|
16184
|
+
*/
|
|
16185
|
+
value: MediaStoreSnapshotConfiguration;
|
|
16186
|
+
case: "configuration";
|
|
16187
|
+
} | {
|
|
16188
|
+
/**
|
|
16189
|
+
* @generated from field: google.protobuf.Empty update = 2;
|
|
16190
|
+
*/
|
|
16191
|
+
value: Empty;
|
|
16192
|
+
case: "update";
|
|
16193
|
+
} | {
|
|
16194
|
+
case: undefined;
|
|
16195
|
+
value?: undefined;
|
|
16196
|
+
};
|
|
16197
|
+
constructor(data?: PartialMessage<MediaStoreSnapshotMessage>);
|
|
16198
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16199
|
+
static readonly typeName = "norsk.api.media.MediaStoreSnapshotMessage";
|
|
16200
|
+
static readonly fields: FieldList;
|
|
16201
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreSnapshotMessage;
|
|
16202
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreSnapshotMessage;
|
|
16203
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreSnapshotMessage;
|
|
16204
|
+
static equals(a: MediaStoreSnapshotMessage | PlainMessage<MediaStoreSnapshotMessage> | undefined, b: MediaStoreSnapshotMessage | PlainMessage<MediaStoreSnapshotMessage> | undefined): boolean;
|
|
16205
|
+
}
|
|
16206
|
+
/**
|
|
16207
|
+
* @generated from message norsk.api.media.MediaStoreSnapshotEvent
|
|
16208
|
+
*/
|
|
16209
|
+
export declare class MediaStoreSnapshotEvent extends Message<MediaStoreSnapshotEvent> {
|
|
16210
|
+
/**
|
|
16211
|
+
* @generated from oneof norsk.api.media.MediaStoreSnapshotEvent.message
|
|
16212
|
+
*/
|
|
16213
|
+
message: {
|
|
16214
|
+
/**
|
|
16215
|
+
* @generated from field: google.protobuf.Empty snapshot_loaded = 1;
|
|
16216
|
+
*/
|
|
16217
|
+
value: Empty;
|
|
16218
|
+
case: "snapshotLoaded";
|
|
16219
|
+
} | {
|
|
16220
|
+
/**
|
|
16221
|
+
* @generated from field: google.protobuf.Empty snapshot_updated = 2;
|
|
16222
|
+
*/
|
|
16223
|
+
value: Empty;
|
|
16224
|
+
case: "snapshotUpdated";
|
|
16225
|
+
} | {
|
|
16226
|
+
/**
|
|
16227
|
+
* @generated from field: google.protobuf.Empty snapshot_update_failed = 3;
|
|
16228
|
+
*/
|
|
16229
|
+
value: Empty;
|
|
16230
|
+
case: "snapshotUpdateFailed";
|
|
16231
|
+
} | {
|
|
16232
|
+
case: undefined;
|
|
16233
|
+
value?: undefined;
|
|
16234
|
+
};
|
|
16235
|
+
constructor(data?: PartialMessage<MediaStoreSnapshotEvent>);
|
|
16236
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16237
|
+
static readonly typeName = "norsk.api.media.MediaStoreSnapshotEvent";
|
|
16238
|
+
static readonly fields: FieldList;
|
|
16239
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreSnapshotEvent;
|
|
16240
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreSnapshotEvent;
|
|
16241
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreSnapshotEvent;
|
|
16242
|
+
static equals(a: MediaStoreSnapshotEvent | PlainMessage<MediaStoreSnapshotEvent> | undefined, b: MediaStoreSnapshotEvent | PlainMessage<MediaStoreSnapshotEvent> | undefined): boolean;
|
|
16243
|
+
}
|
|
16244
|
+
/**
|
|
16245
|
+
* If the store pre-exists and the hash matches, use it
|
|
16246
|
+
* If the hash doesn't match, then either import or error
|
|
16247
|
+
*
|
|
16248
|
+
* @generated from message norsk.api.media.MediaStoreAssetFileWithHash
|
|
16249
|
+
*/
|
|
16250
|
+
export declare class MediaStoreAssetFileWithHash extends Message<MediaStoreAssetFileWithHash> {
|
|
16251
|
+
/**
|
|
16252
|
+
* @generated from field: string file = 1;
|
|
16253
|
+
*/
|
|
16254
|
+
file: string;
|
|
16255
|
+
/**
|
|
16256
|
+
* @generated from field: string hash = 2;
|
|
16257
|
+
*/
|
|
16258
|
+
hash: string;
|
|
16259
|
+
/**
|
|
16260
|
+
* @generated from field: bool error_on_hash_mismatch = 3;
|
|
16261
|
+
*/
|
|
16262
|
+
errorOnHashMismatch: boolean;
|
|
16263
|
+
constructor(data?: PartialMessage<MediaStoreAssetFileWithHash>);
|
|
16264
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16265
|
+
static readonly typeName = "norsk.api.media.MediaStoreAssetFileWithHash";
|
|
16266
|
+
static readonly fields: FieldList;
|
|
16267
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreAssetFileWithHash;
|
|
16268
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreAssetFileWithHash;
|
|
16269
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreAssetFileWithHash;
|
|
16270
|
+
static equals(a: MediaStoreAssetFileWithHash | PlainMessage<MediaStoreAssetFileWithHash> | undefined, b: MediaStoreAssetFileWithHash | PlainMessage<MediaStoreAssetFileWithHash> | undefined): boolean;
|
|
16271
|
+
}
|
|
16272
|
+
/**
|
|
16273
|
+
* As above, but calculate the hash (sha256sum)
|
|
16274
|
+
*
|
|
16275
|
+
* @generated from message norsk.api.media.MediaStoreAssetFile
|
|
16276
|
+
*/
|
|
16277
|
+
export declare class MediaStoreAssetFile extends Message<MediaStoreAssetFile> {
|
|
16278
|
+
/**
|
|
16279
|
+
* @generated from field: string file = 1;
|
|
16280
|
+
*/
|
|
16281
|
+
file: string;
|
|
16282
|
+
/**
|
|
16283
|
+
* @generated from field: bool error_on_hash_mismatch = 2;
|
|
16284
|
+
*/
|
|
16285
|
+
errorOnHashMismatch: boolean;
|
|
16286
|
+
constructor(data?: PartialMessage<MediaStoreAssetFile>);
|
|
16287
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16288
|
+
static readonly typeName = "norsk.api.media.MediaStoreAssetFile";
|
|
16289
|
+
static readonly fields: FieldList;
|
|
16290
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreAssetFile;
|
|
16291
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreAssetFile;
|
|
16292
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreAssetFile;
|
|
16293
|
+
static equals(a: MediaStoreAssetFile | PlainMessage<MediaStoreAssetFile> | undefined, b: MediaStoreAssetFile | PlainMessage<MediaStoreAssetFile> | undefined): boolean;
|
|
16294
|
+
}
|
|
16295
|
+
/**
|
|
16296
|
+
* @generated from message norsk.api.media.MediaStoreAssetSource
|
|
16297
|
+
*/
|
|
16298
|
+
export declare class MediaStoreAssetSource extends Message<MediaStoreAssetSource> {
|
|
16299
|
+
/**
|
|
16300
|
+
* @generated from oneof norsk.api.media.MediaStoreAssetSource.message
|
|
16301
|
+
*/
|
|
16302
|
+
message: {
|
|
16303
|
+
/**
|
|
16304
|
+
* Load a pre-existing asset - check there's a hash but that's all
|
|
16305
|
+
*
|
|
16306
|
+
* @generated from field: google.protobuf.Empty no_load = 1;
|
|
16307
|
+
*/
|
|
16308
|
+
value: Empty;
|
|
16309
|
+
case: "noLoad";
|
|
16310
|
+
} | {
|
|
16311
|
+
/**
|
|
16312
|
+
* @generated from field: norsk.api.media.MediaStoreAssetFileWithHash file_with_hash = 2;
|
|
16313
|
+
*/
|
|
16314
|
+
value: MediaStoreAssetFileWithHash;
|
|
16315
|
+
case: "fileWithHash";
|
|
16316
|
+
} | {
|
|
16317
|
+
/**
|
|
16318
|
+
* @generated from field: norsk.api.media.MediaStoreAssetFile file = 3;
|
|
16319
|
+
*/
|
|
16320
|
+
value: MediaStoreAssetFile;
|
|
16321
|
+
case: "file";
|
|
16322
|
+
} | {
|
|
16323
|
+
case: undefined;
|
|
16324
|
+
value?: undefined;
|
|
16325
|
+
};
|
|
16326
|
+
constructor(data?: PartialMessage<MediaStoreAssetSource>);
|
|
16327
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16328
|
+
static readonly typeName = "norsk.api.media.MediaStoreAssetSource";
|
|
16329
|
+
static readonly fields: FieldList;
|
|
16330
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MediaStoreAssetSource;
|
|
16331
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MediaStoreAssetSource;
|
|
16332
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MediaStoreAssetSource;
|
|
16333
|
+
static equals(a: MediaStoreAssetSource | PlainMessage<MediaStoreAssetSource> | undefined, b: MediaStoreAssetSource | PlainMessage<MediaStoreAssetSource> | undefined): boolean;
|
|
16334
|
+
}
|
|
16034
16335
|
/**
|
|
16035
16336
|
* @generated from message norsk.api.media.MediaStoreAssetSettings
|
|
16036
16337
|
*/
|
|
@@ -16040,9 +16341,9 @@ export declare class MediaStoreAssetSettings extends Message<MediaStoreAssetSett
|
|
|
16040
16341
|
*/
|
|
16041
16342
|
mediaStoreName: string;
|
|
16042
16343
|
/**
|
|
16043
|
-
* @generated from field:
|
|
16344
|
+
* @generated from field: norsk.api.media.MediaStoreAssetSource asset_source = 2;
|
|
16044
16345
|
*/
|
|
16045
|
-
|
|
16346
|
+
assetSource?: MediaStoreAssetSource;
|
|
16046
16347
|
/**
|
|
16047
16348
|
* @generated from field: string path = 3;
|
|
16048
16349
|
*/
|
|
@@ -16128,6 +16429,12 @@ export declare class MediaStoreCutEvent extends Message<MediaStoreCutEvent> {
|
|
|
16128
16429
|
*/
|
|
16129
16430
|
value: MediaStoreCutComplete;
|
|
16130
16431
|
case: "cutComplete";
|
|
16432
|
+
} | {
|
|
16433
|
+
/**
|
|
16434
|
+
* @generated from field: google.protobuf.Empty cut_cancelled = 3;
|
|
16435
|
+
*/
|
|
16436
|
+
value: Empty;
|
|
16437
|
+
case: "cutCancelled";
|
|
16131
16438
|
} | {
|
|
16132
16439
|
case: undefined;
|
|
16133
16440
|
value?: undefined;
|