@norskvideo/norsk-api 1.0.389 → 1.0.391
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 +12 -0
- package/lib/media_pb.js +15 -0
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +18 -0
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -29240,6 +29240,21 @@ export class MoqOutputConfiguration extends Message<MoqOutputConfiguration> {
|
|
|
29240
29240
|
*/
|
|
29241
29241
|
id?: MediaNodeId;
|
|
29242
29242
|
|
|
29243
|
+
/**
|
|
29244
|
+
* @generated from field: string namespace = 2;
|
|
29245
|
+
*/
|
|
29246
|
+
namespace = "";
|
|
29247
|
+
|
|
29248
|
+
/**
|
|
29249
|
+
* @generated from field: string url = 3;
|
|
29250
|
+
*/
|
|
29251
|
+
url = "";
|
|
29252
|
+
|
|
29253
|
+
/**
|
|
29254
|
+
* @generated from field: bool disableTlsVerify = 4;
|
|
29255
|
+
*/
|
|
29256
|
+
disableTlsVerify = false;
|
|
29257
|
+
|
|
29243
29258
|
constructor(data?: PartialMessage<MoqOutputConfiguration>) {
|
|
29244
29259
|
super();
|
|
29245
29260
|
proto3.util.initPartial(data, this);
|
|
@@ -29249,6 +29264,9 @@ export class MoqOutputConfiguration extends Message<MoqOutputConfiguration> {
|
|
|
29249
29264
|
static readonly typeName = "norsk.api.media.MoqOutputConfiguration";
|
|
29250
29265
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
29251
29266
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
29267
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
29268
|
+
{ no: 3, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
29269
|
+
{ no: 4, name: "disableTlsVerify", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
29252
29270
|
]);
|
|
29253
29271
|
|
|
29254
29272
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqOutputConfiguration {
|