@norskvideo/norsk-api 1.0.384 → 1.0.385
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/media_pb.d.ts +23 -2
- package/lib/media_pb.js +38 -2
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +46 -3
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -29262,6 +29262,49 @@ export class Hello extends Message<Hello> {
|
|
|
29262
29262
|
}
|
|
29263
29263
|
}
|
|
29264
29264
|
|
|
29265
|
+
/**
|
|
29266
|
+
* @generated from message norsk.api.media.LicenseEvent
|
|
29267
|
+
*/
|
|
29268
|
+
export class LicenseEvent extends Message<LicenseEvent> {
|
|
29269
|
+
/**
|
|
29270
|
+
* @generated from field: bool running = 1;
|
|
29271
|
+
*/
|
|
29272
|
+
running = false;
|
|
29273
|
+
|
|
29274
|
+
/**
|
|
29275
|
+
* @generated from field: string message = 2;
|
|
29276
|
+
*/
|
|
29277
|
+
message = "";
|
|
29278
|
+
|
|
29279
|
+
constructor(data?: PartialMessage<LicenseEvent>) {
|
|
29280
|
+
super();
|
|
29281
|
+
proto3.util.initPartial(data, this);
|
|
29282
|
+
}
|
|
29283
|
+
|
|
29284
|
+
static readonly runtime = proto3;
|
|
29285
|
+
static readonly typeName = "norsk.api.media.LicenseEvent";
|
|
29286
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
29287
|
+
{ no: 1, name: "running", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
29288
|
+
{ no: 2, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
29289
|
+
]);
|
|
29290
|
+
|
|
29291
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LicenseEvent {
|
|
29292
|
+
return new LicenseEvent().fromBinary(bytes, options);
|
|
29293
|
+
}
|
|
29294
|
+
|
|
29295
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LicenseEvent {
|
|
29296
|
+
return new LicenseEvent().fromJson(jsonValue, options);
|
|
29297
|
+
}
|
|
29298
|
+
|
|
29299
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LicenseEvent {
|
|
29300
|
+
return new LicenseEvent().fromJsonString(jsonString, options);
|
|
29301
|
+
}
|
|
29302
|
+
|
|
29303
|
+
static equals(a: LicenseEvent | PlainMessage<LicenseEvent> | undefined, b: LicenseEvent | PlainMessage<LicenseEvent> | undefined): boolean {
|
|
29304
|
+
return proto3.util.equals(LicenseEvent, a, b);
|
|
29305
|
+
}
|
|
29306
|
+
}
|
|
29307
|
+
|
|
29265
29308
|
/**
|
|
29266
29309
|
* @generated from message norsk.api.media.NorskStatusEvent
|
|
29267
29310
|
*/
|
|
@@ -29283,9 +29326,9 @@ export class NorskStatusEvent extends Message<NorskStatusEvent> {
|
|
|
29283
29326
|
case: "currentLoad";
|
|
29284
29327
|
} | {
|
|
29285
29328
|
/**
|
|
29286
|
-
* @generated from field:
|
|
29329
|
+
* @generated from field: norsk.api.media.LicenseEvent license_event = 3;
|
|
29287
29330
|
*/
|
|
29288
|
-
value:
|
|
29331
|
+
value: LicenseEvent;
|
|
29289
29332
|
case: "licenseEvent";
|
|
29290
29333
|
} | {
|
|
29291
29334
|
/**
|
|
@@ -29311,7 +29354,7 @@ export class NorskStatusEvent extends Message<NorskStatusEvent> {
|
|
|
29311
29354
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
29312
29355
|
{ no: 1, name: "hello", kind: "message", T: Hello, oneof: "message" },
|
|
29313
29356
|
{ no: 2, name: "current_load", kind: "message", T: CurrentLoad, oneof: "message" },
|
|
29314
|
-
{ no: 3, name: "license_event", kind: "
|
|
29357
|
+
{ no: 3, name: "license_event", kind: "message", T: LicenseEvent, oneof: "message" },
|
|
29315
29358
|
{ no: 4, name: "log_event", kind: "message", T: Log, oneof: "message" },
|
|
29316
29359
|
{ no: 5, name: "ma35d_load", kind: "message", T: AmdMA35DLoad, oneof: "message" },
|
|
29317
29360
|
]);
|