@norskvideo/norsk-api 1.0.402-2026-01-14-bf6be668 → 1.0.402-2026-01-16-61d8a916
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 +117 -52
- package/lib/media_pb.js +154 -46
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +201 -70
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -1433,13 +1433,13 @@ export declare enum GeminiInfo {
|
|
|
1433
1433
|
*/
|
|
1434
1434
|
CONNECTED = 0,
|
|
1435
1435
|
/**
|
|
1436
|
-
* @generated from enum value:
|
|
1436
|
+
* @generated from enum value: SETUP_COMPLETED = 1;
|
|
1437
1437
|
*/
|
|
1438
|
-
|
|
1438
|
+
SETUP_COMPLETED = 1,
|
|
1439
1439
|
/**
|
|
1440
|
-
* @generated from enum value:
|
|
1440
|
+
* @generated from enum value: TURN_COMPLETE = 2;
|
|
1441
1441
|
*/
|
|
1442
|
-
|
|
1442
|
+
TURN_COMPLETE = 2
|
|
1443
1443
|
}
|
|
1444
1444
|
/**
|
|
1445
1445
|
* @generated from enum norsk.api.media.VideoConnection
|
|
@@ -12967,6 +12967,14 @@ export declare class FileMp4OutputConfiguration extends Message<FileMp4OutputCon
|
|
|
12967
12967
|
* @generated from field: bool enable_incremental_mp4_write = 8;
|
|
12968
12968
|
*/
|
|
12969
12969
|
enableIncrementalMp4Write: boolean;
|
|
12970
|
+
/**
|
|
12971
|
+
* @generated from field: uint32 expected_max_file_duration_s = 9;
|
|
12972
|
+
*/
|
|
12973
|
+
expectedMaxFileDurationS: number;
|
|
12974
|
+
/**
|
|
12975
|
+
* @generated from field: uint32 incremental_write_interval_ms = 10;
|
|
12976
|
+
*/
|
|
12977
|
+
incrementalWriteIntervalMs: number;
|
|
12970
12978
|
constructor(data?: PartialMessage<FileMp4OutputConfiguration>);
|
|
12971
12979
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
12972
12980
|
static readonly typeName = "norsk.api.media.FileMp4OutputConfiguration";
|
|
@@ -13483,6 +13491,10 @@ export declare class X264Codec extends Message<X264Codec> {
|
|
|
13483
13491
|
* @generated from field: norsk.api.common.OptionalString extra_opts = 27;
|
|
13484
13492
|
*/
|
|
13485
13493
|
extraOpts?: OptionalString;
|
|
13494
|
+
/**
|
|
13495
|
+
* @generated from field: repeated uint32 cpu_list = 28;
|
|
13496
|
+
*/
|
|
13497
|
+
cpuList: number[];
|
|
13486
13498
|
constructor(data?: PartialMessage<X264Codec>);
|
|
13487
13499
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13488
13500
|
static readonly typeName = "norsk.api.media.X264Codec";
|
|
@@ -22703,6 +22715,12 @@ export declare class Schema extends Message<Schema> {
|
|
|
22703
22715
|
*/
|
|
22704
22716
|
value: ObjectType;
|
|
22705
22717
|
case: "objectType";
|
|
22718
|
+
} | {
|
|
22719
|
+
/**
|
|
22720
|
+
* @generated from field: norsk.api.media.EnumType enum_type = 7;
|
|
22721
|
+
*/
|
|
22722
|
+
value: EnumType;
|
|
22723
|
+
case: "enumType";
|
|
22706
22724
|
} | {
|
|
22707
22725
|
case: undefined;
|
|
22708
22726
|
value?: undefined;
|
|
@@ -22755,6 +22773,23 @@ export declare class BooleanType extends Message<BooleanType> {
|
|
|
22755
22773
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BooleanType;
|
|
22756
22774
|
static equals(a: BooleanType | PlainMessage<BooleanType> | undefined, b: BooleanType | PlainMessage<BooleanType> | undefined): boolean;
|
|
22757
22775
|
}
|
|
22776
|
+
/**
|
|
22777
|
+
* @generated from message norsk.api.media.EnumType
|
|
22778
|
+
*/
|
|
22779
|
+
export declare class EnumType extends Message<EnumType> {
|
|
22780
|
+
/**
|
|
22781
|
+
* @generated from field: repeated string values = 1;
|
|
22782
|
+
*/
|
|
22783
|
+
values: string[];
|
|
22784
|
+
constructor(data?: PartialMessage<EnumType>);
|
|
22785
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
22786
|
+
static readonly typeName = "norsk.api.media.EnumType";
|
|
22787
|
+
static readonly fields: FieldList;
|
|
22788
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumType;
|
|
22789
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumType;
|
|
22790
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumType;
|
|
22791
|
+
static equals(a: EnumType | PlainMessage<EnumType> | undefined, b: EnumType | PlainMessage<EnumType> | undefined): boolean;
|
|
22792
|
+
}
|
|
22758
22793
|
/**
|
|
22759
22794
|
* @generated from message norsk.api.media.ArrayType
|
|
22760
22795
|
*/
|
|
@@ -22850,48 +22885,48 @@ export declare class GeminiConfiguration extends Message<GeminiConfiguration> {
|
|
|
22850
22885
|
*/
|
|
22851
22886
|
id?: MediaNodeId;
|
|
22852
22887
|
/**
|
|
22853
|
-
* @generated from
|
|
22888
|
+
* @generated from oneof norsk.api.media.GeminiConfiguration.auth
|
|
22854
22889
|
*/
|
|
22855
|
-
|
|
22890
|
+
auth: {
|
|
22891
|
+
/**
|
|
22892
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.GeminiApiAuth gemini_api = 2;
|
|
22893
|
+
*/
|
|
22894
|
+
value: GeminiConfiguration_GeminiApiAuth;
|
|
22895
|
+
case: "geminiApi";
|
|
22896
|
+
} | {
|
|
22897
|
+
/**
|
|
22898
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.VertexAuth vertex = 3;
|
|
22899
|
+
*/
|
|
22900
|
+
value: GeminiConfiguration_VertexAuth;
|
|
22901
|
+
case: "vertex";
|
|
22902
|
+
} | {
|
|
22903
|
+
case: undefined;
|
|
22904
|
+
value?: undefined;
|
|
22905
|
+
};
|
|
22856
22906
|
/**
|
|
22857
|
-
* @generated from field: string model =
|
|
22907
|
+
* @generated from field: string model = 4;
|
|
22858
22908
|
*/
|
|
22859
22909
|
model: string;
|
|
22860
22910
|
/**
|
|
22861
|
-
* @generated from field: string system_instruction =
|
|
22911
|
+
* @generated from field: string system_instruction = 5;
|
|
22862
22912
|
*/
|
|
22863
22913
|
systemInstruction: string;
|
|
22864
22914
|
/**
|
|
22865
|
-
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions =
|
|
22915
|
+
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions = 6;
|
|
22866
22916
|
*/
|
|
22867
22917
|
functions: FunctionDeclaration[];
|
|
22868
22918
|
/**
|
|
22869
|
-
* @generated from field: norsk.api.media.Resolution resolution =
|
|
22919
|
+
* @generated from field: norsk.api.media.Resolution resolution = 7;
|
|
22870
22920
|
*/
|
|
22871
22921
|
resolution?: Resolution;
|
|
22872
22922
|
/**
|
|
22873
|
-
* @generated from field: norsk.api.media.FrameRate frame_rate =
|
|
22923
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 8;
|
|
22874
22924
|
*/
|
|
22875
22925
|
frameRate?: FrameRate;
|
|
22876
22926
|
/**
|
|
22877
|
-
* @generated from
|
|
22927
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.PeriodicPrompt periodic_prompt = 9;
|
|
22878
22928
|
*/
|
|
22879
|
-
|
|
22880
|
-
/**
|
|
22881
|
-
* @generated from field: google.protobuf.Empty live_api = 8;
|
|
22882
|
-
*/
|
|
22883
|
-
value: Empty;
|
|
22884
|
-
case: "liveApi";
|
|
22885
|
-
} | {
|
|
22886
|
-
/**
|
|
22887
|
-
* @generated from field: norsk.api.media.GeminiConfiguration.SingleShotApi single_shot_api = 9;
|
|
22888
|
-
*/
|
|
22889
|
-
value: GeminiConfiguration_SingleShotApi;
|
|
22890
|
-
case: "singleShotApi";
|
|
22891
|
-
} | {
|
|
22892
|
-
case: undefined;
|
|
22893
|
-
value?: undefined;
|
|
22894
|
-
};
|
|
22929
|
+
periodicPrompt?: GeminiConfiguration_PeriodicPrompt;
|
|
22895
22930
|
constructor(data?: PartialMessage<GeminiConfiguration>);
|
|
22896
22931
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
22897
22932
|
static readonly typeName = "norsk.api.media.GeminiConfiguration";
|
|
@@ -22902,25 +22937,63 @@ export declare class GeminiConfiguration extends Message<GeminiConfiguration> {
|
|
|
22902
22937
|
static equals(a: GeminiConfiguration | PlainMessage<GeminiConfiguration> | undefined, b: GeminiConfiguration | PlainMessage<GeminiConfiguration> | undefined): boolean;
|
|
22903
22938
|
}
|
|
22904
22939
|
/**
|
|
22905
|
-
* @generated from message norsk.api.media.GeminiConfiguration.
|
|
22940
|
+
* @generated from message norsk.api.media.GeminiConfiguration.GeminiApiAuth
|
|
22941
|
+
*/
|
|
22942
|
+
export declare class GeminiConfiguration_GeminiApiAuth extends Message<GeminiConfiguration_GeminiApiAuth> {
|
|
22943
|
+
/**
|
|
22944
|
+
* @generated from field: string google_api_key = 1;
|
|
22945
|
+
*/
|
|
22946
|
+
googleApiKey: string;
|
|
22947
|
+
constructor(data?: PartialMessage<GeminiConfiguration_GeminiApiAuth>);
|
|
22948
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
22949
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.GeminiApiAuth";
|
|
22950
|
+
static readonly fields: FieldList;
|
|
22951
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_GeminiApiAuth;
|
|
22952
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_GeminiApiAuth;
|
|
22953
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_GeminiApiAuth;
|
|
22954
|
+
static equals(a: GeminiConfiguration_GeminiApiAuth | PlainMessage<GeminiConfiguration_GeminiApiAuth> | undefined, b: GeminiConfiguration_GeminiApiAuth | PlainMessage<GeminiConfiguration_GeminiApiAuth> | undefined): boolean;
|
|
22955
|
+
}
|
|
22956
|
+
/**
|
|
22957
|
+
* @generated from message norsk.api.media.GeminiConfiguration.VertexAuth
|
|
22906
22958
|
*/
|
|
22907
|
-
export declare class
|
|
22959
|
+
export declare class GeminiConfiguration_VertexAuth extends Message<GeminiConfiguration_VertexAuth> {
|
|
22908
22960
|
/**
|
|
22909
|
-
* @generated from field:
|
|
22961
|
+
* @generated from field: string project = 1;
|
|
22910
22962
|
*/
|
|
22911
|
-
|
|
22963
|
+
project: string;
|
|
22912
22964
|
/**
|
|
22913
|
-
* @generated from field: string
|
|
22965
|
+
* @generated from field: string location = 2;
|
|
22966
|
+
*/
|
|
22967
|
+
location: string;
|
|
22968
|
+
constructor(data?: PartialMessage<GeminiConfiguration_VertexAuth>);
|
|
22969
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
22970
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.VertexAuth";
|
|
22971
|
+
static readonly fields: FieldList;
|
|
22972
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_VertexAuth;
|
|
22973
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_VertexAuth;
|
|
22974
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_VertexAuth;
|
|
22975
|
+
static equals(a: GeminiConfiguration_VertexAuth | PlainMessage<GeminiConfiguration_VertexAuth> | undefined, b: GeminiConfiguration_VertexAuth | PlainMessage<GeminiConfiguration_VertexAuth> | undefined): boolean;
|
|
22976
|
+
}
|
|
22977
|
+
/**
|
|
22978
|
+
* @generated from message norsk.api.media.GeminiConfiguration.PeriodicPrompt
|
|
22979
|
+
*/
|
|
22980
|
+
export declare class GeminiConfiguration_PeriodicPrompt extends Message<GeminiConfiguration_PeriodicPrompt> {
|
|
22981
|
+
/**
|
|
22982
|
+
* @generated from field: string prompt = 1;
|
|
22914
22983
|
*/
|
|
22915
22984
|
prompt: string;
|
|
22916
|
-
|
|
22985
|
+
/**
|
|
22986
|
+
* @generated from field: float interval_seconds = 2;
|
|
22987
|
+
*/
|
|
22988
|
+
intervalSeconds: number;
|
|
22989
|
+
constructor(data?: PartialMessage<GeminiConfiguration_PeriodicPrompt>);
|
|
22917
22990
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
22918
|
-
static readonly typeName = "norsk.api.media.GeminiConfiguration.
|
|
22991
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.PeriodicPrompt";
|
|
22919
22992
|
static readonly fields: FieldList;
|
|
22920
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
22921
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
22922
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
22923
|
-
static equals(a:
|
|
22993
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_PeriodicPrompt;
|
|
22994
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_PeriodicPrompt;
|
|
22995
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_PeriodicPrompt;
|
|
22996
|
+
static equals(a: GeminiConfiguration_PeriodicPrompt | PlainMessage<GeminiConfiguration_PeriodicPrompt> | undefined, b: GeminiConfiguration_PeriodicPrompt | PlainMessage<GeminiConfiguration_PeriodicPrompt> | undefined): boolean;
|
|
22924
22997
|
}
|
|
22925
22998
|
/**
|
|
22926
22999
|
* @generated from message norsk.api.media.GeminiCall
|
|
@@ -22935,11 +23008,7 @@ export declare class GeminiCall extends Message<GeminiCall> {
|
|
|
22935
23008
|
*/
|
|
22936
23009
|
name: string;
|
|
22937
23010
|
/**
|
|
22938
|
-
* @generated from field:
|
|
22939
|
-
*/
|
|
22940
|
-
frameUtc?: Timestamp;
|
|
22941
|
-
/**
|
|
22942
|
-
* @generated from field: map<string, norsk.api.error.Value> arguments = 4;
|
|
23011
|
+
* @generated from field: map<string, norsk.api.error.Value> arguments = 3;
|
|
22943
23012
|
*/
|
|
22944
23013
|
arguments: {
|
|
22945
23014
|
[key: string]: Value;
|
|
@@ -23179,16 +23248,12 @@ export declare class GeminiResponse extends Message<GeminiResponse> {
|
|
|
23179
23248
|
case: "call";
|
|
23180
23249
|
} | {
|
|
23181
23250
|
/**
|
|
23182
|
-
*
|
|
23183
|
-
|
|
23184
|
-
|
|
23185
|
-
case: "serverContent";
|
|
23186
|
-
} | {
|
|
23187
|
-
/**
|
|
23188
|
-
* @generated from field: string single_shot_context = 7;
|
|
23251
|
+
* GeminiServerContent server_content = 6;
|
|
23252
|
+
*
|
|
23253
|
+
* @generated from field: string text = 6;
|
|
23189
23254
|
*/
|
|
23190
23255
|
value: string;
|
|
23191
|
-
case: "
|
|
23256
|
+
case: "text";
|
|
23192
23257
|
} | {
|
|
23193
23258
|
case: undefined;
|
|
23194
23259
|
value?: undefined;
|
package/lib/media_pb.js
CHANGED
|
@@ -17,9 +17,9 @@ exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = exp
|
|
|
17
17
|
exports.MetricsEvent = exports.MetricsMessage = exports.MetricsConfiguration = exports.InspectSubtitlesEvent = exports.TtmlDocument = exports.TeletextTextRun_TeletextColor = exports.TeletextTextRun = exports.TeletextLine = exports.TeletextPage = exports.InspectSubtitlesChunk = exports.SubtitleFragment = exports.InspectSubtitlesMessage = exports.InspectSubtitlesConfiguration = exports.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = exports.StreamSwitchHardEvent = exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchTransitionComplete = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration_Alignment = exports.StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration = exports.StreamSwitchSmoothConfiguration = exports.SubtitleToImageEvent = exports.SubtitleToImageConfiguration = exports.SubtitleToImageMessage = exports.SubtitleConvertEvent = exports.SubtitleConvertMessage = exports.SubtitleConvertConfiguration = exports.TeletextEncodeConfiguration = exports.Cta708EncodeConfiguration = exports.Cta608EncodeConfiguration_Cta608EncodeStyle = exports.Cta608EncodeConfiguration = exports.WebVttEncodeConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = void 0;
|
|
18
18
|
exports.StreamConditionEvent = exports.StreamConditionMessage = exports.StreamConditionIdrOnly = exports.StreamConditionSpliceIn = exports.StreamConditionSpliceOut = exports.StreamConditionConfiguration = exports.VancType2AncillaryId = exports.Smpte2038Message = exports.Scte35Event = exports.AncillaryEvent = exports.MetadataMessage = exports.AncillaryMessage = exports.AncillaryConfiguration = exports.CaptionTransformEvent = exports.CaptionTransformMessage = exports.CaptionTransformTeletext_VerticalAdjust = exports.CaptionTransformTeletext = exports.CaptionTransformConfiguration = exports.SubtitleTranslateAwsEvent = exports.SubtitleTranslateAwsMessage = exports.SubtitleTranslateAwsConfiguration = exports.AudioTranscribeWhisperChunk = exports.AudioTranscribeWhisperEvent = exports.AudioTranscribeWhisperMessage = exports.AudioTranscribeWhisperVadConfiguration = exports.AudioTranscribeWhisperConfiguration_SamplingStrategy = exports.AudioTranscribeWhisperConfiguration = exports.AudioTranscribeAzureEvent = exports.AudioTranscribeAzureMessage = exports.AudioTranscribeAzureConfiguration_ProfanityOption = exports.AudioTranscribeAzureConfiguration = exports.AudioTranscribeAwsEvent = exports.AudioTranscribeAwsMessage = exports.AudioTranscribeAwsConfiguration = exports.RtpInputEvent = exports.RtpInputMessage = exports.RtpInputConfiguration = exports.RtpStream = exports.RtpHEVC = exports.RtpH264 = exports.RtpMpeg4GenericAacHbr = exports.RtpEac3 = exports.RtpLinearPcm_BitDepth = exports.RtpLinearPcm = exports.Interface_StandardInterface = exports.Interface = exports.StreamTimestampReportEvent = exports.StreamTimestampReport = exports.StreamTimestampReportMessage = exports.StreamTimestampReportConfiguration = void 0;
|
|
19
19
|
exports.MediaStoreAssetFileWithHash = exports.MediaStoreSnapshotEvent = exports.MediaStoreSnapshotMessage = exports.MediaStoreRecorderEvent = exports.MediaStoreRecorderMessage = exports.MediaStoreCutComplete = exports.Progress = exports.MediaStoreCutRequest = exports.CancelMediaStoreCut = exports.StartMediaStoreCut_SequenceHeaderHandling = exports.StartMediaStoreCut_FileFormat = exports.StartMediaStoreCut = exports.LanguageMapping = exports.SingleCut = exports.StreamSelection = exports.MediaStoreSnapshotConfiguration = exports.MediaStoreRecorderConfiguration = exports.MediaStoreExpiry = exports.MediaStoreMetadataResponse = exports.MediaStoreMetadataRequest = exports.MediaStoreSession = exports.MediaStoreStream = exports.MediaStoreStreamVersion = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = exports.Scte35GenericDescriptor = exports.Scte35SpliceDescriptor = exports.Scte35ScheduleCommandComponent = exports.Scte35ScheduleCommandMode_ScheduleComponent = exports.Scte35ScheduleCommandMode_ScheduleProgram = exports.Scte35ScheduleCommandMode = exports.Scte35ScheduleItem = exports.Scte35ScheduleCommand = exports.Scte35PrivateCommand = exports.Scte35BreakDuration = exports.Scte35SpliceTime = exports.Scte35InsertCommandComponent = exports.Scte35InsertCommandMode_InsertComponent = exports.Scte35InsertCommandMode_InsertProgram = exports.Scte35InsertCommandMode = exports.Scte35InsertCommand = exports.Scte35TimeSignalCommand = exports.Scte35SpliceCommand = exports.Scte35SpliceInfoSection = void 0;
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.SubscriptionChannelResponse = exports.SubscriptionChannelMessage = exports.NorskStatusEvent = exports.LicenseEvent = exports.Hello = exports.EmbeddedAIEvent = exports.EmbeddedAIInferenceResult = exports.EmbeddedAITensor = exports.EmbeddedAIRequest = exports.EmbeddedAIInitialConfig = exports.EmbeddedAIFloatNormalization = exports.SourceSubscriptionError_Warning = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = void 0;
|
|
20
|
+
exports.Nic = exports.NvidiaCard_DevNodes = exports.NvidiaCard_Pcie = exports.NvidiaCard_Drm = exports.NvidiaCard = exports.MA35DCard = exports.MA35DVersionInfo = exports.MA35DDeviceInfo = exports.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = exports.LogicalCpuId = exports.GeminiResponse = exports.GeminiRequest = exports.GeminiServerContent = exports.GeminiClientContent = exports.GeminiContent = exports.GeminiPart = exports.GeminiBlob = exports.GeminiCallResponse = exports.GeminiCall = exports.GeminiConfiguration_PeriodicPrompt = exports.GeminiConfiguration_VertexAuth = exports.GeminiConfiguration_GeminiApiAuth = exports.GeminiConfiguration = exports.FunctionDeclaration_Parameter = exports.FunctionDeclaration = exports.ObjectType = exports.ArrayType = exports.EnumType = exports.BooleanType = exports.NumberType = exports.StringType = exports.Schema = exports.MoqOutputEvent = exports.MoqOutputMessage = exports.MoqOutputConfiguration = exports.MediaStorePlayerEvent = exports.MediaStorePlayerMessage = exports.MediaStorePlayerConfiguration = exports.MediaStoreCutEvent = exports.MediaStoreAssetEvent = exports.MediaStoreAssetImportComplete = exports.MediaStoreAssetSettings = exports.MediaStoreAssetSource = exports.MediaStoreAssetFile = void 0;
|
|
21
|
+
exports.ST2110ReceiverDeviceEvent = exports.ST2110ReceiverDeviceMessage = exports.ST2110ReceiverDeviceCreated = exports.ST2110ReceiverDeviceInitialConfiguration = exports.ST2110ReceiverConstraints = exports.ST2110Receiver_AudioConfig = exports.ST2110Receiver_VideoConfig = exports.ST2110Receiver_AudioCaps = exports.ST2110Receiver_VideoCaps = exports.ST2110Receiver_AudioConstraintSet = exports.ST2110Receiver_VideoConstraintSet = exports.ST2110Receiver_NumberConstraint = exports.ST2110Receiver_MinMaxNumber = exports.ST2110Receiver_EnumNumber = exports.ST2110Receiver_IntConstraint = exports.ST2110Receiver_MinMaxInt = exports.ST2110Receiver_EnumInt = exports.ST2110Receiver_RatioConstraint = exports.ST2110Receiver_MinMaxRatio = exports.ST2110Receiver_EnumRatio = exports.ST2110Receiver_Ratio = exports.ST2110Receiver = exports.ST2110SenderDeviceEvent = exports.ST2110SenderDeviceMessage = exports.ST2110SenderDeviceCreated = exports.ST2110SenderDeviceInitialConfiguration = exports.ST2110SenderSource = exports.ST2110SenderFlow = exports.ST2110SenderSender_AudioSender = exports.ST2110SenderSender_VideoSender = exports.ST2110SenderSender = exports.ST2110SenderConstraints = exports.ST2110PortSettingConstraint = exports.ST2110PortSet = exports.ST2110PortMinMax = exports.ST2110IpSettingConstraint = exports.ST2110NicEvent = exports.ST2110NicConfiguration = exports.ST2110NmosNodeEvent = exports.ST2110NmosNodeConfiguration = exports.ST2110Clock_ST2110PTPClock = exports.ST2110Clock_ST2110InternalClock = exports.ST2110Clock = exports.ST2110Interface = exports.StringList = exports.Hardware = exports.Nic_PhysicalSriov = exports.Nic_NicClass = exports.Nic_LinkDown = exports.Nic_NicDriver = void 0;
|
|
22
|
+
exports.SubscriptionChannelResponse = exports.SubscriptionChannelMessage = exports.NorskStatusEvent = exports.LicenseEvent = exports.Hello = exports.EmbeddedAIEvent = exports.EmbeddedAIInferenceResult = exports.EmbeddedAITensor = exports.EmbeddedAIRequest = exports.EmbeddedAIInitialConfig = exports.EmbeddedAIFloatNormalization = exports.SourceSubscriptionError_Warning = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = exports.SubscriptionResponse = exports.Subscription = exports.SubscribeSource = void 0;
|
|
23
23
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
24
24
|
const common_pb_js_1 = require("./shared/common_pb.js");
|
|
25
25
|
const error_pb_js_1 = require("./shared/error_pb.js");
|
|
@@ -1844,19 +1844,19 @@ var GeminiInfo;
|
|
|
1844
1844
|
*/
|
|
1845
1845
|
GeminiInfo[GeminiInfo["CONNECTED"] = 0] = "CONNECTED";
|
|
1846
1846
|
/**
|
|
1847
|
-
* @generated from enum value:
|
|
1847
|
+
* @generated from enum value: SETUP_COMPLETED = 1;
|
|
1848
1848
|
*/
|
|
1849
|
-
GeminiInfo[GeminiInfo["
|
|
1849
|
+
GeminiInfo[GeminiInfo["SETUP_COMPLETED"] = 1] = "SETUP_COMPLETED";
|
|
1850
1850
|
/**
|
|
1851
|
-
* @generated from enum value:
|
|
1851
|
+
* @generated from enum value: TURN_COMPLETE = 2;
|
|
1852
1852
|
*/
|
|
1853
|
-
GeminiInfo[GeminiInfo["
|
|
1853
|
+
GeminiInfo[GeminiInfo["TURN_COMPLETE"] = 2] = "TURN_COMPLETE";
|
|
1854
1854
|
})(GeminiInfo = exports.GeminiInfo || (exports.GeminiInfo = {}));
|
|
1855
1855
|
// Retrieve enum metadata with: proto3.getEnumType(GeminiInfo)
|
|
1856
1856
|
protobuf_1.proto3.util.setEnumType(GeminiInfo, "norsk.api.media.GeminiInfo", [
|
|
1857
1857
|
{ no: 0, name: "CONNECTED" },
|
|
1858
|
-
{ no: 1, name: "
|
|
1859
|
-
{ no: 2, name: "
|
|
1858
|
+
{ no: 1, name: "SETUP_COMPLETED" },
|
|
1859
|
+
{ no: 2, name: "TURN_COMPLETE" },
|
|
1860
1860
|
]);
|
|
1861
1861
|
/**
|
|
1862
1862
|
* @generated from enum norsk.api.media.VideoConnection
|
|
@@ -14901,6 +14901,14 @@ class FileMp4OutputConfiguration extends protobuf_1.Message {
|
|
|
14901
14901
|
* @generated from field: bool enable_incremental_mp4_write = 8;
|
|
14902
14902
|
*/
|
|
14903
14903
|
this.enableIncrementalMp4Write = false;
|
|
14904
|
+
/**
|
|
14905
|
+
* @generated from field: uint32 expected_max_file_duration_s = 9;
|
|
14906
|
+
*/
|
|
14907
|
+
this.expectedMaxFileDurationS = 0;
|
|
14908
|
+
/**
|
|
14909
|
+
* @generated from field: uint32 incremental_write_interval_ms = 10;
|
|
14910
|
+
*/
|
|
14911
|
+
this.incrementalWriteIntervalMs = 0;
|
|
14904
14912
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
14905
14913
|
}
|
|
14906
14914
|
static fromBinary(bytes, options) {
|
|
@@ -14928,6 +14936,8 @@ FileMp4OutputConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
14928
14936
|
{ no: 5, name: "video_encryption", kind: "message", T: Mp4Encryption },
|
|
14929
14937
|
{ no: 6, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
14930
14938
|
{ no: 8, name: "enable_incremental_mp4_write", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
14939
|
+
{ no: 9, name: "expected_max_file_duration_s", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
14940
|
+
{ no: 10, name: "incremental_write_interval_ms", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
14931
14941
|
]);
|
|
14932
14942
|
/**
|
|
14933
14943
|
* @generated from message norsk.api.media.FileMp4OutputWriteMessage
|
|
@@ -15338,6 +15348,10 @@ class X264Codec extends protobuf_1.Message {
|
|
|
15338
15348
|
* @generated from field: norsk.api.media.X264Codec.X264NalHrd nal_hrd = 18;
|
|
15339
15349
|
*/
|
|
15340
15350
|
this.nalHrd = X264Codec_X264NalHrd.UNDEFINED;
|
|
15351
|
+
/**
|
|
15352
|
+
* @generated from field: repeated uint32 cpu_list = 28;
|
|
15353
|
+
*/
|
|
15354
|
+
this.cpuList = [];
|
|
15341
15355
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
15342
15356
|
}
|
|
15343
15357
|
static fromBinary(bytes, options) {
|
|
@@ -15380,6 +15394,7 @@ X264Codec.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
15380
15394
|
{ no: 25, name: "calculate_ssim", kind: "message", T: common_pb_js_1.OptionalBool },
|
|
15381
15395
|
{ no: 26, name: "lookahead", kind: "message", T: common_pb_js_1.OptionalInt },
|
|
15382
15396
|
{ no: 27, name: "extra_opts", kind: "message", T: common_pb_js_1.OptionalString },
|
|
15397
|
+
{ no: 28, name: "cpu_list", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
15383
15398
|
]);
|
|
15384
15399
|
/**
|
|
15385
15400
|
* @generated from enum norsk.api.media.X264Codec.X264Profile
|
|
@@ -25163,6 +25178,7 @@ Schema.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
25163
25178
|
{ no: 4, name: "boolean_type", kind: "message", T: BooleanType, oneof: "kind" },
|
|
25164
25179
|
{ no: 5, name: "array_type", kind: "message", T: ArrayType, oneof: "kind" },
|
|
25165
25180
|
{ no: 6, name: "object_type", kind: "message", T: ObjectType, oneof: "kind" },
|
|
25181
|
+
{ no: 7, name: "enum_type", kind: "message", T: EnumType, oneof: "kind" },
|
|
25166
25182
|
]);
|
|
25167
25183
|
/**
|
|
25168
25184
|
* @generated from message norsk.api.media.StringType
|
|
@@ -25239,6 +25255,37 @@ exports.BooleanType = BooleanType;
|
|
|
25239
25255
|
BooleanType.runtime = protobuf_1.proto3;
|
|
25240
25256
|
BooleanType.typeName = "norsk.api.media.BooleanType";
|
|
25241
25257
|
BooleanType.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
25258
|
+
/**
|
|
25259
|
+
* @generated from message norsk.api.media.EnumType
|
|
25260
|
+
*/
|
|
25261
|
+
class EnumType extends protobuf_1.Message {
|
|
25262
|
+
constructor(data) {
|
|
25263
|
+
super();
|
|
25264
|
+
/**
|
|
25265
|
+
* @generated from field: repeated string values = 1;
|
|
25266
|
+
*/
|
|
25267
|
+
this.values = [];
|
|
25268
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
25269
|
+
}
|
|
25270
|
+
static fromBinary(bytes, options) {
|
|
25271
|
+
return new EnumType().fromBinary(bytes, options);
|
|
25272
|
+
}
|
|
25273
|
+
static fromJson(jsonValue, options) {
|
|
25274
|
+
return new EnumType().fromJson(jsonValue, options);
|
|
25275
|
+
}
|
|
25276
|
+
static fromJsonString(jsonString, options) {
|
|
25277
|
+
return new EnumType().fromJsonString(jsonString, options);
|
|
25278
|
+
}
|
|
25279
|
+
static equals(a, b) {
|
|
25280
|
+
return protobuf_1.proto3.util.equals(EnumType, a, b);
|
|
25281
|
+
}
|
|
25282
|
+
}
|
|
25283
|
+
exports.EnumType = EnumType;
|
|
25284
|
+
EnumType.runtime = protobuf_1.proto3;
|
|
25285
|
+
EnumType.typeName = "norsk.api.media.EnumType";
|
|
25286
|
+
EnumType.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25287
|
+
{ no: 1, name: "values", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
25288
|
+
]);
|
|
25242
25289
|
/**
|
|
25243
25290
|
* @generated from message norsk.api.media.ArrayType
|
|
25244
25291
|
*/
|
|
@@ -25378,25 +25425,21 @@ class GeminiConfiguration extends protobuf_1.Message {
|
|
|
25378
25425
|
constructor(data) {
|
|
25379
25426
|
super();
|
|
25380
25427
|
/**
|
|
25381
|
-
* @generated from
|
|
25428
|
+
* @generated from oneof norsk.api.media.GeminiConfiguration.auth
|
|
25382
25429
|
*/
|
|
25383
|
-
this.
|
|
25430
|
+
this.auth = { case: undefined };
|
|
25384
25431
|
/**
|
|
25385
|
-
* @generated from field: string model =
|
|
25432
|
+
* @generated from field: string model = 4;
|
|
25386
25433
|
*/
|
|
25387
25434
|
this.model = "";
|
|
25388
25435
|
/**
|
|
25389
|
-
* @generated from field: string system_instruction =
|
|
25436
|
+
* @generated from field: string system_instruction = 5;
|
|
25390
25437
|
*/
|
|
25391
25438
|
this.systemInstruction = "";
|
|
25392
25439
|
/**
|
|
25393
|
-
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions =
|
|
25440
|
+
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions = 6;
|
|
25394
25441
|
*/
|
|
25395
25442
|
this.functions = [];
|
|
25396
|
-
/**
|
|
25397
|
-
* @generated from oneof norsk.api.media.GeminiConfiguration.apiChoice
|
|
25398
|
-
*/
|
|
25399
|
-
this.apiChoice = { case: undefined };
|
|
25400
25443
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
25401
25444
|
}
|
|
25402
25445
|
static fromBinary(bytes, options) {
|
|
@@ -25417,50 +25460,117 @@ GeminiConfiguration.runtime = protobuf_1.proto3;
|
|
|
25417
25460
|
GeminiConfiguration.typeName = "norsk.api.media.GeminiConfiguration";
|
|
25418
25461
|
GeminiConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25419
25462
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
25420
|
-
{ no: 2, name: "
|
|
25421
|
-
{ no: 3, name: "
|
|
25422
|
-
{ no: 4, name: "
|
|
25423
|
-
{ no: 5, name: "
|
|
25424
|
-
{ no: 6, name: "
|
|
25425
|
-
{ no: 7, name: "
|
|
25426
|
-
{ no: 8, name: "
|
|
25427
|
-
{ no: 9, name: "
|
|
25463
|
+
{ no: 2, name: "gemini_api", kind: "message", T: GeminiConfiguration_GeminiApiAuth, oneof: "auth" },
|
|
25464
|
+
{ no: 3, name: "vertex", kind: "message", T: GeminiConfiguration_VertexAuth, oneof: "auth" },
|
|
25465
|
+
{ no: 4, name: "model", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25466
|
+
{ no: 5, name: "system_instruction", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25467
|
+
{ no: 6, name: "functions", kind: "message", T: FunctionDeclaration, repeated: true },
|
|
25468
|
+
{ no: 7, name: "resolution", kind: "message", T: Resolution },
|
|
25469
|
+
{ no: 8, name: "frame_rate", kind: "message", T: FrameRate },
|
|
25470
|
+
{ no: 9, name: "periodic_prompt", kind: "message", T: GeminiConfiguration_PeriodicPrompt },
|
|
25428
25471
|
]);
|
|
25429
25472
|
/**
|
|
25430
|
-
* @generated from message norsk.api.media.GeminiConfiguration.
|
|
25473
|
+
* @generated from message norsk.api.media.GeminiConfiguration.GeminiApiAuth
|
|
25431
25474
|
*/
|
|
25432
|
-
class
|
|
25475
|
+
class GeminiConfiguration_GeminiApiAuth extends protobuf_1.Message {
|
|
25433
25476
|
constructor(data) {
|
|
25434
25477
|
super();
|
|
25435
25478
|
/**
|
|
25436
|
-
* @generated from field:
|
|
25479
|
+
* @generated from field: string google_api_key = 1;
|
|
25437
25480
|
*/
|
|
25438
|
-
this.
|
|
25481
|
+
this.googleApiKey = "";
|
|
25482
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
25483
|
+
}
|
|
25484
|
+
static fromBinary(bytes, options) {
|
|
25485
|
+
return new GeminiConfiguration_GeminiApiAuth().fromBinary(bytes, options);
|
|
25486
|
+
}
|
|
25487
|
+
static fromJson(jsonValue, options) {
|
|
25488
|
+
return new GeminiConfiguration_GeminiApiAuth().fromJson(jsonValue, options);
|
|
25489
|
+
}
|
|
25490
|
+
static fromJsonString(jsonString, options) {
|
|
25491
|
+
return new GeminiConfiguration_GeminiApiAuth().fromJsonString(jsonString, options);
|
|
25492
|
+
}
|
|
25493
|
+
static equals(a, b) {
|
|
25494
|
+
return protobuf_1.proto3.util.equals(GeminiConfiguration_GeminiApiAuth, a, b);
|
|
25495
|
+
}
|
|
25496
|
+
}
|
|
25497
|
+
exports.GeminiConfiguration_GeminiApiAuth = GeminiConfiguration_GeminiApiAuth;
|
|
25498
|
+
GeminiConfiguration_GeminiApiAuth.runtime = protobuf_1.proto3;
|
|
25499
|
+
GeminiConfiguration_GeminiApiAuth.typeName = "norsk.api.media.GeminiConfiguration.GeminiApiAuth";
|
|
25500
|
+
GeminiConfiguration_GeminiApiAuth.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25501
|
+
{ no: 1, name: "google_api_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25502
|
+
]);
|
|
25503
|
+
/**
|
|
25504
|
+
* @generated from message norsk.api.media.GeminiConfiguration.VertexAuth
|
|
25505
|
+
*/
|
|
25506
|
+
class GeminiConfiguration_VertexAuth extends protobuf_1.Message {
|
|
25507
|
+
constructor(data) {
|
|
25508
|
+
super();
|
|
25439
25509
|
/**
|
|
25440
|
-
* @generated from field: string
|
|
25510
|
+
* @generated from field: string project = 1;
|
|
25511
|
+
*/
|
|
25512
|
+
this.project = "";
|
|
25513
|
+
/**
|
|
25514
|
+
* @generated from field: string location = 2;
|
|
25515
|
+
*/
|
|
25516
|
+
this.location = "";
|
|
25517
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
25518
|
+
}
|
|
25519
|
+
static fromBinary(bytes, options) {
|
|
25520
|
+
return new GeminiConfiguration_VertexAuth().fromBinary(bytes, options);
|
|
25521
|
+
}
|
|
25522
|
+
static fromJson(jsonValue, options) {
|
|
25523
|
+
return new GeminiConfiguration_VertexAuth().fromJson(jsonValue, options);
|
|
25524
|
+
}
|
|
25525
|
+
static fromJsonString(jsonString, options) {
|
|
25526
|
+
return new GeminiConfiguration_VertexAuth().fromJsonString(jsonString, options);
|
|
25527
|
+
}
|
|
25528
|
+
static equals(a, b) {
|
|
25529
|
+
return protobuf_1.proto3.util.equals(GeminiConfiguration_VertexAuth, a, b);
|
|
25530
|
+
}
|
|
25531
|
+
}
|
|
25532
|
+
exports.GeminiConfiguration_VertexAuth = GeminiConfiguration_VertexAuth;
|
|
25533
|
+
GeminiConfiguration_VertexAuth.runtime = protobuf_1.proto3;
|
|
25534
|
+
GeminiConfiguration_VertexAuth.typeName = "norsk.api.media.GeminiConfiguration.VertexAuth";
|
|
25535
|
+
GeminiConfiguration_VertexAuth.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25536
|
+
{ no: 1, name: "project", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25537
|
+
{ no: 2, name: "location", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25538
|
+
]);
|
|
25539
|
+
/**
|
|
25540
|
+
* @generated from message norsk.api.media.GeminiConfiguration.PeriodicPrompt
|
|
25541
|
+
*/
|
|
25542
|
+
class GeminiConfiguration_PeriodicPrompt extends protobuf_1.Message {
|
|
25543
|
+
constructor(data) {
|
|
25544
|
+
super();
|
|
25545
|
+
/**
|
|
25546
|
+
* @generated from field: string prompt = 1;
|
|
25441
25547
|
*/
|
|
25442
25548
|
this.prompt = "";
|
|
25549
|
+
/**
|
|
25550
|
+
* @generated from field: float interval_seconds = 2;
|
|
25551
|
+
*/
|
|
25552
|
+
this.intervalSeconds = 0;
|
|
25443
25553
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
25444
25554
|
}
|
|
25445
25555
|
static fromBinary(bytes, options) {
|
|
25446
|
-
return new
|
|
25556
|
+
return new GeminiConfiguration_PeriodicPrompt().fromBinary(bytes, options);
|
|
25447
25557
|
}
|
|
25448
25558
|
static fromJson(jsonValue, options) {
|
|
25449
|
-
return new
|
|
25559
|
+
return new GeminiConfiguration_PeriodicPrompt().fromJson(jsonValue, options);
|
|
25450
25560
|
}
|
|
25451
25561
|
static fromJsonString(jsonString, options) {
|
|
25452
|
-
return new
|
|
25562
|
+
return new GeminiConfiguration_PeriodicPrompt().fromJsonString(jsonString, options);
|
|
25453
25563
|
}
|
|
25454
25564
|
static equals(a, b) {
|
|
25455
|
-
return protobuf_1.proto3.util.equals(
|
|
25565
|
+
return protobuf_1.proto3.util.equals(GeminiConfiguration_PeriodicPrompt, a, b);
|
|
25456
25566
|
}
|
|
25457
25567
|
}
|
|
25458
|
-
exports.
|
|
25459
|
-
|
|
25460
|
-
|
|
25461
|
-
|
|
25462
|
-
{ no: 1, name: "
|
|
25463
|
-
{ no: 2, name: "
|
|
25568
|
+
exports.GeminiConfiguration_PeriodicPrompt = GeminiConfiguration_PeriodicPrompt;
|
|
25569
|
+
GeminiConfiguration_PeriodicPrompt.runtime = protobuf_1.proto3;
|
|
25570
|
+
GeminiConfiguration_PeriodicPrompt.typeName = "norsk.api.media.GeminiConfiguration.PeriodicPrompt";
|
|
25571
|
+
GeminiConfiguration_PeriodicPrompt.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25572
|
+
{ no: 1, name: "prompt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25573
|
+
{ no: 2, name: "interval_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
25464
25574
|
]);
|
|
25465
25575
|
/**
|
|
25466
25576
|
* @generated from message norsk.api.media.GeminiCall
|
|
@@ -25477,7 +25587,7 @@ class GeminiCall extends protobuf_1.Message {
|
|
|
25477
25587
|
*/
|
|
25478
25588
|
this.name = "";
|
|
25479
25589
|
/**
|
|
25480
|
-
* @generated from field: map<string, norsk.api.error.Value> arguments =
|
|
25590
|
+
* @generated from field: map<string, norsk.api.error.Value> arguments = 3;
|
|
25481
25591
|
*/
|
|
25482
25592
|
this.arguments = {};
|
|
25483
25593
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
@@ -25501,8 +25611,7 @@ GeminiCall.typeName = "norsk.api.media.GeminiCall";
|
|
|
25501
25611
|
GeminiCall.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
25502
25612
|
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25503
25613
|
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
25504
|
-
{ no: 3, name: "
|
|
25505
|
-
{ no: 4, name: "arguments", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: error_pb_js_1.Value } },
|
|
25614
|
+
{ no: 3, name: "arguments", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: error_pb_js_1.Value } },
|
|
25506
25615
|
]);
|
|
25507
25616
|
/**
|
|
25508
25617
|
* @generated from message norsk.api.media.GeminiCallResponse
|
|
@@ -25785,8 +25894,7 @@ GeminiResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
25785
25894
|
{ no: 3, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
25786
25895
|
{ no: 4, name: "info", kind: "enum", T: protobuf_1.proto3.getEnumType(GeminiInfo), oneof: "message" },
|
|
25787
25896
|
{ no: 5, name: "call", kind: "message", T: GeminiCall, oneof: "message" },
|
|
25788
|
-
{ no: 6, name: "
|
|
25789
|
-
{ no: 7, name: "single_shot_context", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "message" },
|
|
25897
|
+
{ no: 6, name: "text", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "message" },
|
|
25790
25898
|
]);
|
|
25791
25899
|
/**
|
|
25792
25900
|
* ////////////////////////////////////////////////////////////////////////////
|