@norskvideo/norsk-api 1.0.390 → 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.d.ts
CHANGED
|
@@ -17789,6 +17789,18 @@ export declare class MoqOutputConfiguration extends Message<MoqOutputConfigurati
|
|
|
17789
17789
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
17790
17790
|
*/
|
|
17791
17791
|
id?: MediaNodeId;
|
|
17792
|
+
/**
|
|
17793
|
+
* @generated from field: string namespace = 2;
|
|
17794
|
+
*/
|
|
17795
|
+
namespace: string;
|
|
17796
|
+
/**
|
|
17797
|
+
* @generated from field: string url = 3;
|
|
17798
|
+
*/
|
|
17799
|
+
url: string;
|
|
17800
|
+
/**
|
|
17801
|
+
* @generated from field: bool disableTlsVerify = 4;
|
|
17802
|
+
*/
|
|
17803
|
+
disableTlsVerify: boolean;
|
|
17792
17804
|
constructor(data?: PartialMessage<MoqOutputConfiguration>);
|
|
17793
17805
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
17794
17806
|
static readonly typeName = "norsk.api.media.MoqOutputConfiguration";
|
package/lib/media_pb.js
CHANGED
|
@@ -19883,6 +19883,18 @@ MediaStorePlayerEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
19883
19883
|
class MoqOutputConfiguration extends protobuf_1.Message {
|
|
19884
19884
|
constructor(data) {
|
|
19885
19885
|
super();
|
|
19886
|
+
/**
|
|
19887
|
+
* @generated from field: string namespace = 2;
|
|
19888
|
+
*/
|
|
19889
|
+
this.namespace = "";
|
|
19890
|
+
/**
|
|
19891
|
+
* @generated from field: string url = 3;
|
|
19892
|
+
*/
|
|
19893
|
+
this.url = "";
|
|
19894
|
+
/**
|
|
19895
|
+
* @generated from field: bool disableTlsVerify = 4;
|
|
19896
|
+
*/
|
|
19897
|
+
this.disableTlsVerify = false;
|
|
19886
19898
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
19887
19899
|
}
|
|
19888
19900
|
static fromBinary(bytes, options) {
|
|
@@ -19903,6 +19915,9 @@ MoqOutputConfiguration.runtime = protobuf_1.proto3;
|
|
|
19903
19915
|
MoqOutputConfiguration.typeName = "norsk.api.media.MoqOutputConfiguration";
|
|
19904
19916
|
MoqOutputConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
19905
19917
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
19918
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
19919
|
+
{ no: 3, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
19920
|
+
{ no: 4, name: "disableTlsVerify", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
19906
19921
|
]);
|
|
19907
19922
|
/**
|
|
19908
19923
|
* @generated from message norsk.api.media.MoqOutputMessage
|