@zilliz/milvus2-sdk-node 2.6.13 → 3.0.0
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/README.md +36 -6
- package/dist/milvus/HttpClient.d.ts +2 -2
- package/dist/milvus/MilvusClient.d.ts +28 -1
- package/dist/milvus/MilvusClient.js +61 -1
- package/dist/milvus/MilvusClient.js.map +1 -1
- package/dist/milvus/bulkwriter/VolumeManager.d.ts +27 -0
- package/dist/milvus/bulkwriter/VolumeManager.js +151 -0
- package/dist/milvus/bulkwriter/VolumeManager.js.map +1 -0
- package/dist/milvus/bulkwriter/index.d.ts +1 -0
- package/dist/milvus/bulkwriter/index.js +3 -1
- package/dist/milvus/bulkwriter/index.js.map +1 -1
- package/dist/milvus/const/defaults.d.ts +1 -0
- package/dist/milvus/const/defaults.js +2 -1
- package/dist/milvus/const/defaults.js.map +1 -1
- package/dist/milvus/const/error.d.ts +2 -0
- package/dist/milvus/const/error.js +2 -0
- package/dist/milvus/const/error.js.map +1 -1
- package/dist/milvus/const/milvus.d.ts +13 -0
- package/dist/milvus/const/milvus.js +18 -1
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/Collection.d.ts +142 -1
- package/dist/milvus/grpc/Collection.js +268 -7
- package/dist/milvus/grpc/Collection.js.map +1 -1
- package/dist/milvus/grpc/Data.d.ts +7 -1
- package/dist/milvus/grpc/Data.js +123 -45
- package/dist/milvus/grpc/Data.js.map +1 -1
- package/dist/milvus/grpc/Database.d.ts +12 -4
- package/dist/milvus/grpc/Database.js +13 -4
- package/dist/milvus/grpc/Database.js.map +1 -1
- package/dist/milvus/grpc/GrpcClient.js +1 -0
- package/dist/milvus/grpc/GrpcClient.js.map +1 -1
- package/dist/milvus/grpc/Resource.d.ts +24 -1
- package/dist/milvus/grpc/Resource.js +45 -0
- package/dist/milvus/grpc/Resource.js.map +1 -1
- package/dist/milvus/http/Import.d.ts +3 -3
- package/dist/milvus/http/Import.js.map +1 -1
- package/dist/milvus/proto-json/milvus.base.d.ts +2150 -154
- package/dist/milvus/proto-json/milvus.base.js +2279 -165
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +2204 -208
- package/dist/milvus/proto-json/milvus.js +2332 -218
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +1066 -53
- package/dist/milvus/proto-json/schema.base.js +1186 -64
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Client.d.ts +1 -0
- package/dist/milvus/types/Collection.d.ts +121 -0
- package/dist/milvus/types/Collection.js +16 -0
- package/dist/milvus/types/Collection.js.map +1 -1
- package/dist/milvus/types/Common.d.ts +7 -0
- package/dist/milvus/types/Data.d.ts +12 -1
- package/dist/milvus/types/Database.d.ts +2 -0
- package/dist/milvus/types/Http.d.ts +10 -2
- package/dist/milvus/types/Insert.d.ts +8 -1
- package/dist/milvus/types/Insert.js.map +1 -1
- package/dist/milvus/types/Resource.d.ts +27 -0
- package/dist/milvus/types/Search.d.ts +32 -22
- package/dist/milvus/types/Search.js.map +1 -1
- package/dist/milvus/types/Volume.d.ts +37 -0
- package/dist/milvus/types/Volume.js +9 -0
- package/dist/milvus/types/Volume.js.map +1 -0
- package/dist/milvus/types/index.d.ts +1 -0
- package/dist/milvus/types/index.js +1 -0
- package/dist/milvus/types/index.js.map +1 -1
- package/dist/milvus/types.d.ts +1 -0
- package/dist/milvus/types.js +1 -0
- package/dist/milvus/types.js.map +1 -1
- package/dist/milvus/utils/Bytes.d.ts +2 -2
- package/dist/milvus/utils/Bytes.js +9 -2
- package/dist/milvus/utils/Bytes.js.map +1 -1
- package/dist/milvus/utils/Data.js +43 -6
- package/dist/milvus/utils/Data.js.map +1 -1
- package/dist/milvus/utils/Format.d.ts +2 -1
- package/dist/milvus/utils/Format.js +28 -1
- package/dist/milvus/utils/Format.js.map +1 -1
- package/dist/milvus/utils/Schema.js +21 -6
- package/dist/milvus/utils/Schema.js.map +1 -1
- package/dist/milvus/utils/Search.js +94 -13
- package/dist/milvus/utils/Search.js.map +1 -1
- package/dist/milvus/utils/Validate.d.ts +3 -0
- package/dist/milvus/utils/Validate.js +9 -2
- package/dist/milvus/utils/Validate.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +8 -3
|
@@ -31,6 +31,7 @@ declare const _default: {
|
|
|
31
31
|
Geometry: number;
|
|
32
32
|
Text: number;
|
|
33
33
|
Timestamptz: number;
|
|
34
|
+
Mol: number;
|
|
34
35
|
BinaryVector: number;
|
|
35
36
|
FloatVector: number;
|
|
36
37
|
Float16Vector: number;
|
|
@@ -48,6 +49,8 @@ declare const _default: {
|
|
|
48
49
|
BM25: number;
|
|
49
50
|
TextEmbedding: number;
|
|
50
51
|
Rerank: number;
|
|
52
|
+
MinHash: number;
|
|
53
|
+
MolFingerprint: number;
|
|
51
54
|
};
|
|
52
55
|
};
|
|
53
56
|
FieldState: {
|
|
@@ -126,6 +129,10 @@ declare const _default: {
|
|
|
126
129
|
type: string;
|
|
127
130
|
id: number;
|
|
128
131
|
};
|
|
132
|
+
externalField: {
|
|
133
|
+
type: string;
|
|
134
|
+
id: number;
|
|
135
|
+
};
|
|
129
136
|
};
|
|
130
137
|
};
|
|
131
138
|
FunctionSchema: {
|
|
@@ -236,6 +243,23 @@ declare const _default: {
|
|
|
236
243
|
type: string;
|
|
237
244
|
id: number;
|
|
238
245
|
};
|
|
246
|
+
externalSource: {
|
|
247
|
+
type: string;
|
|
248
|
+
id: number;
|
|
249
|
+
};
|
|
250
|
+
externalSpec: {
|
|
251
|
+
type: string;
|
|
252
|
+
id: number;
|
|
253
|
+
};
|
|
254
|
+
doPhysicalBackfill: {
|
|
255
|
+
type: string;
|
|
256
|
+
id: number;
|
|
257
|
+
};
|
|
258
|
+
fileResourceIds: {
|
|
259
|
+
rule: string;
|
|
260
|
+
type: string;
|
|
261
|
+
id: number;
|
|
262
|
+
};
|
|
239
263
|
enableNamespace: {
|
|
240
264
|
type: string;
|
|
241
265
|
id: number;
|
|
@@ -266,6 +290,10 @@ declare const _default: {
|
|
|
266
290
|
type: string;
|
|
267
291
|
id: number;
|
|
268
292
|
};
|
|
293
|
+
nullable: {
|
|
294
|
+
type: string;
|
|
295
|
+
id: number;
|
|
296
|
+
};
|
|
269
297
|
};
|
|
270
298
|
};
|
|
271
299
|
BoolArray: {
|
|
@@ -380,6 +408,24 @@ declare const _default: {
|
|
|
380
408
|
};
|
|
381
409
|
};
|
|
382
410
|
};
|
|
411
|
+
MolArray: {
|
|
412
|
+
fields: {
|
|
413
|
+
data: {
|
|
414
|
+
rule: string;
|
|
415
|
+
type: string;
|
|
416
|
+
id: number;
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
MolSmilesArray: {
|
|
421
|
+
fields: {
|
|
422
|
+
data: {
|
|
423
|
+
rule: string;
|
|
424
|
+
type: string;
|
|
425
|
+
id: number;
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
};
|
|
383
429
|
ValueField: {
|
|
384
430
|
oneofs: {
|
|
385
431
|
data: {
|
|
@@ -476,6 +522,14 @@ declare const _default: {
|
|
|
476
522
|
type: string;
|
|
477
523
|
id: number;
|
|
478
524
|
};
|
|
525
|
+
molData: {
|
|
526
|
+
type: string;
|
|
527
|
+
id: number;
|
|
528
|
+
};
|
|
529
|
+
molSmilesData: {
|
|
530
|
+
type: string;
|
|
531
|
+
id: number;
|
|
532
|
+
};
|
|
479
533
|
};
|
|
480
534
|
};
|
|
481
535
|
SparseFloatArray: {
|
|
@@ -558,6 +612,27 @@ declare const _default: {
|
|
|
558
612
|
};
|
|
559
613
|
};
|
|
560
614
|
};
|
|
615
|
+
FieldPartialUpdateOp: {
|
|
616
|
+
fields: {
|
|
617
|
+
fieldName: {
|
|
618
|
+
type: string;
|
|
619
|
+
id: number;
|
|
620
|
+
};
|
|
621
|
+
op: {
|
|
622
|
+
type: string;
|
|
623
|
+
id: number;
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
nested: {
|
|
627
|
+
OpType: {
|
|
628
|
+
values: {
|
|
629
|
+
REPLACE: number;
|
|
630
|
+
ARRAY_APPEND: number;
|
|
631
|
+
ARRAY_REMOVE: number;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
};
|
|
561
636
|
FieldData: {
|
|
562
637
|
oneofs: {
|
|
563
638
|
field: {
|
|
@@ -702,6 +777,175 @@ declare const _default: {
|
|
|
702
777
|
type: string;
|
|
703
778
|
id: number;
|
|
704
779
|
};
|
|
780
|
+
elementIndices: {
|
|
781
|
+
type: string;
|
|
782
|
+
id: number;
|
|
783
|
+
};
|
|
784
|
+
groupByFieldValues: {
|
|
785
|
+
rule: string;
|
|
786
|
+
type: string;
|
|
787
|
+
id: number;
|
|
788
|
+
};
|
|
789
|
+
aggBuckets: {
|
|
790
|
+
rule: string;
|
|
791
|
+
type: string;
|
|
792
|
+
id: number;
|
|
793
|
+
};
|
|
794
|
+
aggTopks: {
|
|
795
|
+
rule: string;
|
|
796
|
+
type: string;
|
|
797
|
+
id: number;
|
|
798
|
+
};
|
|
799
|
+
};
|
|
800
|
+
reserved: number[][];
|
|
801
|
+
};
|
|
802
|
+
AggBucket: {
|
|
803
|
+
fields: {
|
|
804
|
+
key: {
|
|
805
|
+
rule: string;
|
|
806
|
+
type: string;
|
|
807
|
+
id: number;
|
|
808
|
+
};
|
|
809
|
+
count: {
|
|
810
|
+
type: string;
|
|
811
|
+
id: number;
|
|
812
|
+
};
|
|
813
|
+
metrics: {
|
|
814
|
+
keyType: string;
|
|
815
|
+
type: string;
|
|
816
|
+
id: number;
|
|
817
|
+
};
|
|
818
|
+
hits: {
|
|
819
|
+
rule: string;
|
|
820
|
+
type: string;
|
|
821
|
+
id: number;
|
|
822
|
+
};
|
|
823
|
+
subGroups: {
|
|
824
|
+
rule: string;
|
|
825
|
+
type: string;
|
|
826
|
+
id: number;
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
MetricValue: {
|
|
831
|
+
oneofs: {
|
|
832
|
+
value: {
|
|
833
|
+
oneof: string[];
|
|
834
|
+
};
|
|
835
|
+
};
|
|
836
|
+
fields: {
|
|
837
|
+
intVal: {
|
|
838
|
+
type: string;
|
|
839
|
+
id: number;
|
|
840
|
+
};
|
|
841
|
+
doubleVal: {
|
|
842
|
+
type: string;
|
|
843
|
+
id: number;
|
|
844
|
+
};
|
|
845
|
+
stringVal: {
|
|
846
|
+
type: string;
|
|
847
|
+
id: number;
|
|
848
|
+
};
|
|
849
|
+
boolVal: {
|
|
850
|
+
type: string;
|
|
851
|
+
id: number;
|
|
852
|
+
};
|
|
853
|
+
};
|
|
854
|
+
};
|
|
855
|
+
BucketKeyEntry: {
|
|
856
|
+
oneofs: {
|
|
857
|
+
value: {
|
|
858
|
+
oneof: string[];
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
fields: {
|
|
862
|
+
fieldId: {
|
|
863
|
+
type: string;
|
|
864
|
+
id: number;
|
|
865
|
+
};
|
|
866
|
+
fieldName: {
|
|
867
|
+
type: string;
|
|
868
|
+
id: number;
|
|
869
|
+
};
|
|
870
|
+
intVal: {
|
|
871
|
+
type: string;
|
|
872
|
+
id: number;
|
|
873
|
+
};
|
|
874
|
+
stringVal: {
|
|
875
|
+
type: string;
|
|
876
|
+
id: number;
|
|
877
|
+
};
|
|
878
|
+
boolVal: {
|
|
879
|
+
type: string;
|
|
880
|
+
id: number;
|
|
881
|
+
};
|
|
882
|
+
};
|
|
883
|
+
};
|
|
884
|
+
AggHit: {
|
|
885
|
+
oneofs: {
|
|
886
|
+
pk: {
|
|
887
|
+
oneof: string[];
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
fields: {
|
|
891
|
+
intPk: {
|
|
892
|
+
type: string;
|
|
893
|
+
id: number;
|
|
894
|
+
};
|
|
895
|
+
strPk: {
|
|
896
|
+
type: string;
|
|
897
|
+
id: number;
|
|
898
|
+
};
|
|
899
|
+
score: {
|
|
900
|
+
type: string;
|
|
901
|
+
id: number;
|
|
902
|
+
};
|
|
903
|
+
fields: {
|
|
904
|
+
rule: string;
|
|
905
|
+
type: string;
|
|
906
|
+
id: number;
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
};
|
|
910
|
+
AggHitField: {
|
|
911
|
+
oneofs: {
|
|
912
|
+
value: {
|
|
913
|
+
oneof: string[];
|
|
914
|
+
};
|
|
915
|
+
};
|
|
916
|
+
fields: {
|
|
917
|
+
fieldId: {
|
|
918
|
+
type: string;
|
|
919
|
+
id: number;
|
|
920
|
+
};
|
|
921
|
+
fieldName: {
|
|
922
|
+
type: string;
|
|
923
|
+
id: number;
|
|
924
|
+
};
|
|
925
|
+
intVal: {
|
|
926
|
+
type: string;
|
|
927
|
+
id: number;
|
|
928
|
+
};
|
|
929
|
+
boolVal: {
|
|
930
|
+
type: string;
|
|
931
|
+
id: number;
|
|
932
|
+
};
|
|
933
|
+
floatVal: {
|
|
934
|
+
type: string;
|
|
935
|
+
id: number;
|
|
936
|
+
};
|
|
937
|
+
doubleVal: {
|
|
938
|
+
type: string;
|
|
939
|
+
id: number;
|
|
940
|
+
};
|
|
941
|
+
stringVal: {
|
|
942
|
+
type: string;
|
|
943
|
+
id: number;
|
|
944
|
+
};
|
|
945
|
+
bytesVal: {
|
|
946
|
+
type: string;
|
|
947
|
+
id: number;
|
|
948
|
+
};
|
|
705
949
|
};
|
|
706
950
|
};
|
|
707
951
|
VectorClusteringInfo: {
|
|
@@ -1020,6 +1264,10 @@ declare const _default: {
|
|
|
1020
1264
|
type: string;
|
|
1021
1265
|
id: number;
|
|
1022
1266
|
};
|
|
1267
|
+
elementLevel: {
|
|
1268
|
+
type: string;
|
|
1269
|
+
id: number;
|
|
1270
|
+
};
|
|
1023
1271
|
};
|
|
1024
1272
|
};
|
|
1025
1273
|
PlaceholderGroup: {
|
|
@@ -1044,6 +1292,11 @@ declare const _default: {
|
|
|
1044
1292
|
};
|
|
1045
1293
|
};
|
|
1046
1294
|
MsgType: {
|
|
1295
|
+
valuesOptions: {
|
|
1296
|
+
Replicate: {
|
|
1297
|
+
deprecated: boolean;
|
|
1298
|
+
};
|
|
1299
|
+
};
|
|
1047
1300
|
values: {
|
|
1048
1301
|
Undefined: number;
|
|
1049
1302
|
CreateCollection: number;
|
|
@@ -1168,6 +1421,19 @@ declare const _default: {
|
|
|
1168
1421
|
DescribeDatabase: number;
|
|
1169
1422
|
AddCollectionField: number;
|
|
1170
1423
|
AlterWAL: number;
|
|
1424
|
+
CreateSnapshot: number;
|
|
1425
|
+
DropSnapshot: number;
|
|
1426
|
+
ListSnapshots: number;
|
|
1427
|
+
DescribeSnapshot: number;
|
|
1428
|
+
RestoreSnapshot: number;
|
|
1429
|
+
GetRestoreSnapshotState: number;
|
|
1430
|
+
ListRestoreSnapshotJobs: number;
|
|
1431
|
+
PinSnapshotData: number;
|
|
1432
|
+
UnpinSnapshotData: number;
|
|
1433
|
+
AlterCollectionSchema: number;
|
|
1434
|
+
RefreshExternalCollection: number;
|
|
1435
|
+
GetRefreshExternalCollectionProgress: number;
|
|
1436
|
+
ListRefreshExternalCollectionJobs: number;
|
|
1171
1437
|
};
|
|
1172
1438
|
};
|
|
1173
1439
|
MsgBase: {
|
|
@@ -1200,10 +1466,16 @@ declare const _default: {
|
|
|
1200
1466
|
replicateInfo: {
|
|
1201
1467
|
type: string;
|
|
1202
1468
|
id: number;
|
|
1469
|
+
options: {
|
|
1470
|
+
deprecated: boolean;
|
|
1471
|
+
};
|
|
1203
1472
|
};
|
|
1204
1473
|
};
|
|
1205
1474
|
};
|
|
1206
1475
|
ReplicateInfo: {
|
|
1476
|
+
options: {
|
|
1477
|
+
deprecated: boolean;
|
|
1478
|
+
};
|
|
1207
1479
|
fields: {
|
|
1208
1480
|
isReplicate: {
|
|
1209
1481
|
type: string;
|
|
@@ -1357,7 +1629,16 @@ declare const _default: {
|
|
|
1357
1629
|
PrivilegeRemoveFileResource: number;
|
|
1358
1630
|
PrivilegeListFileResources: number;
|
|
1359
1631
|
PrivilegeUpdateReplicateConfiguration: number;
|
|
1632
|
+
PrivilegeCreateSnapshot: number;
|
|
1633
|
+
PrivilegeDropSnapshot: number;
|
|
1634
|
+
PrivilegeDescribeSnapshot: number;
|
|
1635
|
+
PrivilegeListSnapshots: number;
|
|
1636
|
+
PrivilegeRestoreSnapshot: number;
|
|
1637
|
+
PrivilegeAlterCollectionSchema: number;
|
|
1360
1638
|
PrivilegeGetReplicateConfiguration: number;
|
|
1639
|
+
PrivilegeRefreshExternalCollection: number;
|
|
1640
|
+
PrivilegePinSnapshotData: number;
|
|
1641
|
+
PrivilegeUnpinSnapshotData: number;
|
|
1361
1642
|
};
|
|
1362
1643
|
};
|
|
1363
1644
|
PrivilegeExt: {
|
|
@@ -1443,95 +1724,188 @@ declare const _default: {
|
|
|
1443
1724
|
};
|
|
1444
1725
|
};
|
|
1445
1726
|
};
|
|
1446
|
-
|
|
1727
|
+
Metrics: {
|
|
1447
1728
|
fields: {
|
|
1448
|
-
|
|
1729
|
+
requestCount: {
|
|
1449
1730
|
type: string;
|
|
1450
1731
|
id: number;
|
|
1451
1732
|
};
|
|
1452
|
-
|
|
1733
|
+
successCount: {
|
|
1453
1734
|
type: string;
|
|
1454
1735
|
id: number;
|
|
1455
1736
|
};
|
|
1456
|
-
|
|
1737
|
+
errorCount: {
|
|
1457
1738
|
type: string;
|
|
1458
1739
|
id: number;
|
|
1459
1740
|
};
|
|
1460
|
-
|
|
1741
|
+
avgLatencyMs: {
|
|
1461
1742
|
type: string;
|
|
1462
1743
|
id: number;
|
|
1463
1744
|
};
|
|
1464
|
-
|
|
1745
|
+
p99LatencyMs: {
|
|
1465
1746
|
type: string;
|
|
1466
1747
|
id: number;
|
|
1467
1748
|
};
|
|
1468
|
-
|
|
1469
|
-
keyType: string;
|
|
1749
|
+
maxLatencyMs: {
|
|
1470
1750
|
type: string;
|
|
1471
1751
|
id: number;
|
|
1472
1752
|
};
|
|
1473
1753
|
};
|
|
1474
1754
|
};
|
|
1475
|
-
|
|
1755
|
+
OperationMetrics: {
|
|
1476
1756
|
fields: {
|
|
1477
|
-
|
|
1757
|
+
operation: {
|
|
1478
1758
|
type: string;
|
|
1479
1759
|
id: number;
|
|
1480
1760
|
};
|
|
1481
|
-
|
|
1761
|
+
global: {
|
|
1482
1762
|
type: string;
|
|
1483
1763
|
id: number;
|
|
1484
1764
|
};
|
|
1485
|
-
|
|
1765
|
+
collectionMetrics: {
|
|
1766
|
+
keyType: string;
|
|
1486
1767
|
type: string;
|
|
1487
1768
|
id: number;
|
|
1488
1769
|
};
|
|
1489
1770
|
};
|
|
1490
1771
|
};
|
|
1491
|
-
|
|
1492
|
-
values: {
|
|
1493
|
-
HIGH: number;
|
|
1494
|
-
LOW: number;
|
|
1495
|
-
};
|
|
1496
|
-
};
|
|
1497
|
-
WALName: {
|
|
1498
|
-
values: {
|
|
1499
|
-
Unknown: number;
|
|
1500
|
-
RocksMQ: number;
|
|
1501
|
-
Pulsar: number;
|
|
1502
|
-
Kafka: number;
|
|
1503
|
-
WoodPecker: number;
|
|
1504
|
-
Test: number;
|
|
1505
|
-
};
|
|
1506
|
-
};
|
|
1507
|
-
ReplicateConfiguration: {
|
|
1772
|
+
ClientCommand: {
|
|
1508
1773
|
fields: {
|
|
1509
|
-
|
|
1510
|
-
rule: string;
|
|
1774
|
+
commandId: {
|
|
1511
1775
|
type: string;
|
|
1512
1776
|
id: number;
|
|
1513
1777
|
};
|
|
1514
|
-
|
|
1515
|
-
rule: string;
|
|
1778
|
+
commandType: {
|
|
1516
1779
|
type: string;
|
|
1517
1780
|
id: number;
|
|
1518
1781
|
};
|
|
1519
|
-
|
|
1520
|
-
};
|
|
1521
|
-
ConnectionParam: {
|
|
1522
|
-
fields: {
|
|
1523
|
-
uri: {
|
|
1782
|
+
payload: {
|
|
1524
1783
|
type: string;
|
|
1525
1784
|
id: number;
|
|
1526
1785
|
};
|
|
1527
|
-
|
|
1786
|
+
createTime: {
|
|
1528
1787
|
type: string;
|
|
1529
1788
|
id: number;
|
|
1530
1789
|
};
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1790
|
+
persistent: {
|
|
1791
|
+
type: string;
|
|
1792
|
+
id: number;
|
|
1793
|
+
};
|
|
1794
|
+
targetScope: {
|
|
1795
|
+
type: string;
|
|
1796
|
+
id: number;
|
|
1797
|
+
};
|
|
1798
|
+
};
|
|
1799
|
+
};
|
|
1800
|
+
CommandReply: {
|
|
1801
|
+
fields: {
|
|
1802
|
+
commandId: {
|
|
1803
|
+
type: string;
|
|
1804
|
+
id: number;
|
|
1805
|
+
};
|
|
1806
|
+
success: {
|
|
1807
|
+
type: string;
|
|
1808
|
+
id: number;
|
|
1809
|
+
};
|
|
1810
|
+
errorMessage: {
|
|
1811
|
+
type: string;
|
|
1812
|
+
id: number;
|
|
1813
|
+
};
|
|
1814
|
+
payload: {
|
|
1815
|
+
type: string;
|
|
1816
|
+
id: number;
|
|
1817
|
+
};
|
|
1818
|
+
};
|
|
1819
|
+
};
|
|
1820
|
+
ServerInfo: {
|
|
1821
|
+
fields: {
|
|
1822
|
+
buildTags: {
|
|
1823
|
+
type: string;
|
|
1824
|
+
id: number;
|
|
1825
|
+
};
|
|
1826
|
+
buildTime: {
|
|
1827
|
+
type: string;
|
|
1828
|
+
id: number;
|
|
1829
|
+
};
|
|
1830
|
+
gitCommit: {
|
|
1831
|
+
type: string;
|
|
1832
|
+
id: number;
|
|
1833
|
+
};
|
|
1834
|
+
goVersion: {
|
|
1835
|
+
type: string;
|
|
1836
|
+
id: number;
|
|
1837
|
+
};
|
|
1838
|
+
deployMode: {
|
|
1839
|
+
type: string;
|
|
1840
|
+
id: number;
|
|
1841
|
+
};
|
|
1842
|
+
reserved: {
|
|
1843
|
+
keyType: string;
|
|
1844
|
+
type: string;
|
|
1845
|
+
id: number;
|
|
1846
|
+
};
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1849
|
+
NodeInfo: {
|
|
1850
|
+
fields: {
|
|
1851
|
+
nodeId: {
|
|
1852
|
+
type: string;
|
|
1853
|
+
id: number;
|
|
1854
|
+
};
|
|
1855
|
+
address: {
|
|
1856
|
+
type: string;
|
|
1857
|
+
id: number;
|
|
1858
|
+
};
|
|
1859
|
+
hostname: {
|
|
1860
|
+
type: string;
|
|
1861
|
+
id: number;
|
|
1862
|
+
};
|
|
1863
|
+
};
|
|
1864
|
+
};
|
|
1865
|
+
LoadPriority: {
|
|
1866
|
+
values: {
|
|
1867
|
+
HIGH: number;
|
|
1868
|
+
LOW: number;
|
|
1869
|
+
};
|
|
1870
|
+
};
|
|
1871
|
+
WALName: {
|
|
1872
|
+
values: {
|
|
1873
|
+
Unknown: number;
|
|
1874
|
+
RocksMQ: number;
|
|
1875
|
+
Pulsar: number;
|
|
1876
|
+
Kafka: number;
|
|
1877
|
+
WoodPecker: number;
|
|
1878
|
+
Test: number;
|
|
1879
|
+
};
|
|
1880
|
+
};
|
|
1881
|
+
ReplicateConfiguration: {
|
|
1882
|
+
fields: {
|
|
1883
|
+
clusters: {
|
|
1884
|
+
rule: string;
|
|
1885
|
+
type: string;
|
|
1886
|
+
id: number;
|
|
1887
|
+
};
|
|
1888
|
+
crossClusterTopology: {
|
|
1889
|
+
rule: string;
|
|
1890
|
+
type: string;
|
|
1891
|
+
id: number;
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1894
|
+
};
|
|
1895
|
+
ConnectionParam: {
|
|
1896
|
+
fields: {
|
|
1897
|
+
uri: {
|
|
1898
|
+
type: string;
|
|
1899
|
+
id: number;
|
|
1900
|
+
};
|
|
1901
|
+
token: {
|
|
1902
|
+
type: string;
|
|
1903
|
+
id: number;
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
MilvusCluster: {
|
|
1908
|
+
fields: {
|
|
1535
1909
|
clusterId: {
|
|
1536
1910
|
type: string;
|
|
1537
1911
|
id: number;
|
|
@@ -1654,6 +2028,94 @@ declare const _default: {
|
|
|
1654
2028
|
};
|
|
1655
2029
|
};
|
|
1656
2030
|
};
|
|
2031
|
+
MetricAggSpec: {
|
|
2032
|
+
fields: {
|
|
2033
|
+
op: {
|
|
2034
|
+
type: string;
|
|
2035
|
+
id: number;
|
|
2036
|
+
};
|
|
2037
|
+
fieldName: {
|
|
2038
|
+
type: string;
|
|
2039
|
+
id: number;
|
|
2040
|
+
};
|
|
2041
|
+
};
|
|
2042
|
+
};
|
|
2043
|
+
SortSpec: {
|
|
2044
|
+
fields: {
|
|
2045
|
+
fieldName: {
|
|
2046
|
+
type: string;
|
|
2047
|
+
id: number;
|
|
2048
|
+
};
|
|
2049
|
+
direction: {
|
|
2050
|
+
type: string;
|
|
2051
|
+
id: number;
|
|
2052
|
+
};
|
|
2053
|
+
nullFirst: {
|
|
2054
|
+
type: string;
|
|
2055
|
+
id: number;
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
};
|
|
2059
|
+
TopHitsSpec: {
|
|
2060
|
+
fields: {
|
|
2061
|
+
size: {
|
|
2062
|
+
type: string;
|
|
2063
|
+
id: number;
|
|
2064
|
+
};
|
|
2065
|
+
sort: {
|
|
2066
|
+
rule: string;
|
|
2067
|
+
type: string;
|
|
2068
|
+
id: number;
|
|
2069
|
+
};
|
|
2070
|
+
};
|
|
2071
|
+
};
|
|
2072
|
+
OrderSpec: {
|
|
2073
|
+
fields: {
|
|
2074
|
+
key: {
|
|
2075
|
+
type: string;
|
|
2076
|
+
id: number;
|
|
2077
|
+
};
|
|
2078
|
+
direction: {
|
|
2079
|
+
type: string;
|
|
2080
|
+
id: number;
|
|
2081
|
+
};
|
|
2082
|
+
nullFirst: {
|
|
2083
|
+
type: string;
|
|
2084
|
+
id: number;
|
|
2085
|
+
};
|
|
2086
|
+
};
|
|
2087
|
+
};
|
|
2088
|
+
SearchAggregationSpec: {
|
|
2089
|
+
fields: {
|
|
2090
|
+
fields: {
|
|
2091
|
+
rule: string;
|
|
2092
|
+
type: string;
|
|
2093
|
+
id: number;
|
|
2094
|
+
};
|
|
2095
|
+
size: {
|
|
2096
|
+
type: string;
|
|
2097
|
+
id: number;
|
|
2098
|
+
};
|
|
2099
|
+
metrics: {
|
|
2100
|
+
keyType: string;
|
|
2101
|
+
type: string;
|
|
2102
|
+
id: number;
|
|
2103
|
+
};
|
|
2104
|
+
order: {
|
|
2105
|
+
rule: string;
|
|
2106
|
+
type: string;
|
|
2107
|
+
id: number;
|
|
2108
|
+
};
|
|
2109
|
+
topHits: {
|
|
2110
|
+
type: string;
|
|
2111
|
+
id: number;
|
|
2112
|
+
};
|
|
2113
|
+
subAggregation: {
|
|
2114
|
+
type: string;
|
|
2115
|
+
id: number;
|
|
2116
|
+
};
|
|
2117
|
+
};
|
|
2118
|
+
};
|
|
1657
2119
|
};
|
|
1658
2120
|
};
|
|
1659
2121
|
};
|
|
@@ -1665,6 +2127,7 @@ declare const _default: {
|
|
|
1665
2127
|
protobuf: {
|
|
1666
2128
|
nested: {
|
|
1667
2129
|
FileDescriptorSet: {
|
|
2130
|
+
edition: string;
|
|
1668
2131
|
fields: {
|
|
1669
2132
|
file: {
|
|
1670
2133
|
rule: string;
|
|
@@ -1672,8 +2135,27 @@ declare const _default: {
|
|
|
1672
2135
|
id: number;
|
|
1673
2136
|
};
|
|
1674
2137
|
};
|
|
2138
|
+
extensions: number[][];
|
|
2139
|
+
};
|
|
2140
|
+
Edition: {
|
|
2141
|
+
edition: string;
|
|
2142
|
+
values: {
|
|
2143
|
+
EDITION_UNKNOWN: number;
|
|
2144
|
+
EDITION_LEGACY: number;
|
|
2145
|
+
EDITION_PROTO2: number;
|
|
2146
|
+
EDITION_PROTO3: number;
|
|
2147
|
+
EDITION_2023: number;
|
|
2148
|
+
EDITION_2024: number;
|
|
2149
|
+
EDITION_1_TEST_ONLY: number;
|
|
2150
|
+
EDITION_2_TEST_ONLY: number;
|
|
2151
|
+
EDITION_99997_TEST_ONLY: number;
|
|
2152
|
+
EDITION_99998_TEST_ONLY: number;
|
|
2153
|
+
EDITION_99999_TEST_ONLY: number;
|
|
2154
|
+
EDITION_MAX: number;
|
|
2155
|
+
};
|
|
1675
2156
|
};
|
|
1676
2157
|
FileDescriptorProto: {
|
|
2158
|
+
edition: string;
|
|
1677
2159
|
fields: {
|
|
1678
2160
|
name: {
|
|
1679
2161
|
type: string;
|
|
@@ -1692,17 +2174,16 @@ declare const _default: {
|
|
|
1692
2174
|
rule: string;
|
|
1693
2175
|
type: string;
|
|
1694
2176
|
id: number;
|
|
1695
|
-
options: {
|
|
1696
|
-
packed: boolean;
|
|
1697
|
-
};
|
|
1698
2177
|
};
|
|
1699
2178
|
weakDependency: {
|
|
1700
2179
|
rule: string;
|
|
1701
2180
|
type: string;
|
|
1702
2181
|
id: number;
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
2182
|
+
};
|
|
2183
|
+
optionDependency: {
|
|
2184
|
+
rule: string;
|
|
2185
|
+
type: string;
|
|
2186
|
+
id: number;
|
|
1706
2187
|
};
|
|
1707
2188
|
messageType: {
|
|
1708
2189
|
rule: string;
|
|
@@ -1736,9 +2217,14 @@ declare const _default: {
|
|
|
1736
2217
|
type: string;
|
|
1737
2218
|
id: number;
|
|
1738
2219
|
};
|
|
2220
|
+
edition: {
|
|
2221
|
+
type: string;
|
|
2222
|
+
id: number;
|
|
2223
|
+
};
|
|
1739
2224
|
};
|
|
1740
2225
|
};
|
|
1741
2226
|
DescriptorProto: {
|
|
2227
|
+
edition: string;
|
|
1742
2228
|
fields: {
|
|
1743
2229
|
name: {
|
|
1744
2230
|
type: string;
|
|
@@ -1788,6 +2274,10 @@ declare const _default: {
|
|
|
1788
2274
|
type: string;
|
|
1789
2275
|
id: number;
|
|
1790
2276
|
};
|
|
2277
|
+
visibility: {
|
|
2278
|
+
type: string;
|
|
2279
|
+
id: number;
|
|
2280
|
+
};
|
|
1791
2281
|
};
|
|
1792
2282
|
nested: {
|
|
1793
2283
|
ExtensionRange: {
|
|
@@ -1800,6 +2290,10 @@ declare const _default: {
|
|
|
1800
2290
|
type: string;
|
|
1801
2291
|
id: number;
|
|
1802
2292
|
};
|
|
2293
|
+
options: {
|
|
2294
|
+
type: string;
|
|
2295
|
+
id: number;
|
|
2296
|
+
};
|
|
1803
2297
|
};
|
|
1804
2298
|
};
|
|
1805
2299
|
ReservedRange: {
|
|
@@ -1816,7 +2310,72 @@ declare const _default: {
|
|
|
1816
2310
|
};
|
|
1817
2311
|
};
|
|
1818
2312
|
};
|
|
2313
|
+
ExtensionRangeOptions: {
|
|
2314
|
+
edition: string;
|
|
2315
|
+
fields: {
|
|
2316
|
+
uninterpretedOption: {
|
|
2317
|
+
rule: string;
|
|
2318
|
+
type: string;
|
|
2319
|
+
id: number;
|
|
2320
|
+
};
|
|
2321
|
+
declaration: {
|
|
2322
|
+
rule: string;
|
|
2323
|
+
type: string;
|
|
2324
|
+
id: number;
|
|
2325
|
+
options: {
|
|
2326
|
+
retention: string;
|
|
2327
|
+
};
|
|
2328
|
+
};
|
|
2329
|
+
features: {
|
|
2330
|
+
type: string;
|
|
2331
|
+
id: number;
|
|
2332
|
+
};
|
|
2333
|
+
verification: {
|
|
2334
|
+
type: string;
|
|
2335
|
+
id: number;
|
|
2336
|
+
options: {
|
|
2337
|
+
default: string;
|
|
2338
|
+
retention: string;
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
};
|
|
2342
|
+
extensions: number[][];
|
|
2343
|
+
nested: {
|
|
2344
|
+
Declaration: {
|
|
2345
|
+
fields: {
|
|
2346
|
+
number: {
|
|
2347
|
+
type: string;
|
|
2348
|
+
id: number;
|
|
2349
|
+
};
|
|
2350
|
+
fullName: {
|
|
2351
|
+
type: string;
|
|
2352
|
+
id: number;
|
|
2353
|
+
};
|
|
2354
|
+
type: {
|
|
2355
|
+
type: string;
|
|
2356
|
+
id: number;
|
|
2357
|
+
};
|
|
2358
|
+
reserved: {
|
|
2359
|
+
type: string;
|
|
2360
|
+
id: number;
|
|
2361
|
+
};
|
|
2362
|
+
repeated: {
|
|
2363
|
+
type: string;
|
|
2364
|
+
id: number;
|
|
2365
|
+
};
|
|
2366
|
+
};
|
|
2367
|
+
reserved: number[][];
|
|
2368
|
+
};
|
|
2369
|
+
VerificationState: {
|
|
2370
|
+
values: {
|
|
2371
|
+
DECLARATION: number;
|
|
2372
|
+
UNVERIFIED: number;
|
|
2373
|
+
};
|
|
2374
|
+
};
|
|
2375
|
+
};
|
|
2376
|
+
};
|
|
1819
2377
|
FieldDescriptorProto: {
|
|
2378
|
+
edition: string;
|
|
1820
2379
|
fields: {
|
|
1821
2380
|
name: {
|
|
1822
2381
|
type: string;
|
|
@@ -1858,6 +2417,10 @@ declare const _default: {
|
|
|
1858
2417
|
type: string;
|
|
1859
2418
|
id: number;
|
|
1860
2419
|
};
|
|
2420
|
+
proto3Optional: {
|
|
2421
|
+
type: string;
|
|
2422
|
+
id: number;
|
|
2423
|
+
};
|
|
1861
2424
|
};
|
|
1862
2425
|
nested: {
|
|
1863
2426
|
Type: {
|
|
@@ -1885,13 +2448,14 @@ declare const _default: {
|
|
|
1885
2448
|
Label: {
|
|
1886
2449
|
values: {
|
|
1887
2450
|
LABEL_OPTIONAL: number;
|
|
1888
|
-
LABEL_REQUIRED: number;
|
|
1889
2451
|
LABEL_REPEATED: number;
|
|
2452
|
+
LABEL_REQUIRED: number;
|
|
1890
2453
|
};
|
|
1891
2454
|
};
|
|
1892
2455
|
};
|
|
1893
2456
|
};
|
|
1894
2457
|
OneofDescriptorProto: {
|
|
2458
|
+
edition: string;
|
|
1895
2459
|
fields: {
|
|
1896
2460
|
name: {
|
|
1897
2461
|
type: string;
|
|
@@ -1904,23 +2468,53 @@ declare const _default: {
|
|
|
1904
2468
|
};
|
|
1905
2469
|
};
|
|
1906
2470
|
EnumDescriptorProto: {
|
|
2471
|
+
edition: string;
|
|
1907
2472
|
fields: {
|
|
1908
2473
|
name: {
|
|
1909
2474
|
type: string;
|
|
1910
2475
|
id: number;
|
|
1911
2476
|
};
|
|
1912
|
-
value: {
|
|
2477
|
+
value: {
|
|
2478
|
+
rule: string;
|
|
2479
|
+
type: string;
|
|
2480
|
+
id: number;
|
|
2481
|
+
};
|
|
2482
|
+
options: {
|
|
2483
|
+
type: string;
|
|
2484
|
+
id: number;
|
|
2485
|
+
};
|
|
2486
|
+
reservedRange: {
|
|
2487
|
+
rule: string;
|
|
2488
|
+
type: string;
|
|
2489
|
+
id: number;
|
|
2490
|
+
};
|
|
2491
|
+
reservedName: {
|
|
1913
2492
|
rule: string;
|
|
1914
2493
|
type: string;
|
|
1915
2494
|
id: number;
|
|
1916
2495
|
};
|
|
1917
|
-
|
|
2496
|
+
visibility: {
|
|
1918
2497
|
type: string;
|
|
1919
2498
|
id: number;
|
|
1920
2499
|
};
|
|
1921
2500
|
};
|
|
2501
|
+
nested: {
|
|
2502
|
+
EnumReservedRange: {
|
|
2503
|
+
fields: {
|
|
2504
|
+
start: {
|
|
2505
|
+
type: string;
|
|
2506
|
+
id: number;
|
|
2507
|
+
};
|
|
2508
|
+
end: {
|
|
2509
|
+
type: string;
|
|
2510
|
+
id: number;
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
};
|
|
2514
|
+
};
|
|
1922
2515
|
};
|
|
1923
2516
|
EnumValueDescriptorProto: {
|
|
2517
|
+
edition: string;
|
|
1924
2518
|
fields: {
|
|
1925
2519
|
name: {
|
|
1926
2520
|
type: string;
|
|
@@ -1937,6 +2531,7 @@ declare const _default: {
|
|
|
1937
2531
|
};
|
|
1938
2532
|
};
|
|
1939
2533
|
ServiceDescriptorProto: {
|
|
2534
|
+
edition: string;
|
|
1940
2535
|
fields: {
|
|
1941
2536
|
name: {
|
|
1942
2537
|
type: string;
|
|
@@ -1954,6 +2549,7 @@ declare const _default: {
|
|
|
1954
2549
|
};
|
|
1955
2550
|
};
|
|
1956
2551
|
MethodDescriptorProto: {
|
|
2552
|
+
edition: string;
|
|
1957
2553
|
fields: {
|
|
1958
2554
|
name: {
|
|
1959
2555
|
type: string;
|
|
@@ -1982,6 +2578,7 @@ declare const _default: {
|
|
|
1982
2578
|
};
|
|
1983
2579
|
};
|
|
1984
2580
|
FileOptions: {
|
|
2581
|
+
edition: string;
|
|
1985
2582
|
fields: {
|
|
1986
2583
|
javaPackage: {
|
|
1987
2584
|
type: string;
|
|
@@ -2036,6 +2633,9 @@ declare const _default: {
|
|
|
2036
2633
|
ccEnableArenas: {
|
|
2037
2634
|
type: string;
|
|
2038
2635
|
id: number;
|
|
2636
|
+
options: {
|
|
2637
|
+
default: boolean;
|
|
2638
|
+
};
|
|
2039
2639
|
};
|
|
2040
2640
|
objcClassPrefix: {
|
|
2041
2641
|
type: string;
|
|
@@ -2045,6 +2645,30 @@ declare const _default: {
|
|
|
2045
2645
|
type: string;
|
|
2046
2646
|
id: number;
|
|
2047
2647
|
};
|
|
2648
|
+
swiftPrefix: {
|
|
2649
|
+
type: string;
|
|
2650
|
+
id: number;
|
|
2651
|
+
};
|
|
2652
|
+
phpClassPrefix: {
|
|
2653
|
+
type: string;
|
|
2654
|
+
id: number;
|
|
2655
|
+
};
|
|
2656
|
+
phpNamespace: {
|
|
2657
|
+
type: string;
|
|
2658
|
+
id: number;
|
|
2659
|
+
};
|
|
2660
|
+
phpMetadataNamespace: {
|
|
2661
|
+
type: string;
|
|
2662
|
+
id: number;
|
|
2663
|
+
};
|
|
2664
|
+
rubyPackage: {
|
|
2665
|
+
type: string;
|
|
2666
|
+
id: number;
|
|
2667
|
+
};
|
|
2668
|
+
features: {
|
|
2669
|
+
type: string;
|
|
2670
|
+
id: number;
|
|
2671
|
+
};
|
|
2048
2672
|
uninterpretedOption: {
|
|
2049
2673
|
rule: string;
|
|
2050
2674
|
type: string;
|
|
@@ -2052,7 +2676,7 @@ declare const _default: {
|
|
|
2052
2676
|
};
|
|
2053
2677
|
};
|
|
2054
2678
|
extensions: number[][];
|
|
2055
|
-
reserved: number[][];
|
|
2679
|
+
reserved: (string | number[])[];
|
|
2056
2680
|
nested: {
|
|
2057
2681
|
OptimizeMode: {
|
|
2058
2682
|
values: {
|
|
@@ -2064,6 +2688,7 @@ declare const _default: {
|
|
|
2064
2688
|
};
|
|
2065
2689
|
};
|
|
2066
2690
|
MessageOptions: {
|
|
2691
|
+
edition: string;
|
|
2067
2692
|
fields: {
|
|
2068
2693
|
messageSetWireFormat: {
|
|
2069
2694
|
type: string;
|
|
@@ -2081,6 +2706,17 @@ declare const _default: {
|
|
|
2081
2706
|
type: string;
|
|
2082
2707
|
id: number;
|
|
2083
2708
|
};
|
|
2709
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
2710
|
+
type: string;
|
|
2711
|
+
id: number;
|
|
2712
|
+
options: {
|
|
2713
|
+
deprecated: boolean;
|
|
2714
|
+
};
|
|
2715
|
+
};
|
|
2716
|
+
features: {
|
|
2717
|
+
type: string;
|
|
2718
|
+
id: number;
|
|
2719
|
+
};
|
|
2084
2720
|
uninterpretedOption: {
|
|
2085
2721
|
rule: string;
|
|
2086
2722
|
type: string;
|
|
@@ -2091,6 +2727,7 @@ declare const _default: {
|
|
|
2091
2727
|
reserved: number[][];
|
|
2092
2728
|
};
|
|
2093
2729
|
FieldOptions: {
|
|
2730
|
+
edition: string;
|
|
2094
2731
|
fields: {
|
|
2095
2732
|
ctype: {
|
|
2096
2733
|
type: string;
|
|
@@ -2114,6 +2751,10 @@ declare const _default: {
|
|
|
2114
2751
|
type: string;
|
|
2115
2752
|
id: number;
|
|
2116
2753
|
};
|
|
2754
|
+
unverifiedLazy: {
|
|
2755
|
+
type: string;
|
|
2756
|
+
id: number;
|
|
2757
|
+
};
|
|
2117
2758
|
deprecated: {
|
|
2118
2759
|
type: string;
|
|
2119
2760
|
id: number;
|
|
@@ -2121,6 +2762,35 @@ declare const _default: {
|
|
|
2121
2762
|
weak: {
|
|
2122
2763
|
type: string;
|
|
2123
2764
|
id: number;
|
|
2765
|
+
options: {
|
|
2766
|
+
deprecated: boolean;
|
|
2767
|
+
};
|
|
2768
|
+
};
|
|
2769
|
+
debugRedact: {
|
|
2770
|
+
type: string;
|
|
2771
|
+
id: number;
|
|
2772
|
+
};
|
|
2773
|
+
retention: {
|
|
2774
|
+
type: string;
|
|
2775
|
+
id: number;
|
|
2776
|
+
};
|
|
2777
|
+
targets: {
|
|
2778
|
+
rule: string;
|
|
2779
|
+
type: string;
|
|
2780
|
+
id: number;
|
|
2781
|
+
};
|
|
2782
|
+
editionDefaults: {
|
|
2783
|
+
rule: string;
|
|
2784
|
+
type: string;
|
|
2785
|
+
id: number;
|
|
2786
|
+
};
|
|
2787
|
+
features: {
|
|
2788
|
+
type: string;
|
|
2789
|
+
id: number;
|
|
2790
|
+
};
|
|
2791
|
+
featureSupport: {
|
|
2792
|
+
type: string;
|
|
2793
|
+
id: number;
|
|
2124
2794
|
};
|
|
2125
2795
|
uninterpretedOption: {
|
|
2126
2796
|
rule: string;
|
|
@@ -2145,10 +2815,68 @@ declare const _default: {
|
|
|
2145
2815
|
JS_NUMBER: number;
|
|
2146
2816
|
};
|
|
2147
2817
|
};
|
|
2818
|
+
OptionRetention: {
|
|
2819
|
+
values: {
|
|
2820
|
+
RETENTION_UNKNOWN: number;
|
|
2821
|
+
RETENTION_RUNTIME: number;
|
|
2822
|
+
RETENTION_SOURCE: number;
|
|
2823
|
+
};
|
|
2824
|
+
};
|
|
2825
|
+
OptionTargetType: {
|
|
2826
|
+
values: {
|
|
2827
|
+
TARGET_TYPE_UNKNOWN: number;
|
|
2828
|
+
TARGET_TYPE_FILE: number;
|
|
2829
|
+
TARGET_TYPE_EXTENSION_RANGE: number;
|
|
2830
|
+
TARGET_TYPE_MESSAGE: number;
|
|
2831
|
+
TARGET_TYPE_FIELD: number;
|
|
2832
|
+
TARGET_TYPE_ONEOF: number;
|
|
2833
|
+
TARGET_TYPE_ENUM: number;
|
|
2834
|
+
TARGET_TYPE_ENUM_ENTRY: number;
|
|
2835
|
+
TARGET_TYPE_SERVICE: number;
|
|
2836
|
+
TARGET_TYPE_METHOD: number;
|
|
2837
|
+
};
|
|
2838
|
+
};
|
|
2839
|
+
EditionDefault: {
|
|
2840
|
+
fields: {
|
|
2841
|
+
edition: {
|
|
2842
|
+
type: string;
|
|
2843
|
+
id: number;
|
|
2844
|
+
};
|
|
2845
|
+
value: {
|
|
2846
|
+
type: string;
|
|
2847
|
+
id: number;
|
|
2848
|
+
};
|
|
2849
|
+
};
|
|
2850
|
+
};
|
|
2851
|
+
FeatureSupport: {
|
|
2852
|
+
fields: {
|
|
2853
|
+
editionIntroduced: {
|
|
2854
|
+
type: string;
|
|
2855
|
+
id: number;
|
|
2856
|
+
};
|
|
2857
|
+
editionDeprecated: {
|
|
2858
|
+
type: string;
|
|
2859
|
+
id: number;
|
|
2860
|
+
};
|
|
2861
|
+
deprecationWarning: {
|
|
2862
|
+
type: string;
|
|
2863
|
+
id: number;
|
|
2864
|
+
};
|
|
2865
|
+
editionRemoved: {
|
|
2866
|
+
type: string;
|
|
2867
|
+
id: number;
|
|
2868
|
+
};
|
|
2869
|
+
};
|
|
2870
|
+
};
|
|
2148
2871
|
};
|
|
2149
2872
|
};
|
|
2150
2873
|
OneofOptions: {
|
|
2874
|
+
edition: string;
|
|
2151
2875
|
fields: {
|
|
2876
|
+
features: {
|
|
2877
|
+
type: string;
|
|
2878
|
+
id: number;
|
|
2879
|
+
};
|
|
2152
2880
|
uninterpretedOption: {
|
|
2153
2881
|
rule: string;
|
|
2154
2882
|
type: string;
|
|
@@ -2158,6 +2886,7 @@ declare const _default: {
|
|
|
2158
2886
|
extensions: number[][];
|
|
2159
2887
|
};
|
|
2160
2888
|
EnumOptions: {
|
|
2889
|
+
edition: string;
|
|
2161
2890
|
fields: {
|
|
2162
2891
|
allowAlias: {
|
|
2163
2892
|
type: string;
|
|
@@ -2167,6 +2896,17 @@ declare const _default: {
|
|
|
2167
2896
|
type: string;
|
|
2168
2897
|
id: number;
|
|
2169
2898
|
};
|
|
2899
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
2900
|
+
type: string;
|
|
2901
|
+
id: number;
|
|
2902
|
+
options: {
|
|
2903
|
+
deprecated: boolean;
|
|
2904
|
+
};
|
|
2905
|
+
};
|
|
2906
|
+
features: {
|
|
2907
|
+
type: string;
|
|
2908
|
+
id: number;
|
|
2909
|
+
};
|
|
2170
2910
|
uninterpretedOption: {
|
|
2171
2911
|
rule: string;
|
|
2172
2912
|
type: string;
|
|
@@ -2174,13 +2914,27 @@ declare const _default: {
|
|
|
2174
2914
|
};
|
|
2175
2915
|
};
|
|
2176
2916
|
extensions: number[][];
|
|
2917
|
+
reserved: number[][];
|
|
2177
2918
|
};
|
|
2178
2919
|
EnumValueOptions: {
|
|
2920
|
+
edition: string;
|
|
2179
2921
|
fields: {
|
|
2180
2922
|
deprecated: {
|
|
2181
2923
|
type: string;
|
|
2182
2924
|
id: number;
|
|
2183
2925
|
};
|
|
2926
|
+
features: {
|
|
2927
|
+
type: string;
|
|
2928
|
+
id: number;
|
|
2929
|
+
};
|
|
2930
|
+
debugRedact: {
|
|
2931
|
+
type: string;
|
|
2932
|
+
id: number;
|
|
2933
|
+
};
|
|
2934
|
+
featureSupport: {
|
|
2935
|
+
type: string;
|
|
2936
|
+
id: number;
|
|
2937
|
+
};
|
|
2184
2938
|
uninterpretedOption: {
|
|
2185
2939
|
rule: string;
|
|
2186
2940
|
type: string;
|
|
@@ -2190,7 +2944,12 @@ declare const _default: {
|
|
|
2190
2944
|
extensions: number[][];
|
|
2191
2945
|
};
|
|
2192
2946
|
ServiceOptions: {
|
|
2947
|
+
edition: string;
|
|
2193
2948
|
fields: {
|
|
2949
|
+
features: {
|
|
2950
|
+
type: string;
|
|
2951
|
+
id: number;
|
|
2952
|
+
};
|
|
2194
2953
|
deprecated: {
|
|
2195
2954
|
type: string;
|
|
2196
2955
|
id: number;
|
|
@@ -2204,11 +2963,23 @@ declare const _default: {
|
|
|
2204
2963
|
extensions: number[][];
|
|
2205
2964
|
};
|
|
2206
2965
|
MethodOptions: {
|
|
2966
|
+
edition: string;
|
|
2207
2967
|
fields: {
|
|
2208
2968
|
deprecated: {
|
|
2209
2969
|
type: string;
|
|
2210
2970
|
id: number;
|
|
2211
2971
|
};
|
|
2972
|
+
idempotencyLevel: {
|
|
2973
|
+
type: string;
|
|
2974
|
+
id: number;
|
|
2975
|
+
options: {
|
|
2976
|
+
default: string;
|
|
2977
|
+
};
|
|
2978
|
+
};
|
|
2979
|
+
features: {
|
|
2980
|
+
type: string;
|
|
2981
|
+
id: number;
|
|
2982
|
+
};
|
|
2212
2983
|
uninterpretedOption: {
|
|
2213
2984
|
rule: string;
|
|
2214
2985
|
type: string;
|
|
@@ -2216,8 +2987,18 @@ declare const _default: {
|
|
|
2216
2987
|
};
|
|
2217
2988
|
};
|
|
2218
2989
|
extensions: number[][];
|
|
2990
|
+
nested: {
|
|
2991
|
+
IdempotencyLevel: {
|
|
2992
|
+
values: {
|
|
2993
|
+
IDEMPOTENCY_UNKNOWN: number;
|
|
2994
|
+
NO_SIDE_EFFECTS: number;
|
|
2995
|
+
IDEMPOTENT: number;
|
|
2996
|
+
};
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2219
2999
|
};
|
|
2220
3000
|
UninterpretedOption: {
|
|
3001
|
+
edition: string;
|
|
2221
3002
|
fields: {
|
|
2222
3003
|
name: {
|
|
2223
3004
|
rule: string;
|
|
@@ -2266,7 +3047,207 @@ declare const _default: {
|
|
|
2266
3047
|
};
|
|
2267
3048
|
};
|
|
2268
3049
|
};
|
|
3050
|
+
FeatureSet: {
|
|
3051
|
+
edition: string;
|
|
3052
|
+
fields: {
|
|
3053
|
+
fieldPresence: {
|
|
3054
|
+
type: string;
|
|
3055
|
+
id: number;
|
|
3056
|
+
options: {
|
|
3057
|
+
retention: string;
|
|
3058
|
+
targets: string;
|
|
3059
|
+
"feature_support.edition_introduced": string;
|
|
3060
|
+
"edition_defaults.edition": string;
|
|
3061
|
+
"edition_defaults.value": string;
|
|
3062
|
+
};
|
|
3063
|
+
};
|
|
3064
|
+
enumType: {
|
|
3065
|
+
type: string;
|
|
3066
|
+
id: number;
|
|
3067
|
+
options: {
|
|
3068
|
+
retention: string;
|
|
3069
|
+
targets: string;
|
|
3070
|
+
"feature_support.edition_introduced": string;
|
|
3071
|
+
"edition_defaults.edition": string;
|
|
3072
|
+
"edition_defaults.value": string;
|
|
3073
|
+
};
|
|
3074
|
+
};
|
|
3075
|
+
repeatedFieldEncoding: {
|
|
3076
|
+
type: string;
|
|
3077
|
+
id: number;
|
|
3078
|
+
options: {
|
|
3079
|
+
retention: string;
|
|
3080
|
+
targets: string;
|
|
3081
|
+
"feature_support.edition_introduced": string;
|
|
3082
|
+
"edition_defaults.edition": string;
|
|
3083
|
+
"edition_defaults.value": string;
|
|
3084
|
+
};
|
|
3085
|
+
};
|
|
3086
|
+
utf8Validation: {
|
|
3087
|
+
type: string;
|
|
3088
|
+
id: number;
|
|
3089
|
+
options: {
|
|
3090
|
+
retention: string;
|
|
3091
|
+
targets: string;
|
|
3092
|
+
"feature_support.edition_introduced": string;
|
|
3093
|
+
"edition_defaults.edition": string;
|
|
3094
|
+
"edition_defaults.value": string;
|
|
3095
|
+
};
|
|
3096
|
+
};
|
|
3097
|
+
messageEncoding: {
|
|
3098
|
+
type: string;
|
|
3099
|
+
id: number;
|
|
3100
|
+
options: {
|
|
3101
|
+
retention: string;
|
|
3102
|
+
targets: string;
|
|
3103
|
+
"feature_support.edition_introduced": string;
|
|
3104
|
+
"edition_defaults.edition": string;
|
|
3105
|
+
"edition_defaults.value": string;
|
|
3106
|
+
};
|
|
3107
|
+
};
|
|
3108
|
+
jsonFormat: {
|
|
3109
|
+
type: string;
|
|
3110
|
+
id: number;
|
|
3111
|
+
options: {
|
|
3112
|
+
retention: string;
|
|
3113
|
+
targets: string;
|
|
3114
|
+
"feature_support.edition_introduced": string;
|
|
3115
|
+
"edition_defaults.edition": string;
|
|
3116
|
+
"edition_defaults.value": string;
|
|
3117
|
+
};
|
|
3118
|
+
};
|
|
3119
|
+
enforceNamingStyle: {
|
|
3120
|
+
type: string;
|
|
3121
|
+
id: number;
|
|
3122
|
+
options: {
|
|
3123
|
+
retention: string;
|
|
3124
|
+
targets: string;
|
|
3125
|
+
"feature_support.edition_introduced": string;
|
|
3126
|
+
"edition_defaults.edition": string;
|
|
3127
|
+
"edition_defaults.value": string;
|
|
3128
|
+
};
|
|
3129
|
+
};
|
|
3130
|
+
defaultSymbolVisibility: {
|
|
3131
|
+
type: string;
|
|
3132
|
+
id: number;
|
|
3133
|
+
options: {
|
|
3134
|
+
retention: string;
|
|
3135
|
+
targets: string;
|
|
3136
|
+
"feature_support.edition_introduced": string;
|
|
3137
|
+
"edition_defaults.edition": string;
|
|
3138
|
+
"edition_defaults.value": string;
|
|
3139
|
+
};
|
|
3140
|
+
};
|
|
3141
|
+
};
|
|
3142
|
+
extensions: number[][];
|
|
3143
|
+
reserved: number[][];
|
|
3144
|
+
nested: {
|
|
3145
|
+
FieldPresence: {
|
|
3146
|
+
values: {
|
|
3147
|
+
FIELD_PRESENCE_UNKNOWN: number;
|
|
3148
|
+
EXPLICIT: number;
|
|
3149
|
+
IMPLICIT: number;
|
|
3150
|
+
LEGACY_REQUIRED: number;
|
|
3151
|
+
};
|
|
3152
|
+
};
|
|
3153
|
+
EnumType: {
|
|
3154
|
+
values: {
|
|
3155
|
+
ENUM_TYPE_UNKNOWN: number;
|
|
3156
|
+
OPEN: number;
|
|
3157
|
+
CLOSED: number;
|
|
3158
|
+
};
|
|
3159
|
+
};
|
|
3160
|
+
RepeatedFieldEncoding: {
|
|
3161
|
+
values: {
|
|
3162
|
+
REPEATED_FIELD_ENCODING_UNKNOWN: number;
|
|
3163
|
+
PACKED: number;
|
|
3164
|
+
EXPANDED: number;
|
|
3165
|
+
};
|
|
3166
|
+
};
|
|
3167
|
+
Utf8Validation: {
|
|
3168
|
+
values: {
|
|
3169
|
+
UTF8_VALIDATION_UNKNOWN: number;
|
|
3170
|
+
VERIFY: number;
|
|
3171
|
+
NONE: number;
|
|
3172
|
+
};
|
|
3173
|
+
};
|
|
3174
|
+
MessageEncoding: {
|
|
3175
|
+
values: {
|
|
3176
|
+
MESSAGE_ENCODING_UNKNOWN: number;
|
|
3177
|
+
LENGTH_PREFIXED: number;
|
|
3178
|
+
DELIMITED: number;
|
|
3179
|
+
};
|
|
3180
|
+
};
|
|
3181
|
+
JsonFormat: {
|
|
3182
|
+
values: {
|
|
3183
|
+
JSON_FORMAT_UNKNOWN: number;
|
|
3184
|
+
ALLOW: number;
|
|
3185
|
+
LEGACY_BEST_EFFORT: number;
|
|
3186
|
+
};
|
|
3187
|
+
};
|
|
3188
|
+
EnforceNamingStyle: {
|
|
3189
|
+
values: {
|
|
3190
|
+
ENFORCE_NAMING_STYLE_UNKNOWN: number;
|
|
3191
|
+
STYLE2024: number;
|
|
3192
|
+
STYLE_LEGACY: number;
|
|
3193
|
+
};
|
|
3194
|
+
};
|
|
3195
|
+
VisibilityFeature: {
|
|
3196
|
+
fields: {};
|
|
3197
|
+
reserved: number[][];
|
|
3198
|
+
nested: {
|
|
3199
|
+
DefaultSymbolVisibility: {
|
|
3200
|
+
values: {
|
|
3201
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN: number;
|
|
3202
|
+
EXPORT_ALL: number;
|
|
3203
|
+
EXPORT_TOP_LEVEL: number;
|
|
3204
|
+
LOCAL_ALL: number;
|
|
3205
|
+
STRICT: number;
|
|
3206
|
+
};
|
|
3207
|
+
};
|
|
3208
|
+
};
|
|
3209
|
+
};
|
|
3210
|
+
};
|
|
3211
|
+
};
|
|
3212
|
+
FeatureSetDefaults: {
|
|
3213
|
+
edition: string;
|
|
3214
|
+
fields: {
|
|
3215
|
+
defaults: {
|
|
3216
|
+
rule: string;
|
|
3217
|
+
type: string;
|
|
3218
|
+
id: number;
|
|
3219
|
+
};
|
|
3220
|
+
minimumEdition: {
|
|
3221
|
+
type: string;
|
|
3222
|
+
id: number;
|
|
3223
|
+
};
|
|
3224
|
+
maximumEdition: {
|
|
3225
|
+
type: string;
|
|
3226
|
+
id: number;
|
|
3227
|
+
};
|
|
3228
|
+
};
|
|
3229
|
+
nested: {
|
|
3230
|
+
FeatureSetEditionDefault: {
|
|
3231
|
+
fields: {
|
|
3232
|
+
edition: {
|
|
3233
|
+
type: string;
|
|
3234
|
+
id: number;
|
|
3235
|
+
};
|
|
3236
|
+
overridableFeatures: {
|
|
3237
|
+
type: string;
|
|
3238
|
+
id: number;
|
|
3239
|
+
};
|
|
3240
|
+
fixedFeatures: {
|
|
3241
|
+
type: string;
|
|
3242
|
+
id: number;
|
|
3243
|
+
};
|
|
3244
|
+
};
|
|
3245
|
+
reserved: (string | number[])[];
|
|
3246
|
+
};
|
|
3247
|
+
};
|
|
3248
|
+
};
|
|
2269
3249
|
SourceCodeInfo: {
|
|
3250
|
+
edition: string;
|
|
2270
3251
|
fields: {
|
|
2271
3252
|
location: {
|
|
2272
3253
|
rule: string;
|
|
@@ -2274,6 +3255,7 @@ declare const _default: {
|
|
|
2274
3255
|
id: number;
|
|
2275
3256
|
};
|
|
2276
3257
|
};
|
|
3258
|
+
extensions: number[][];
|
|
2277
3259
|
nested: {
|
|
2278
3260
|
Location: {
|
|
2279
3261
|
fields: {
|
|
@@ -2281,11 +3263,17 @@ declare const _default: {
|
|
|
2281
3263
|
rule: string;
|
|
2282
3264
|
type: string;
|
|
2283
3265
|
id: number;
|
|
3266
|
+
options: {
|
|
3267
|
+
packed: boolean;
|
|
3268
|
+
};
|
|
2284
3269
|
};
|
|
2285
3270
|
span: {
|
|
2286
3271
|
rule: string;
|
|
2287
3272
|
type: string;
|
|
2288
3273
|
id: number;
|
|
3274
|
+
options: {
|
|
3275
|
+
packed: boolean;
|
|
3276
|
+
};
|
|
2289
3277
|
};
|
|
2290
3278
|
leadingComments: {
|
|
2291
3279
|
type: string;
|
|
@@ -2305,6 +3293,7 @@ declare const _default: {
|
|
|
2305
3293
|
};
|
|
2306
3294
|
};
|
|
2307
3295
|
GeneratedCodeInfo: {
|
|
3296
|
+
edition: string;
|
|
2308
3297
|
fields: {
|
|
2309
3298
|
annotation: {
|
|
2310
3299
|
rule: string;
|
|
@@ -2319,6 +3308,9 @@ declare const _default: {
|
|
|
2319
3308
|
rule: string;
|
|
2320
3309
|
type: string;
|
|
2321
3310
|
id: number;
|
|
3311
|
+
options: {
|
|
3312
|
+
packed: boolean;
|
|
3313
|
+
};
|
|
2322
3314
|
};
|
|
2323
3315
|
sourceFile: {
|
|
2324
3316
|
type: string;
|
|
@@ -2332,10 +3324,31 @@ declare const _default: {
|
|
|
2332
3324
|
type: string;
|
|
2333
3325
|
id: number;
|
|
2334
3326
|
};
|
|
3327
|
+
semantic: {
|
|
3328
|
+
type: string;
|
|
3329
|
+
id: number;
|
|
3330
|
+
};
|
|
3331
|
+
};
|
|
3332
|
+
nested: {
|
|
3333
|
+
Semantic: {
|
|
3334
|
+
values: {
|
|
3335
|
+
NONE: number;
|
|
3336
|
+
SET: number;
|
|
3337
|
+
ALIAS: number;
|
|
3338
|
+
};
|
|
3339
|
+
};
|
|
2335
3340
|
};
|
|
2336
3341
|
};
|
|
2337
3342
|
};
|
|
2338
3343
|
};
|
|
3344
|
+
SymbolVisibility: {
|
|
3345
|
+
edition: string;
|
|
3346
|
+
values: {
|
|
3347
|
+
VISIBILITY_UNSET: number;
|
|
3348
|
+
VISIBILITY_LOCAL: number;
|
|
3349
|
+
VISIBILITY_EXPORT: number;
|
|
3350
|
+
};
|
|
3351
|
+
};
|
|
2339
3352
|
};
|
|
2340
3353
|
};
|
|
2341
3354
|
};
|