@norskvideo/norsk-api 1.0.402-2026-01-11-a65137ac → 1.0.402-2026-01-15-5687d367
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 +113 -52
- package/lib/media_pb.js +149 -46
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +195 -70
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -2083,20 +2083,20 @@ export enum GeminiInfo {
|
|
|
2083
2083
|
CONNECTED = 0,
|
|
2084
2084
|
|
|
2085
2085
|
/**
|
|
2086
|
-
* @generated from enum value:
|
|
2086
|
+
* @generated from enum value: SETUP_COMPLETED = 1;
|
|
2087
2087
|
*/
|
|
2088
|
-
|
|
2088
|
+
SETUP_COMPLETED = 1,
|
|
2089
2089
|
|
|
2090
2090
|
/**
|
|
2091
|
-
* @generated from enum value:
|
|
2091
|
+
* @generated from enum value: TURN_COMPLETE = 2;
|
|
2092
2092
|
*/
|
|
2093
|
-
|
|
2093
|
+
TURN_COMPLETE = 2,
|
|
2094
2094
|
}
|
|
2095
2095
|
// Retrieve enum metadata with: proto3.getEnumType(GeminiInfo)
|
|
2096
2096
|
proto3.util.setEnumType(GeminiInfo, "norsk.api.media.GeminiInfo", [
|
|
2097
2097
|
{ no: 0, name: "CONNECTED" },
|
|
2098
|
-
{ no: 1, name: "
|
|
2099
|
-
{ no: 2, name: "
|
|
2098
|
+
{ no: 1, name: "SETUP_COMPLETED" },
|
|
2099
|
+
{ no: 2, name: "TURN_COMPLETE" },
|
|
2100
2100
|
]);
|
|
2101
2101
|
|
|
2102
2102
|
/**
|
|
@@ -21331,6 +21331,16 @@ export class FileMp4OutputConfiguration extends Message<FileMp4OutputConfigurati
|
|
|
21331
21331
|
*/
|
|
21332
21332
|
enableIncrementalMp4Write = false;
|
|
21333
21333
|
|
|
21334
|
+
/**
|
|
21335
|
+
* @generated from field: uint32 expected_max_file_duration_s = 9;
|
|
21336
|
+
*/
|
|
21337
|
+
expectedMaxFileDurationS = 0;
|
|
21338
|
+
|
|
21339
|
+
/**
|
|
21340
|
+
* @generated from field: uint32 incremental_write_interval_ms = 10;
|
|
21341
|
+
*/
|
|
21342
|
+
incrementalWriteIntervalMs = 0;
|
|
21343
|
+
|
|
21334
21344
|
constructor(data?: PartialMessage<FileMp4OutputConfiguration>) {
|
|
21335
21345
|
super();
|
|
21336
21346
|
proto3.util.initPartial(data, this);
|
|
@@ -21347,6 +21357,8 @@ export class FileMp4OutputConfiguration extends Message<FileMp4OutputConfigurati
|
|
|
21347
21357
|
{ no: 5, name: "video_encryption", kind: "message", T: Mp4Encryption },
|
|
21348
21358
|
{ no: 6, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
21349
21359
|
{ no: 8, name: "enable_incremental_mp4_write", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
21360
|
+
{ no: 9, name: "expected_max_file_duration_s", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
21361
|
+
{ no: 10, name: "incremental_write_interval_ms", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
21350
21362
|
]);
|
|
21351
21363
|
|
|
21352
21364
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4OutputConfiguration {
|
|
@@ -37269,6 +37281,12 @@ export class Schema extends Message<Schema> {
|
|
|
37269
37281
|
*/
|
|
37270
37282
|
value: ObjectType;
|
|
37271
37283
|
case: "objectType";
|
|
37284
|
+
} | {
|
|
37285
|
+
/**
|
|
37286
|
+
* @generated from field: norsk.api.media.EnumType enum_type = 7;
|
|
37287
|
+
*/
|
|
37288
|
+
value: EnumType;
|
|
37289
|
+
case: "enumType";
|
|
37272
37290
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
37273
37291
|
|
|
37274
37292
|
constructor(data?: PartialMessage<Schema>) {
|
|
@@ -37285,6 +37303,7 @@ export class Schema extends Message<Schema> {
|
|
|
37285
37303
|
{ no: 4, name: "boolean_type", kind: "message", T: BooleanType, oneof: "kind" },
|
|
37286
37304
|
{ no: 5, name: "array_type", kind: "message", T: ArrayType, oneof: "kind" },
|
|
37287
37305
|
{ no: 6, name: "object_type", kind: "message", T: ObjectType, oneof: "kind" },
|
|
37306
|
+
{ no: 7, name: "enum_type", kind: "message", T: EnumType, oneof: "kind" },
|
|
37288
37307
|
]);
|
|
37289
37308
|
|
|
37290
37309
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Schema {
|
|
@@ -37397,6 +37416,43 @@ export class BooleanType extends Message<BooleanType> {
|
|
|
37397
37416
|
}
|
|
37398
37417
|
}
|
|
37399
37418
|
|
|
37419
|
+
/**
|
|
37420
|
+
* @generated from message norsk.api.media.EnumType
|
|
37421
|
+
*/
|
|
37422
|
+
export class EnumType extends Message<EnumType> {
|
|
37423
|
+
/**
|
|
37424
|
+
* @generated from field: repeated string values = 1;
|
|
37425
|
+
*/
|
|
37426
|
+
values: string[] = [];
|
|
37427
|
+
|
|
37428
|
+
constructor(data?: PartialMessage<EnumType>) {
|
|
37429
|
+
super();
|
|
37430
|
+
proto3.util.initPartial(data, this);
|
|
37431
|
+
}
|
|
37432
|
+
|
|
37433
|
+
static readonly runtime = proto3;
|
|
37434
|
+
static readonly typeName = "norsk.api.media.EnumType";
|
|
37435
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37436
|
+
{ no: 1, name: "values", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
37437
|
+
]);
|
|
37438
|
+
|
|
37439
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnumType {
|
|
37440
|
+
return new EnumType().fromBinary(bytes, options);
|
|
37441
|
+
}
|
|
37442
|
+
|
|
37443
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnumType {
|
|
37444
|
+
return new EnumType().fromJson(jsonValue, options);
|
|
37445
|
+
}
|
|
37446
|
+
|
|
37447
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnumType {
|
|
37448
|
+
return new EnumType().fromJsonString(jsonString, options);
|
|
37449
|
+
}
|
|
37450
|
+
|
|
37451
|
+
static equals(a: EnumType | PlainMessage<EnumType> | undefined, b: EnumType | PlainMessage<EnumType> | undefined): boolean {
|
|
37452
|
+
return proto3.util.equals(EnumType, a, b);
|
|
37453
|
+
}
|
|
37454
|
+
}
|
|
37455
|
+
|
|
37400
37456
|
/**
|
|
37401
37457
|
* @generated from message norsk.api.media.ArrayType
|
|
37402
37458
|
*/
|
|
@@ -37579,51 +37635,51 @@ export class GeminiConfiguration extends Message<GeminiConfiguration> {
|
|
|
37579
37635
|
id?: MediaNodeId;
|
|
37580
37636
|
|
|
37581
37637
|
/**
|
|
37582
|
-
* @generated from
|
|
37638
|
+
* @generated from oneof norsk.api.media.GeminiConfiguration.auth
|
|
37583
37639
|
*/
|
|
37584
|
-
|
|
37640
|
+
auth: {
|
|
37641
|
+
/**
|
|
37642
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.GeminiApiAuth gemini_api = 2;
|
|
37643
|
+
*/
|
|
37644
|
+
value: GeminiConfiguration_GeminiApiAuth;
|
|
37645
|
+
case: "geminiApi";
|
|
37646
|
+
} | {
|
|
37647
|
+
/**
|
|
37648
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.VertexAuth vertex = 3;
|
|
37649
|
+
*/
|
|
37650
|
+
value: GeminiConfiguration_VertexAuth;
|
|
37651
|
+
case: "vertex";
|
|
37652
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
37585
37653
|
|
|
37586
37654
|
/**
|
|
37587
|
-
* @generated from field: string model =
|
|
37655
|
+
* @generated from field: string model = 4;
|
|
37588
37656
|
*/
|
|
37589
37657
|
model = "";
|
|
37590
37658
|
|
|
37591
37659
|
/**
|
|
37592
|
-
* @generated from field: string system_instruction =
|
|
37660
|
+
* @generated from field: string system_instruction = 5;
|
|
37593
37661
|
*/
|
|
37594
37662
|
systemInstruction = "";
|
|
37595
37663
|
|
|
37596
37664
|
/**
|
|
37597
|
-
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions =
|
|
37665
|
+
* @generated from field: repeated norsk.api.media.FunctionDeclaration functions = 6;
|
|
37598
37666
|
*/
|
|
37599
37667
|
functions: FunctionDeclaration[] = [];
|
|
37600
37668
|
|
|
37601
37669
|
/**
|
|
37602
|
-
* @generated from field: norsk.api.media.Resolution resolution =
|
|
37670
|
+
* @generated from field: norsk.api.media.Resolution resolution = 7;
|
|
37603
37671
|
*/
|
|
37604
37672
|
resolution?: Resolution;
|
|
37605
37673
|
|
|
37606
37674
|
/**
|
|
37607
|
-
* @generated from field: norsk.api.media.FrameRate frame_rate =
|
|
37675
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 8;
|
|
37608
37676
|
*/
|
|
37609
37677
|
frameRate?: FrameRate;
|
|
37610
37678
|
|
|
37611
37679
|
/**
|
|
37612
|
-
* @generated from
|
|
37680
|
+
* @generated from field: norsk.api.media.GeminiConfiguration.PeriodicPrompt periodic_prompt = 9;
|
|
37613
37681
|
*/
|
|
37614
|
-
|
|
37615
|
-
/**
|
|
37616
|
-
* @generated from field: google.protobuf.Empty live_api = 8;
|
|
37617
|
-
*/
|
|
37618
|
-
value: Empty;
|
|
37619
|
-
case: "liveApi";
|
|
37620
|
-
} | {
|
|
37621
|
-
/**
|
|
37622
|
-
* @generated from field: norsk.api.media.GeminiConfiguration.SingleShotApi single_shot_api = 9;
|
|
37623
|
-
*/
|
|
37624
|
-
value: GeminiConfiguration_SingleShotApi;
|
|
37625
|
-
case: "singleShotApi";
|
|
37626
|
-
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
37682
|
+
periodicPrompt?: GeminiConfiguration_PeriodicPrompt;
|
|
37627
37683
|
|
|
37628
37684
|
constructor(data?: PartialMessage<GeminiConfiguration>) {
|
|
37629
37685
|
super();
|
|
@@ -37634,14 +37690,14 @@ export class GeminiConfiguration extends Message<GeminiConfiguration> {
|
|
|
37634
37690
|
static readonly typeName = "norsk.api.media.GeminiConfiguration";
|
|
37635
37691
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37636
37692
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
37637
|
-
{ no: 2, name: "
|
|
37638
|
-
{ no: 3, name: "
|
|
37639
|
-
{ no: 4, name: "
|
|
37640
|
-
{ no: 5, name: "
|
|
37641
|
-
{ no: 6, name: "
|
|
37642
|
-
{ no: 7, name: "
|
|
37643
|
-
{ no: 8, name: "
|
|
37644
|
-
{ no: 9, name: "
|
|
37693
|
+
{ no: 2, name: "gemini_api", kind: "message", T: GeminiConfiguration_GeminiApiAuth, oneof: "auth" },
|
|
37694
|
+
{ no: 3, name: "vertex", kind: "message", T: GeminiConfiguration_VertexAuth, oneof: "auth" },
|
|
37695
|
+
{ no: 4, name: "model", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37696
|
+
{ no: 5, name: "system_instruction", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37697
|
+
{ no: 6, name: "functions", kind: "message", T: FunctionDeclaration, repeated: true },
|
|
37698
|
+
{ no: 7, name: "resolution", kind: "message", T: Resolution },
|
|
37699
|
+
{ no: 8, name: "frame_rate", kind: "message", T: FrameRate },
|
|
37700
|
+
{ no: 9, name: "periodic_prompt", kind: "message", T: GeminiConfiguration_PeriodicPrompt },
|
|
37645
37701
|
]);
|
|
37646
37702
|
|
|
37647
37703
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration {
|
|
@@ -37662,45 +37718,125 @@ export class GeminiConfiguration extends Message<GeminiConfiguration> {
|
|
|
37662
37718
|
}
|
|
37663
37719
|
|
|
37664
37720
|
/**
|
|
37665
|
-
* @generated from message norsk.api.media.GeminiConfiguration.
|
|
37721
|
+
* @generated from message norsk.api.media.GeminiConfiguration.GeminiApiAuth
|
|
37722
|
+
*/
|
|
37723
|
+
export class GeminiConfiguration_GeminiApiAuth extends Message<GeminiConfiguration_GeminiApiAuth> {
|
|
37724
|
+
/**
|
|
37725
|
+
* @generated from field: string google_api_key = 1;
|
|
37726
|
+
*/
|
|
37727
|
+
googleApiKey = "";
|
|
37728
|
+
|
|
37729
|
+
constructor(data?: PartialMessage<GeminiConfiguration_GeminiApiAuth>) {
|
|
37730
|
+
super();
|
|
37731
|
+
proto3.util.initPartial(data, this);
|
|
37732
|
+
}
|
|
37733
|
+
|
|
37734
|
+
static readonly runtime = proto3;
|
|
37735
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.GeminiApiAuth";
|
|
37736
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37737
|
+
{ no: 1, name: "google_api_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37738
|
+
]);
|
|
37739
|
+
|
|
37740
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_GeminiApiAuth {
|
|
37741
|
+
return new GeminiConfiguration_GeminiApiAuth().fromBinary(bytes, options);
|
|
37742
|
+
}
|
|
37743
|
+
|
|
37744
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_GeminiApiAuth {
|
|
37745
|
+
return new GeminiConfiguration_GeminiApiAuth().fromJson(jsonValue, options);
|
|
37746
|
+
}
|
|
37747
|
+
|
|
37748
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_GeminiApiAuth {
|
|
37749
|
+
return new GeminiConfiguration_GeminiApiAuth().fromJsonString(jsonString, options);
|
|
37750
|
+
}
|
|
37751
|
+
|
|
37752
|
+
static equals(a: GeminiConfiguration_GeminiApiAuth | PlainMessage<GeminiConfiguration_GeminiApiAuth> | undefined, b: GeminiConfiguration_GeminiApiAuth | PlainMessage<GeminiConfiguration_GeminiApiAuth> | undefined): boolean {
|
|
37753
|
+
return proto3.util.equals(GeminiConfiguration_GeminiApiAuth, a, b);
|
|
37754
|
+
}
|
|
37755
|
+
}
|
|
37756
|
+
|
|
37757
|
+
/**
|
|
37758
|
+
* @generated from message norsk.api.media.GeminiConfiguration.VertexAuth
|
|
37666
37759
|
*/
|
|
37667
|
-
export class
|
|
37760
|
+
export class GeminiConfiguration_VertexAuth extends Message<GeminiConfiguration_VertexAuth> {
|
|
37668
37761
|
/**
|
|
37669
|
-
* @generated from field:
|
|
37762
|
+
* @generated from field: string project = 1;
|
|
37670
37763
|
*/
|
|
37671
|
-
|
|
37764
|
+
project = "";
|
|
37672
37765
|
|
|
37673
37766
|
/**
|
|
37674
|
-
* @generated from field: string
|
|
37767
|
+
* @generated from field: string location = 2;
|
|
37768
|
+
*/
|
|
37769
|
+
location = "";
|
|
37770
|
+
|
|
37771
|
+
constructor(data?: PartialMessage<GeminiConfiguration_VertexAuth>) {
|
|
37772
|
+
super();
|
|
37773
|
+
proto3.util.initPartial(data, this);
|
|
37774
|
+
}
|
|
37775
|
+
|
|
37776
|
+
static readonly runtime = proto3;
|
|
37777
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.VertexAuth";
|
|
37778
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37779
|
+
{ no: 1, name: "project", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37780
|
+
{ no: 2, name: "location", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37781
|
+
]);
|
|
37782
|
+
|
|
37783
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_VertexAuth {
|
|
37784
|
+
return new GeminiConfiguration_VertexAuth().fromBinary(bytes, options);
|
|
37785
|
+
}
|
|
37786
|
+
|
|
37787
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_VertexAuth {
|
|
37788
|
+
return new GeminiConfiguration_VertexAuth().fromJson(jsonValue, options);
|
|
37789
|
+
}
|
|
37790
|
+
|
|
37791
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_VertexAuth {
|
|
37792
|
+
return new GeminiConfiguration_VertexAuth().fromJsonString(jsonString, options);
|
|
37793
|
+
}
|
|
37794
|
+
|
|
37795
|
+
static equals(a: GeminiConfiguration_VertexAuth | PlainMessage<GeminiConfiguration_VertexAuth> | undefined, b: GeminiConfiguration_VertexAuth | PlainMessage<GeminiConfiguration_VertexAuth> | undefined): boolean {
|
|
37796
|
+
return proto3.util.equals(GeminiConfiguration_VertexAuth, a, b);
|
|
37797
|
+
}
|
|
37798
|
+
}
|
|
37799
|
+
|
|
37800
|
+
/**
|
|
37801
|
+
* @generated from message norsk.api.media.GeminiConfiguration.PeriodicPrompt
|
|
37802
|
+
*/
|
|
37803
|
+
export class GeminiConfiguration_PeriodicPrompt extends Message<GeminiConfiguration_PeriodicPrompt> {
|
|
37804
|
+
/**
|
|
37805
|
+
* @generated from field: string prompt = 1;
|
|
37675
37806
|
*/
|
|
37676
37807
|
prompt = "";
|
|
37677
37808
|
|
|
37678
|
-
|
|
37809
|
+
/**
|
|
37810
|
+
* @generated from field: float interval_seconds = 2;
|
|
37811
|
+
*/
|
|
37812
|
+
intervalSeconds = 0;
|
|
37813
|
+
|
|
37814
|
+
constructor(data?: PartialMessage<GeminiConfiguration_PeriodicPrompt>) {
|
|
37679
37815
|
super();
|
|
37680
37816
|
proto3.util.initPartial(data, this);
|
|
37681
37817
|
}
|
|
37682
37818
|
|
|
37683
37819
|
static readonly runtime = proto3;
|
|
37684
|
-
static readonly typeName = "norsk.api.media.GeminiConfiguration.
|
|
37820
|
+
static readonly typeName = "norsk.api.media.GeminiConfiguration.PeriodicPrompt";
|
|
37685
37821
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37686
|
-
{ no: 1, name: "
|
|
37687
|
-
{ no: 2, name: "
|
|
37822
|
+
{ no: 1, name: "prompt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37823
|
+
{ no: 2, name: "interval_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
37688
37824
|
]);
|
|
37689
37825
|
|
|
37690
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
37691
|
-
return new
|
|
37826
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiConfiguration_PeriodicPrompt {
|
|
37827
|
+
return new GeminiConfiguration_PeriodicPrompt().fromBinary(bytes, options);
|
|
37692
37828
|
}
|
|
37693
37829
|
|
|
37694
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
37695
|
-
return new
|
|
37830
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeminiConfiguration_PeriodicPrompt {
|
|
37831
|
+
return new GeminiConfiguration_PeriodicPrompt().fromJson(jsonValue, options);
|
|
37696
37832
|
}
|
|
37697
37833
|
|
|
37698
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
37699
|
-
return new
|
|
37834
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeminiConfiguration_PeriodicPrompt {
|
|
37835
|
+
return new GeminiConfiguration_PeriodicPrompt().fromJsonString(jsonString, options);
|
|
37700
37836
|
}
|
|
37701
37837
|
|
|
37702
|
-
static equals(a:
|
|
37703
|
-
return proto3.util.equals(
|
|
37838
|
+
static equals(a: GeminiConfiguration_PeriodicPrompt | PlainMessage<GeminiConfiguration_PeriodicPrompt> | undefined, b: GeminiConfiguration_PeriodicPrompt | PlainMessage<GeminiConfiguration_PeriodicPrompt> | undefined): boolean {
|
|
37839
|
+
return proto3.util.equals(GeminiConfiguration_PeriodicPrompt, a, b);
|
|
37704
37840
|
}
|
|
37705
37841
|
}
|
|
37706
37842
|
|
|
@@ -37719,12 +37855,7 @@ export class GeminiCall extends Message<GeminiCall> {
|
|
|
37719
37855
|
name = "";
|
|
37720
37856
|
|
|
37721
37857
|
/**
|
|
37722
|
-
* @generated from field:
|
|
37723
|
-
*/
|
|
37724
|
-
frameUtc?: Timestamp;
|
|
37725
|
-
|
|
37726
|
-
/**
|
|
37727
|
-
* @generated from field: map<string, norsk.api.error.Value> arguments = 4;
|
|
37858
|
+
* @generated from field: map<string, norsk.api.error.Value> arguments = 3;
|
|
37728
37859
|
*/
|
|
37729
37860
|
arguments: { [key: string]: Value } = {};
|
|
37730
37861
|
|
|
@@ -37738,8 +37869,7 @@ export class GeminiCall extends Message<GeminiCall> {
|
|
|
37738
37869
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
37739
37870
|
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37740
37871
|
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
37741
|
-
{ no: 3, name: "
|
|
37742
|
-
{ no: 4, name: "arguments", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "message", T: Value} },
|
|
37872
|
+
{ no: 3, name: "arguments", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "message", T: Value} },
|
|
37743
37873
|
]);
|
|
37744
37874
|
|
|
37745
37875
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiCall {
|
|
@@ -38133,16 +38263,12 @@ export class GeminiResponse extends Message<GeminiResponse> {
|
|
|
38133
38263
|
case: "call";
|
|
38134
38264
|
} | {
|
|
38135
38265
|
/**
|
|
38136
|
-
*
|
|
38137
|
-
|
|
38138
|
-
|
|
38139
|
-
case: "serverContent";
|
|
38140
|
-
} | {
|
|
38141
|
-
/**
|
|
38142
|
-
* @generated from field: string single_shot_context = 7;
|
|
38266
|
+
* GeminiServerContent server_content = 6;
|
|
38267
|
+
*
|
|
38268
|
+
* @generated from field: string text = 6;
|
|
38143
38269
|
*/
|
|
38144
38270
|
value: string;
|
|
38145
|
-
case: "
|
|
38271
|
+
case: "text";
|
|
38146
38272
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
38147
38273
|
|
|
38148
38274
|
constructor(data?: PartialMessage<GeminiResponse>) {
|
|
@@ -38158,8 +38284,7 @@ export class GeminiResponse extends Message<GeminiResponse> {
|
|
|
38158
38284
|
{ no: 3, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
38159
38285
|
{ no: 4, name: "info", kind: "enum", T: proto3.getEnumType(GeminiInfo), oneof: "message" },
|
|
38160
38286
|
{ no: 5, name: "call", kind: "message", T: GeminiCall, oneof: "message" },
|
|
38161
|
-
{ no: 6, name: "
|
|
38162
|
-
{ no: 7, name: "single_shot_context", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "message" },
|
|
38287
|
+
{ no: 6, name: "text", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "message" },
|
|
38163
38288
|
]);
|
|
38164
38289
|
|
|
38165
38290
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeminiResponse {
|