@norskvideo/norsk-api 1.0.358 → 1.0.359
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/manager_grpc_pb.d.ts +0 -17
- package/lib/manager_grpc_pb.js +0 -11
- package/lib/manager_pb.d.ts +0 -19
- package/lib/manager_pb.js +2 -28
- package/lib/manager_pb.js.map +1 -1
- package/lib/manager_pb.ts +0 -38
- package/lib/media_grpc_pb.d.ts +16 -0
- package/lib/media_grpc_pb.js +42 -0
- package/lib/media_pb.d.ts +155 -12
- package/lib/media_pb.js +176 -19
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +243 -16
- package/lib/shared/common_pb.d.ts +14 -14
- package/lib/shared/common_pb.js +26 -26
- package/lib/shared/common_pb.js.map +1 -1
- package/lib/shared/common_pb.ts +22 -22
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -2852,6 +2852,11 @@ export enum ValidationResponse_ContextValidationResponse {
|
|
|
2852
2852
|
* @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
|
|
2853
2853
|
*/
|
|
2854
2854
|
CONTEXT_VALIDATION_DENY_AND_QUEUE = 3,
|
|
2855
|
+
|
|
2856
|
+
/**
|
|
2857
|
+
* @generated from enum value: CONTEXT_VALIDATION_DENY_AND_DROP = 4;
|
|
2858
|
+
*/
|
|
2859
|
+
CONTEXT_VALIDATION_DENY_AND_DROP = 4,
|
|
2855
2860
|
}
|
|
2856
2861
|
// Retrieve enum metadata with: proto3.getEnumType(ValidationResponse_ContextValidationResponse)
|
|
2857
2862
|
proto3.util.setEnumType(ValidationResponse_ContextValidationResponse, "norsk.api.media.ValidationResponse.ContextValidationResponse", [
|
|
@@ -2859,6 +2864,7 @@ proto3.util.setEnumType(ValidationResponse_ContextValidationResponse, "norsk.api
|
|
|
2859
2864
|
{ no: 1, name: "CONTEXT_VALIDATION_ALLOW" },
|
|
2860
2865
|
{ no: 2, name: "CONTEXT_VALIDATION_ALLOW_AND_TERMINATE" },
|
|
2861
2866
|
{ no: 3, name: "CONTEXT_VALIDATION_DENY_AND_QUEUE" },
|
|
2867
|
+
{ no: 4, name: "CONTEXT_VALIDATION_DENY_AND_DROP" },
|
|
2862
2868
|
]);
|
|
2863
2869
|
|
|
2864
2870
|
/**
|
|
@@ -6409,6 +6415,174 @@ export class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
|
|
|
6409
6415
|
}
|
|
6410
6416
|
}
|
|
6411
6417
|
|
|
6418
|
+
/**
|
|
6419
|
+
* @generated from message norsk.api.media.DeltacastInputConfiguration
|
|
6420
|
+
*/
|
|
6421
|
+
export class DeltacastInputConfiguration extends Message<DeltacastInputConfiguration> {
|
|
6422
|
+
/**
|
|
6423
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6424
|
+
*/
|
|
6425
|
+
id?: MediaNodeId;
|
|
6426
|
+
|
|
6427
|
+
/**
|
|
6428
|
+
* @generated from field: string source_name = 2;
|
|
6429
|
+
*/
|
|
6430
|
+
sourceName = "";
|
|
6431
|
+
|
|
6432
|
+
/**
|
|
6433
|
+
* @generated from field: uint32 device_id = 3;
|
|
6434
|
+
*/
|
|
6435
|
+
deviceId = 0;
|
|
6436
|
+
|
|
6437
|
+
/**
|
|
6438
|
+
* @generated from field: uint32 card_index = 4;
|
|
6439
|
+
*/
|
|
6440
|
+
cardIndex = 0;
|
|
6441
|
+
|
|
6442
|
+
/**
|
|
6443
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
6444
|
+
*/
|
|
6445
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6446
|
+
|
|
6447
|
+
constructor(data?: PartialMessage<DeltacastInputConfiguration>) {
|
|
6448
|
+
super();
|
|
6449
|
+
proto3.util.initPartial(data, this);
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
static readonly runtime = proto3;
|
|
6453
|
+
static readonly typeName = "norsk.api.media.DeltacastInputConfiguration";
|
|
6454
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
6455
|
+
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
6456
|
+
{ no: 2, name: "source_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6457
|
+
{ no: 3, name: "device_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
6458
|
+
{ no: 4, name: "card_index", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
6459
|
+
{ no: 5, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
6460
|
+
]);
|
|
6461
|
+
|
|
6462
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputConfiguration {
|
|
6463
|
+
return new DeltacastInputConfiguration().fromBinary(bytes, options);
|
|
6464
|
+
}
|
|
6465
|
+
|
|
6466
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration {
|
|
6467
|
+
return new DeltacastInputConfiguration().fromJson(jsonValue, options);
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration {
|
|
6471
|
+
return new DeltacastInputConfiguration().fromJsonString(jsonString, options);
|
|
6472
|
+
}
|
|
6473
|
+
|
|
6474
|
+
static equals(a: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined, b: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined): boolean {
|
|
6475
|
+
return proto3.util.equals(DeltacastInputConfiguration, a, b);
|
|
6476
|
+
}
|
|
6477
|
+
}
|
|
6478
|
+
|
|
6479
|
+
/**
|
|
6480
|
+
* @generated from message norsk.api.media.DeltacastInputMessage
|
|
6481
|
+
*/
|
|
6482
|
+
export class DeltacastInputMessage extends Message<DeltacastInputMessage> {
|
|
6483
|
+
/**
|
|
6484
|
+
* @generated from oneof norsk.api.media.DeltacastInputMessage.message
|
|
6485
|
+
*/
|
|
6486
|
+
message: {
|
|
6487
|
+
/**
|
|
6488
|
+
* @generated from field: norsk.api.media.DeltacastInputConfiguration initial_config = 1;
|
|
6489
|
+
*/
|
|
6490
|
+
value: DeltacastInputConfiguration;
|
|
6491
|
+
case: "initialConfig";
|
|
6492
|
+
} | {
|
|
6493
|
+
/**
|
|
6494
|
+
* @generated from field: norsk.api.media.TimestampNudge nudge = 2;
|
|
6495
|
+
*/
|
|
6496
|
+
value: TimestampNudge;
|
|
6497
|
+
case: "nudge";
|
|
6498
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
6499
|
+
|
|
6500
|
+
constructor(data?: PartialMessage<DeltacastInputMessage>) {
|
|
6501
|
+
super();
|
|
6502
|
+
proto3.util.initPartial(data, this);
|
|
6503
|
+
}
|
|
6504
|
+
|
|
6505
|
+
static readonly runtime = proto3;
|
|
6506
|
+
static readonly typeName = "norsk.api.media.DeltacastInputMessage";
|
|
6507
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
6508
|
+
{ no: 1, name: "initial_config", kind: "message", T: DeltacastInputConfiguration, oneof: "message" },
|
|
6509
|
+
{ no: 2, name: "nudge", kind: "message", T: TimestampNudge, oneof: "message" },
|
|
6510
|
+
]);
|
|
6511
|
+
|
|
6512
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputMessage {
|
|
6513
|
+
return new DeltacastInputMessage().fromBinary(bytes, options);
|
|
6514
|
+
}
|
|
6515
|
+
|
|
6516
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputMessage {
|
|
6517
|
+
return new DeltacastInputMessage().fromJson(jsonValue, options);
|
|
6518
|
+
}
|
|
6519
|
+
|
|
6520
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputMessage {
|
|
6521
|
+
return new DeltacastInputMessage().fromJsonString(jsonString, options);
|
|
6522
|
+
}
|
|
6523
|
+
|
|
6524
|
+
static equals(a: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined, b: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined): boolean {
|
|
6525
|
+
return proto3.util.equals(DeltacastInputMessage, a, b);
|
|
6526
|
+
}
|
|
6527
|
+
}
|
|
6528
|
+
|
|
6529
|
+
/**
|
|
6530
|
+
* @generated from message norsk.api.media.DeltacastInputEvent
|
|
6531
|
+
*/
|
|
6532
|
+
export class DeltacastInputEvent extends Message<DeltacastInputEvent> {
|
|
6533
|
+
/**
|
|
6534
|
+
* @generated from oneof norsk.api.media.DeltacastInputEvent.message
|
|
6535
|
+
*/
|
|
6536
|
+
message: {
|
|
6537
|
+
/**
|
|
6538
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
6539
|
+
*/
|
|
6540
|
+
value: MediaNodeId;
|
|
6541
|
+
case: "nodeId";
|
|
6542
|
+
} | {
|
|
6543
|
+
/**
|
|
6544
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
6545
|
+
*/
|
|
6546
|
+
value: Context;
|
|
6547
|
+
case: "outboundContext";
|
|
6548
|
+
} | {
|
|
6549
|
+
/**
|
|
6550
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
6551
|
+
*/
|
|
6552
|
+
value: MultiStreamStatistics;
|
|
6553
|
+
case: "streamStatistics";
|
|
6554
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
6555
|
+
|
|
6556
|
+
constructor(data?: PartialMessage<DeltacastInputEvent>) {
|
|
6557
|
+
super();
|
|
6558
|
+
proto3.util.initPartial(data, this);
|
|
6559
|
+
}
|
|
6560
|
+
|
|
6561
|
+
static readonly runtime = proto3;
|
|
6562
|
+
static readonly typeName = "norsk.api.media.DeltacastInputEvent";
|
|
6563
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
6564
|
+
{ no: 1, name: "node_id", kind: "message", T: MediaNodeId, oneof: "message" },
|
|
6565
|
+
{ no: 2, name: "outbound_context", kind: "message", T: Context, oneof: "message" },
|
|
6566
|
+
{ no: 3, name: "stream_statistics", kind: "message", T: MultiStreamStatistics, oneof: "message" },
|
|
6567
|
+
]);
|
|
6568
|
+
|
|
6569
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputEvent {
|
|
6570
|
+
return new DeltacastInputEvent().fromBinary(bytes, options);
|
|
6571
|
+
}
|
|
6572
|
+
|
|
6573
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputEvent {
|
|
6574
|
+
return new DeltacastInputEvent().fromJson(jsonValue, options);
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6577
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputEvent {
|
|
6578
|
+
return new DeltacastInputEvent().fromJsonString(jsonString, options);
|
|
6579
|
+
}
|
|
6580
|
+
|
|
6581
|
+
static equals(a: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined, b: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined): boolean {
|
|
6582
|
+
return proto3.util.equals(DeltacastInputEvent, a, b);
|
|
6583
|
+
}
|
|
6584
|
+
}
|
|
6585
|
+
|
|
6412
6586
|
/**
|
|
6413
6587
|
* @generated from message norsk.api.media.FileImageInputConfiguration
|
|
6414
6588
|
*/
|
|
@@ -6438,6 +6612,11 @@ export class FileImageInputConfiguration extends Message<FileImageInputConfigura
|
|
|
6438
6612
|
*/
|
|
6439
6613
|
statsSampling?: StreamStatisticsSampling;
|
|
6440
6614
|
|
|
6615
|
+
/**
|
|
6616
|
+
* @generated from field: norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration hardware_acceleration = 6;
|
|
6617
|
+
*/
|
|
6618
|
+
hardwareAcceleration = FileImageInputConfiguration_FileImageHardwareAcceleration.FILEIMAGE_NONE;
|
|
6619
|
+
|
|
6441
6620
|
constructor(data?: PartialMessage<FileImageInputConfiguration>) {
|
|
6442
6621
|
super();
|
|
6443
6622
|
proto3.util.initPartial(data, this);
|
|
@@ -6451,6 +6630,7 @@ export class FileImageInputConfiguration extends Message<FileImageInputConfigura
|
|
|
6451
6630
|
{ no: 3, name: "file_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6452
6631
|
{ no: 4, name: "image_format", kind: "enum", T: proto3.getEnumType(FileImageInputConfiguration_ImageFormat) },
|
|
6453
6632
|
{ no: 5, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
6633
|
+
{ no: 6, name: "hardware_acceleration", kind: "enum", T: proto3.getEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration) },
|
|
6454
6634
|
]);
|
|
6455
6635
|
|
|
6456
6636
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileImageInputConfiguration {
|
|
@@ -6470,6 +6650,26 @@ export class FileImageInputConfiguration extends Message<FileImageInputConfigura
|
|
|
6470
6650
|
}
|
|
6471
6651
|
}
|
|
6472
6652
|
|
|
6653
|
+
/**
|
|
6654
|
+
* @generated from enum norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration
|
|
6655
|
+
*/
|
|
6656
|
+
export enum FileImageInputConfiguration_FileImageHardwareAcceleration {
|
|
6657
|
+
/**
|
|
6658
|
+
* @generated from enum value: FILEIMAGE_NONE = 0;
|
|
6659
|
+
*/
|
|
6660
|
+
FILEIMAGE_NONE = 0,
|
|
6661
|
+
|
|
6662
|
+
/**
|
|
6663
|
+
* @generated from enum value: FILEIMAGE_QUADRA = 1;
|
|
6664
|
+
*/
|
|
6665
|
+
FILEIMAGE_QUADRA = 1,
|
|
6666
|
+
}
|
|
6667
|
+
// Retrieve enum metadata with: proto3.getEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration)
|
|
6668
|
+
proto3.util.setEnumType(FileImageInputConfiguration_FileImageHardwareAcceleration, "norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration", [
|
|
6669
|
+
{ no: 0, name: "FILEIMAGE_NONE" },
|
|
6670
|
+
{ no: 1, name: "FILEIMAGE_QUADRA" },
|
|
6671
|
+
]);
|
|
6672
|
+
|
|
6473
6673
|
/**
|
|
6474
6674
|
* @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
|
|
6475
6675
|
*/
|
|
@@ -13339,6 +13539,12 @@ export class WhepOutputEvent extends Message<WhepOutputEvent> {
|
|
|
13339
13539
|
*/
|
|
13340
13540
|
value: MultiStreamStatistics;
|
|
13341
13541
|
case: "streamStatistics";
|
|
13542
|
+
} | {
|
|
13543
|
+
/**
|
|
13544
|
+
* @generated from field: norsk.api.media.WhepOutputEvent.State status = 5;
|
|
13545
|
+
*/
|
|
13546
|
+
value: WhepOutputEvent_State;
|
|
13547
|
+
case: "status";
|
|
13342
13548
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
13343
13549
|
|
|
13344
13550
|
constructor(data?: PartialMessage<WhepOutputEvent>) {
|
|
@@ -13353,6 +13559,7 @@ export class WhepOutputEvent extends Message<WhepOutputEvent> {
|
|
|
13353
13559
|
{ no: 2, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
|
|
13354
13560
|
{ no: 3, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
13355
13561
|
{ no: 4, name: "stream_statistics", kind: "message", T: MultiStreamStatistics, oneof: "message" },
|
|
13562
|
+
{ no: 5, name: "status", kind: "enum", T: proto3.getEnumType(WhepOutputEvent_State), oneof: "message" },
|
|
13356
13563
|
]);
|
|
13357
13564
|
|
|
13358
13565
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputEvent {
|
|
@@ -13372,6 +13579,26 @@ export class WhepOutputEvent extends Message<WhepOutputEvent> {
|
|
|
13372
13579
|
}
|
|
13373
13580
|
}
|
|
13374
13581
|
|
|
13582
|
+
/**
|
|
13583
|
+
* @generated from enum norsk.api.media.WhepOutputEvent.State
|
|
13584
|
+
*/
|
|
13585
|
+
export enum WhepOutputEvent_State {
|
|
13586
|
+
/**
|
|
13587
|
+
* @generated from enum value: WHEP_OUTPUT_STATUS_UNKNOWN = 0;
|
|
13588
|
+
*/
|
|
13589
|
+
WHEP_OUTPUT_STATUS_UNKNOWN = 0,
|
|
13590
|
+
|
|
13591
|
+
/**
|
|
13592
|
+
* @generated from enum value: WHEP_OUTPUT_STATUS_READY = 1;
|
|
13593
|
+
*/
|
|
13594
|
+
WHEP_OUTPUT_STATUS_READY = 1,
|
|
13595
|
+
}
|
|
13596
|
+
// Retrieve enum metadata with: proto3.getEnumType(WhepOutputEvent_State)
|
|
13597
|
+
proto3.util.setEnumType(WhepOutputEvent_State, "norsk.api.media.WhepOutputEvent.State", [
|
|
13598
|
+
{ no: 0, name: "WHEP_OUTPUT_STATUS_UNKNOWN" },
|
|
13599
|
+
{ no: 1, name: "WHEP_OUTPUT_STATUS_READY" },
|
|
13600
|
+
]);
|
|
13601
|
+
|
|
13375
13602
|
/**
|
|
13376
13603
|
* @generated from message norsk.api.media.RtmpOutputConfiguration
|
|
13377
13604
|
*/
|
|
@@ -17169,10 +17396,10 @@ export class AmdMA35DEncodeCommon extends Message<AmdMA35DEncodeCommon> {
|
|
|
17169
17396
|
case: "constrainedVbr";
|
|
17170
17397
|
} | {
|
|
17171
17398
|
/**
|
|
17172
|
-
* @generated from field: norsk.api.media.AmdMA35DEncodeCommon.
|
|
17399
|
+
* @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive content_adaptive = 5;
|
|
17173
17400
|
*/
|
|
17174
|
-
value:
|
|
17175
|
-
case: "
|
|
17401
|
+
value: AmdMA35DEncodeCommon_ContentAdaptive;
|
|
17402
|
+
case: "contentAdaptive";
|
|
17176
17403
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
17177
17404
|
|
|
17178
17405
|
/**
|
|
@@ -17272,7 +17499,7 @@ export class AmdMA35DEncodeCommon extends Message<AmdMA35DEncodeCommon> {
|
|
|
17272
17499
|
{ no: 2, name: "cbr", kind: "message", T: AmdMA35DEncodeCommon_CBR, oneof: "rateControl" },
|
|
17273
17500
|
{ no: 3, name: "vbr", kind: "message", T: AmdMA35DEncodeCommon_VBR, oneof: "rateControl" },
|
|
17274
17501
|
{ no: 4, name: "constrained_vbr", kind: "message", T: AmdMA35DEncodeCommon_ConstrainedVBR, oneof: "rateControl" },
|
|
17275
|
-
{ no: 5, name: "
|
|
17502
|
+
{ no: 5, name: "content_adaptive", kind: "message", T: AmdMA35DEncodeCommon_ContentAdaptive, oneof: "rateControl" },
|
|
17276
17503
|
{ no: 6, name: "lookahead_depth", kind: "message", T: OptionalInt },
|
|
17277
17504
|
{ no: 7, name: "gopSize", kind: "message", T: OptionalInt },
|
|
17278
17505
|
{ no: 8, name: "tempAqGain", kind: "message", T: OptionalInt },
|
|
@@ -17592,9 +17819,9 @@ export class AmdMA35DEncodeCommon_ConstrainedVBR extends Message<AmdMA35DEncodeC
|
|
|
17592
17819
|
}
|
|
17593
17820
|
|
|
17594
17821
|
/**
|
|
17595
|
-
* @generated from message norsk.api.media.AmdMA35DEncodeCommon.
|
|
17822
|
+
* @generated from message norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive
|
|
17596
17823
|
*/
|
|
17597
|
-
export class
|
|
17824
|
+
export class AmdMA35DEncodeCommon_ContentAdaptive extends Message<AmdMA35DEncodeCommon_ContentAdaptive> {
|
|
17598
17825
|
/**
|
|
17599
17826
|
* @generated from field: uint32 bitrate = 1;
|
|
17600
17827
|
*/
|
|
@@ -17610,33 +17837,33 @@ export class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35DEncodeC
|
|
|
17610
17837
|
*/
|
|
17611
17838
|
bufSize = 0;
|
|
17612
17839
|
|
|
17613
|
-
constructor(data?: PartialMessage<
|
|
17840
|
+
constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ContentAdaptive>) {
|
|
17614
17841
|
super();
|
|
17615
17842
|
proto3.util.initPartial(data, this);
|
|
17616
17843
|
}
|
|
17617
17844
|
|
|
17618
17845
|
static readonly runtime = proto3;
|
|
17619
|
-
static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.
|
|
17846
|
+
static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive";
|
|
17620
17847
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
17621
17848
|
{ no: 1, name: "bitrate", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
17622
17849
|
{ no: 2, name: "max_bitrate", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
17623
17850
|
{ no: 3, name: "buf_size", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
17624
17851
|
]);
|
|
17625
17852
|
|
|
17626
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
17627
|
-
return new
|
|
17853
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive {
|
|
17854
|
+
return new AmdMA35DEncodeCommon_ContentAdaptive().fromBinary(bytes, options);
|
|
17628
17855
|
}
|
|
17629
17856
|
|
|
17630
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
17631
|
-
return new
|
|
17857
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive {
|
|
17858
|
+
return new AmdMA35DEncodeCommon_ContentAdaptive().fromJson(jsonValue, options);
|
|
17632
17859
|
}
|
|
17633
17860
|
|
|
17634
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
17635
|
-
return new
|
|
17861
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive {
|
|
17862
|
+
return new AmdMA35DEncodeCommon_ContentAdaptive().fromJsonString(jsonString, options);
|
|
17636
17863
|
}
|
|
17637
17864
|
|
|
17638
|
-
static equals(a:
|
|
17639
|
-
return proto3.util.equals(
|
|
17865
|
+
static equals(a: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined, b: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined): boolean {
|
|
17866
|
+
return proto3.util.equals(AmdMA35DEncodeCommon_ContentAdaptive, a, b);
|
|
17640
17867
|
}
|
|
17641
17868
|
}
|
|
17642
17869
|
|
|
@@ -941,30 +941,30 @@ export declare class JobInfoContainerEvent extends Message<JobInfoContainerEvent
|
|
|
941
941
|
static equals(a: JobInfoContainerEvent | PlainMessage<JobInfoContainerEvent> | undefined, b: JobInfoContainerEvent | PlainMessage<JobInfoContainerEvent> | undefined): boolean;
|
|
942
942
|
}
|
|
943
943
|
/**
|
|
944
|
-
* @generated from message norsk.api.common.
|
|
944
|
+
* @generated from message norsk.api.common.JobInfoComposeMessage
|
|
945
945
|
*/
|
|
946
|
-
export declare class
|
|
946
|
+
export declare class JobInfoComposeMessage extends Message<JobInfoComposeMessage> {
|
|
947
947
|
/**
|
|
948
|
-
* @generated from field: norsk.api.common.
|
|
948
|
+
* @generated from field: norsk.api.common.JobInfoComposeMessage.Stage stage = 2;
|
|
949
949
|
*/
|
|
950
|
-
stage:
|
|
950
|
+
stage: JobInfoComposeMessage_Stage;
|
|
951
951
|
/**
|
|
952
952
|
* @generated from field: string text = 3;
|
|
953
953
|
*/
|
|
954
954
|
text: string;
|
|
955
|
-
constructor(data?: PartialMessage<
|
|
955
|
+
constructor(data?: PartialMessage<JobInfoComposeMessage>);
|
|
956
956
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
|
|
957
|
-
static readonly typeName = "norsk.api.common.
|
|
957
|
+
static readonly typeName = "norsk.api.common.JobInfoComposeMessage";
|
|
958
958
|
static readonly fields: FieldList;
|
|
959
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
960
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
961
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
962
|
-
static equals(a:
|
|
959
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoComposeMessage;
|
|
960
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoComposeMessage;
|
|
961
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoComposeMessage;
|
|
962
|
+
static equals(a: JobInfoComposeMessage | PlainMessage<JobInfoComposeMessage> | undefined, b: JobInfoComposeMessage | PlainMessage<JobInfoComposeMessage> | undefined): boolean;
|
|
963
963
|
}
|
|
964
964
|
/**
|
|
965
|
-
* @generated from enum norsk.api.common.
|
|
965
|
+
* @generated from enum norsk.api.common.JobInfoComposeMessage.Stage
|
|
966
966
|
*/
|
|
967
|
-
export declare enum
|
|
967
|
+
export declare enum JobInfoComposeMessage_Stage {
|
|
968
968
|
/**
|
|
969
969
|
* @generated from enum value: BUILD = 0;
|
|
970
970
|
*/
|
|
@@ -1021,9 +1021,9 @@ export declare class JobInfoMessage extends Message<JobInfoMessage> {
|
|
|
1021
1021
|
case: "containerEvent";
|
|
1022
1022
|
} | {
|
|
1023
1023
|
/**
|
|
1024
|
-
* @generated from field: norsk.api.common.
|
|
1024
|
+
* @generated from field: norsk.api.common.JobInfoComposeMessage compose_message = 6;
|
|
1025
1025
|
*/
|
|
1026
|
-
value:
|
|
1026
|
+
value: JobInfoComposeMessage;
|
|
1027
1027
|
case: "composeMessage";
|
|
1028
1028
|
} | {
|
|
1029
1029
|
case: undefined;
|
package/lib/shared/common_pb.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
// @ts-nocheck
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.JobInfoMessage = exports.
|
|
7
|
+
exports.JobInfoMessage = exports.JobInfoComposeMessage_Stage = exports.JobInfoComposeMessage = exports.JobInfoContainerEvent = exports.JobInfoServiceRestarting = exports.JobInfoServiceStarted = exports.Service_ServiceRestart = exports.Service = exports.ServiceParameters = exports.VolumeMount = exports.EnvironmentVariable = exports.ResolvedPortMappings = exports.ResolvedPortMapping = exports.PortMapping = exports.HostPortSpecific = exports.HostPortRange = exports.HostPortEphemeral = exports.Log_Level = exports.Log = exports.DockerContainer = exports.ContainerUrl = exports.ActiveJobKey = exports.JobId = exports.NodeId = exports.RunningNodeMetadata = exports.RunningNodeProviderMetadata = exports.RunningOciMetadata = exports.RunningAwsMetadata = exports.NodeMetadata = exports.ProviderMetadata = exports.OciMetadata = exports.AwsMetadata = exports.CurrentLoad = exports.SchedulerUtilization = exports.QuorumDefinition = exports.Version = exports.OptionalString = exports.OptionalBool = exports.OptionalInt64 = exports.OptionalInt = exports.ProtocolFamily = exports.Architecture = void 0;
|
|
8
8
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
9
|
/**
|
|
10
10
|
* @generated from enum norsk.api.common.Architecture
|
|
@@ -1404,15 +1404,15 @@ JobInfoContainerEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
1404
1404
|
{ no: 3, name: "text", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1405
1405
|
]);
|
|
1406
1406
|
/**
|
|
1407
|
-
* @generated from message norsk.api.common.
|
|
1407
|
+
* @generated from message norsk.api.common.JobInfoComposeMessage
|
|
1408
1408
|
*/
|
|
1409
|
-
class
|
|
1409
|
+
class JobInfoComposeMessage extends protobuf_1.Message {
|
|
1410
1410
|
constructor(data) {
|
|
1411
1411
|
super();
|
|
1412
1412
|
/**
|
|
1413
|
-
* @generated from field: norsk.api.common.
|
|
1413
|
+
* @generated from field: norsk.api.common.JobInfoComposeMessage.Stage stage = 2;
|
|
1414
1414
|
*/
|
|
1415
|
-
this.stage =
|
|
1415
|
+
this.stage = JobInfoComposeMessage_Stage.BUILD;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* @generated from field: string text = 3;
|
|
1418
1418
|
*/
|
|
@@ -1420,53 +1420,53 @@ class JobInfoComponseMessage extends protobuf_1.Message {
|
|
|
1420
1420
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
1421
1421
|
}
|
|
1422
1422
|
static fromBinary(bytes, options) {
|
|
1423
|
-
return new
|
|
1423
|
+
return new JobInfoComposeMessage().fromBinary(bytes, options);
|
|
1424
1424
|
}
|
|
1425
1425
|
static fromJson(jsonValue, options) {
|
|
1426
|
-
return new
|
|
1426
|
+
return new JobInfoComposeMessage().fromJson(jsonValue, options);
|
|
1427
1427
|
}
|
|
1428
1428
|
static fromJsonString(jsonString, options) {
|
|
1429
|
-
return new
|
|
1429
|
+
return new JobInfoComposeMessage().fromJsonString(jsonString, options);
|
|
1430
1430
|
}
|
|
1431
1431
|
static equals(a, b) {
|
|
1432
|
-
return protobuf_1.proto3.util.equals(
|
|
1432
|
+
return protobuf_1.proto3.util.equals(JobInfoComposeMessage, a, b);
|
|
1433
1433
|
}
|
|
1434
1434
|
}
|
|
1435
|
-
exports.
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
{ no: 2, name: "stage", kind: "enum", T: protobuf_1.proto3.getEnumType(
|
|
1435
|
+
exports.JobInfoComposeMessage = JobInfoComposeMessage;
|
|
1436
|
+
JobInfoComposeMessage.runtime = protobuf_1.proto3;
|
|
1437
|
+
JobInfoComposeMessage.typeName = "norsk.api.common.JobInfoComposeMessage";
|
|
1438
|
+
JobInfoComposeMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1439
|
+
{ no: 2, name: "stage", kind: "enum", T: protobuf_1.proto3.getEnumType(JobInfoComposeMessage_Stage) },
|
|
1440
1440
|
{ no: 3, name: "text", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1441
1441
|
]);
|
|
1442
1442
|
/**
|
|
1443
|
-
* @generated from enum norsk.api.common.
|
|
1443
|
+
* @generated from enum norsk.api.common.JobInfoComposeMessage.Stage
|
|
1444
1444
|
*/
|
|
1445
|
-
var
|
|
1446
|
-
(function (
|
|
1445
|
+
var JobInfoComposeMessage_Stage;
|
|
1446
|
+
(function (JobInfoComposeMessage_Stage) {
|
|
1447
1447
|
/**
|
|
1448
1448
|
* @generated from enum value: BUILD = 0;
|
|
1449
1449
|
*/
|
|
1450
|
-
|
|
1450
|
+
JobInfoComposeMessage_Stage[JobInfoComposeMessage_Stage["BUILD"] = 0] = "BUILD";
|
|
1451
1451
|
/**
|
|
1452
1452
|
* @generated from enum value: CREATE = 1;
|
|
1453
1453
|
*/
|
|
1454
|
-
|
|
1454
|
+
JobInfoComposeMessage_Stage[JobInfoComposeMessage_Stage["CREATE"] = 1] = "CREATE";
|
|
1455
1455
|
/**
|
|
1456
1456
|
* @generated from enum value: START = 2;
|
|
1457
1457
|
*/
|
|
1458
|
-
|
|
1458
|
+
JobInfoComposeMessage_Stage[JobInfoComposeMessage_Stage["START"] = 2] = "START";
|
|
1459
1459
|
/**
|
|
1460
1460
|
* @generated from enum value: STOP = 3;
|
|
1461
1461
|
*/
|
|
1462
|
-
|
|
1462
|
+
JobInfoComposeMessage_Stage[JobInfoComposeMessage_Stage["STOP"] = 3] = "STOP";
|
|
1463
1463
|
/**
|
|
1464
1464
|
* @generated from enum value: DOWN = 4;
|
|
1465
1465
|
*/
|
|
1466
|
-
|
|
1467
|
-
})(
|
|
1468
|
-
// Retrieve enum metadata with: proto3.getEnumType(
|
|
1469
|
-
protobuf_1.proto3.util.setEnumType(
|
|
1466
|
+
JobInfoComposeMessage_Stage[JobInfoComposeMessage_Stage["DOWN"] = 4] = "DOWN";
|
|
1467
|
+
})(JobInfoComposeMessage_Stage = exports.JobInfoComposeMessage_Stage || (exports.JobInfoComposeMessage_Stage = {}));
|
|
1468
|
+
// Retrieve enum metadata with: proto3.getEnumType(JobInfoComposeMessage_Stage)
|
|
1469
|
+
protobuf_1.proto3.util.setEnumType(JobInfoComposeMessage_Stage, "norsk.api.common.JobInfoComposeMessage.Stage", [
|
|
1470
1470
|
{ no: 0, name: "BUILD" },
|
|
1471
1471
|
{ no: 1, name: "CREATE" },
|
|
1472
1472
|
{ no: 2, name: "START" },
|
|
@@ -1507,6 +1507,6 @@ JobInfoMessage.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
1507
1507
|
{ no: 3, name: "service_started", kind: "message", T: JobInfoServiceStarted, oneof: "message" },
|
|
1508
1508
|
{ no: 4, name: "service_restarting", kind: "message", T: JobInfoServiceRestarting, oneof: "message" },
|
|
1509
1509
|
{ no: 5, name: "container_event", kind: "message", T: JobInfoContainerEvent, oneof: "message" },
|
|
1510
|
-
{ no: 6, name: "compose_message", kind: "message", T:
|
|
1510
|
+
{ no: 6, name: "compose_message", kind: "message", T: JobInfoComposeMessage, oneof: "message" },
|
|
1511
1511
|
]);
|
|
1512
1512
|
//# sourceMappingURL=common_pb.js.map
|