@zilliz/milvus2-sdk-node 2.5.7 → 2.5.9

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.
Files changed (51) hide show
  1. package/dist/milvus/MilvusLiteClient.d.ts +5 -0
  2. package/dist/milvus/MilvusLiteClient.js +40 -0
  3. package/dist/milvus/MilvusLiteClient.js.map +1 -0
  4. package/dist/milvus/const/milvus.d.ts +4 -0
  5. package/dist/milvus/const/milvus.js +6 -1
  6. package/dist/milvus/const/milvus.js.map +1 -1
  7. package/dist/milvus/grpc/BaseClient.d.ts +0 -4
  8. package/dist/milvus/grpc/BaseClient.js +11 -20
  9. package/dist/milvus/grpc/BaseClient.js.map +1 -1
  10. package/dist/milvus/grpc/Data.js +7 -1
  11. package/dist/milvus/grpc/Data.js.map +1 -1
  12. package/dist/milvus/grpc/GrpcClient.d.ts +7 -1
  13. package/dist/milvus/grpc/GrpcClient.js +15 -1
  14. package/dist/milvus/grpc/GrpcClient.js.map +1 -1
  15. package/dist/milvus/http/Vector.js +14 -1
  16. package/dist/milvus/http/Vector.js.map +1 -1
  17. package/dist/milvus/index.d.ts +1 -0
  18. package/dist/milvus/index.js +1 -0
  19. package/dist/milvus/index.js.map +1 -1
  20. package/dist/milvus/lite/MilvusLiteServer.d.ts +11 -0
  21. package/dist/milvus/lite/MilvusLiteServer.js +201 -0
  22. package/dist/milvus/lite/MilvusLiteServer.js.map +1 -0
  23. package/dist/milvus/lite/start.py +66 -0
  24. package/dist/milvus/proto-json/milvus.base.d.ts +7092 -0
  25. package/dist/milvus/proto-json/milvus.base.js +7208 -0
  26. package/dist/milvus/proto-json/milvus.base.js.map +1 -0
  27. package/dist/milvus/proto-json/milvus.d.ts +7092 -0
  28. package/dist/milvus/proto-json/milvus.js +7208 -0
  29. package/dist/milvus/proto-json/milvus.js.map +1 -0
  30. package/dist/milvus/proto-json/schema.base.d.ts +2029 -0
  31. package/dist/milvus/proto-json/schema.base.js +2132 -0
  32. package/dist/milvus/proto-json/schema.base.js.map +1 -0
  33. package/dist/milvus/types/Client.d.ts +23 -4
  34. package/dist/milvus/types/Collection.d.ts +1 -0
  35. package/dist/milvus/types/Data.d.ts +1 -0
  36. package/dist/milvus/types/Http.d.ts +6 -3
  37. package/dist/milvus/types/Partition.d.ts +2 -0
  38. package/dist/milvus/utils/Format.js +31 -35
  39. package/dist/milvus/utils/Format.js.map +1 -1
  40. package/dist/milvus/utils/Grpc.d.ts +0 -1
  41. package/dist/milvus/utils/Grpc.js +3 -5
  42. package/dist/milvus/utils/Grpc.js.map +1 -1
  43. package/dist/sdk.json +1 -1
  44. package/package.json +8 -5
  45. package/dist/proto/proto/common.proto +0 -511
  46. package/dist/proto/proto/feder.proto +0 -40
  47. package/dist/proto/proto/google/protobuf/descriptor.proto +0 -1411
  48. package/dist/proto/proto/milvus.proto +0 -2103
  49. package/dist/proto/proto/msg.proto +0 -133
  50. package/dist/proto/proto/rg.proto +0 -35
  51. package/dist/proto/proto/schema.proto +0 -257
@@ -0,0 +1,2132 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ "nested": {
5
+ "milvus": {
6
+ "nested": {
7
+ "proto": {
8
+ "nested": {
9
+ "schema": {
10
+ "options": {
11
+ "go_package": "github.com/milvus-io/milvus-proto/go-api/v2/schemapb",
12
+ "java_multiple_files": true,
13
+ "java_package": "io.milvus.grpc",
14
+ "java_outer_classname": "SchemaProto",
15
+ "java_generate_equals_and_hash": true,
16
+ "csharp_namespace": "Milvus.Client.Grpc"
17
+ },
18
+ "nested": {
19
+ "DataType": {
20
+ "values": {
21
+ "None": 0,
22
+ "Bool": 1,
23
+ "Int8": 2,
24
+ "Int16": 3,
25
+ "Int32": 4,
26
+ "Int64": 5,
27
+ "Float": 10,
28
+ "Double": 11,
29
+ "String": 20,
30
+ "VarChar": 21,
31
+ "Array": 22,
32
+ "JSON": 23,
33
+ "Geometry": 24,
34
+ "BinaryVector": 100,
35
+ "FloatVector": 101,
36
+ "Float16Vector": 102,
37
+ "BFloat16Vector": 103,
38
+ "SparseFloatVector": 104
39
+ }
40
+ },
41
+ "FunctionType": {
42
+ "values": {
43
+ "Unknown": 0,
44
+ "BM25": 1,
45
+ "TextEmbedding": 2
46
+ }
47
+ },
48
+ "FieldState": {
49
+ "values": {
50
+ "FieldCreated": 0,
51
+ "FieldCreating": 1,
52
+ "FieldDropping": 2,
53
+ "FieldDropped": 3
54
+ }
55
+ },
56
+ "FieldSchema": {
57
+ "fields": {
58
+ "fieldID": {
59
+ "type": "int64",
60
+ "id": 1
61
+ },
62
+ "name": {
63
+ "type": "string",
64
+ "id": 2
65
+ },
66
+ "isPrimaryKey": {
67
+ "type": "bool",
68
+ "id": 3
69
+ },
70
+ "description": {
71
+ "type": "string",
72
+ "id": 4
73
+ },
74
+ "dataType": {
75
+ "type": "DataType",
76
+ "id": 5
77
+ },
78
+ "typeParams": {
79
+ "rule": "repeated",
80
+ "type": "common.KeyValuePair",
81
+ "id": 6
82
+ },
83
+ "indexParams": {
84
+ "rule": "repeated",
85
+ "type": "common.KeyValuePair",
86
+ "id": 7
87
+ },
88
+ "autoID": {
89
+ "type": "bool",
90
+ "id": 8
91
+ },
92
+ "state": {
93
+ "type": "FieldState",
94
+ "id": 9
95
+ },
96
+ "elementType": {
97
+ "type": "DataType",
98
+ "id": 10
99
+ },
100
+ "defaultValue": {
101
+ "type": "ValueField",
102
+ "id": 11
103
+ },
104
+ "isDynamic": {
105
+ "type": "bool",
106
+ "id": 12
107
+ },
108
+ "isPartitionKey": {
109
+ "type": "bool",
110
+ "id": 13
111
+ },
112
+ "isClusteringKey": {
113
+ "type": "bool",
114
+ "id": 14
115
+ },
116
+ "nullable": {
117
+ "type": "bool",
118
+ "id": 15
119
+ },
120
+ "isFunctionOutput": {
121
+ "type": "bool",
122
+ "id": 16
123
+ }
124
+ }
125
+ },
126
+ "FunctionSchema": {
127
+ "fields": {
128
+ "name": {
129
+ "type": "string",
130
+ "id": 1
131
+ },
132
+ "id": {
133
+ "type": "int64",
134
+ "id": 2
135
+ },
136
+ "description": {
137
+ "type": "string",
138
+ "id": 3
139
+ },
140
+ "type": {
141
+ "type": "FunctionType",
142
+ "id": 4
143
+ },
144
+ "inputFieldNames": {
145
+ "rule": "repeated",
146
+ "type": "string",
147
+ "id": 5
148
+ },
149
+ "inputFieldIds": {
150
+ "rule": "repeated",
151
+ "type": "int64",
152
+ "id": 6
153
+ },
154
+ "outputFieldNames": {
155
+ "rule": "repeated",
156
+ "type": "string",
157
+ "id": 7
158
+ },
159
+ "outputFieldIds": {
160
+ "rule": "repeated",
161
+ "type": "int64",
162
+ "id": 8
163
+ },
164
+ "params": {
165
+ "rule": "repeated",
166
+ "type": "common.KeyValuePair",
167
+ "id": 9
168
+ }
169
+ }
170
+ },
171
+ "CollectionSchema": {
172
+ "fields": {
173
+ "name": {
174
+ "type": "string",
175
+ "id": 1
176
+ },
177
+ "description": {
178
+ "type": "string",
179
+ "id": 2
180
+ },
181
+ "autoID": {
182
+ "type": "bool",
183
+ "id": 3,
184
+ "options": {
185
+ "deprecated": true
186
+ }
187
+ },
188
+ "fields": {
189
+ "rule": "repeated",
190
+ "type": "FieldSchema",
191
+ "id": 4
192
+ },
193
+ "enableDynamicField": {
194
+ "type": "bool",
195
+ "id": 5
196
+ },
197
+ "properties": {
198
+ "rule": "repeated",
199
+ "type": "common.KeyValuePair",
200
+ "id": 6
201
+ },
202
+ "functions": {
203
+ "rule": "repeated",
204
+ "type": "FunctionSchema",
205
+ "id": 7
206
+ },
207
+ "dbName": {
208
+ "type": "string",
209
+ "id": 8
210
+ }
211
+ }
212
+ },
213
+ "BoolArray": {
214
+ "fields": {
215
+ "data": {
216
+ "rule": "repeated",
217
+ "type": "bool",
218
+ "id": 1
219
+ }
220
+ }
221
+ },
222
+ "IntArray": {
223
+ "fields": {
224
+ "data": {
225
+ "rule": "repeated",
226
+ "type": "int32",
227
+ "id": 1
228
+ }
229
+ }
230
+ },
231
+ "LongArray": {
232
+ "fields": {
233
+ "data": {
234
+ "rule": "repeated",
235
+ "type": "int64",
236
+ "id": 1
237
+ }
238
+ }
239
+ },
240
+ "FloatArray": {
241
+ "fields": {
242
+ "data": {
243
+ "rule": "repeated",
244
+ "type": "float",
245
+ "id": 1
246
+ }
247
+ }
248
+ },
249
+ "DoubleArray": {
250
+ "fields": {
251
+ "data": {
252
+ "rule": "repeated",
253
+ "type": "double",
254
+ "id": 1
255
+ }
256
+ }
257
+ },
258
+ "BytesArray": {
259
+ "fields": {
260
+ "data": {
261
+ "rule": "repeated",
262
+ "type": "bytes",
263
+ "id": 1
264
+ }
265
+ }
266
+ },
267
+ "StringArray": {
268
+ "fields": {
269
+ "data": {
270
+ "rule": "repeated",
271
+ "type": "string",
272
+ "id": 1
273
+ }
274
+ }
275
+ },
276
+ "ArrayArray": {
277
+ "fields": {
278
+ "data": {
279
+ "rule": "repeated",
280
+ "type": "ScalarField",
281
+ "id": 1
282
+ },
283
+ "elementType": {
284
+ "type": "DataType",
285
+ "id": 2
286
+ }
287
+ }
288
+ },
289
+ "JSONArray": {
290
+ "fields": {
291
+ "data": {
292
+ "rule": "repeated",
293
+ "type": "bytes",
294
+ "id": 1
295
+ }
296
+ }
297
+ },
298
+ "GeometryArray": {
299
+ "fields": {
300
+ "data": {
301
+ "rule": "repeated",
302
+ "type": "bytes",
303
+ "id": 1
304
+ }
305
+ }
306
+ },
307
+ "ValueField": {
308
+ "oneofs": {
309
+ "data": {
310
+ "oneof": [
311
+ "boolData",
312
+ "intData",
313
+ "longData",
314
+ "floatData",
315
+ "doubleData",
316
+ "stringData",
317
+ "bytesData"
318
+ ]
319
+ }
320
+ },
321
+ "fields": {
322
+ "boolData": {
323
+ "type": "bool",
324
+ "id": 1
325
+ },
326
+ "intData": {
327
+ "type": "int32",
328
+ "id": 2
329
+ },
330
+ "longData": {
331
+ "type": "int64",
332
+ "id": 3
333
+ },
334
+ "floatData": {
335
+ "type": "float",
336
+ "id": 4
337
+ },
338
+ "doubleData": {
339
+ "type": "double",
340
+ "id": 5
341
+ },
342
+ "stringData": {
343
+ "type": "string",
344
+ "id": 6
345
+ },
346
+ "bytesData": {
347
+ "type": "bytes",
348
+ "id": 7
349
+ }
350
+ }
351
+ },
352
+ "ScalarField": {
353
+ "oneofs": {
354
+ "data": {
355
+ "oneof": [
356
+ "boolData",
357
+ "intData",
358
+ "longData",
359
+ "floatData",
360
+ "doubleData",
361
+ "stringData",
362
+ "bytesData",
363
+ "arrayData",
364
+ "jsonData",
365
+ "geometryData"
366
+ ]
367
+ }
368
+ },
369
+ "fields": {
370
+ "boolData": {
371
+ "type": "BoolArray",
372
+ "id": 1
373
+ },
374
+ "intData": {
375
+ "type": "IntArray",
376
+ "id": 2
377
+ },
378
+ "longData": {
379
+ "type": "LongArray",
380
+ "id": 3
381
+ },
382
+ "floatData": {
383
+ "type": "FloatArray",
384
+ "id": 4
385
+ },
386
+ "doubleData": {
387
+ "type": "DoubleArray",
388
+ "id": 5
389
+ },
390
+ "stringData": {
391
+ "type": "StringArray",
392
+ "id": 6
393
+ },
394
+ "bytesData": {
395
+ "type": "BytesArray",
396
+ "id": 7
397
+ },
398
+ "arrayData": {
399
+ "type": "ArrayArray",
400
+ "id": 8
401
+ },
402
+ "jsonData": {
403
+ "type": "JSONArray",
404
+ "id": 9
405
+ },
406
+ "geometryData": {
407
+ "type": "GeometryArray",
408
+ "id": 10
409
+ }
410
+ }
411
+ },
412
+ "SparseFloatArray": {
413
+ "fields": {
414
+ "contents": {
415
+ "rule": "repeated",
416
+ "type": "bytes",
417
+ "id": 1
418
+ },
419
+ "dim": {
420
+ "type": "int64",
421
+ "id": 2
422
+ }
423
+ }
424
+ },
425
+ "VectorField": {
426
+ "oneofs": {
427
+ "data": {
428
+ "oneof": [
429
+ "floatVector",
430
+ "binaryVector",
431
+ "float16Vector",
432
+ "bfloat16Vector",
433
+ "sparseFloatVector"
434
+ ]
435
+ }
436
+ },
437
+ "fields": {
438
+ "dim": {
439
+ "type": "int64",
440
+ "id": 1
441
+ },
442
+ "floatVector": {
443
+ "type": "FloatArray",
444
+ "id": 2
445
+ },
446
+ "binaryVector": {
447
+ "type": "bytes",
448
+ "id": 3
449
+ },
450
+ "float16Vector": {
451
+ "type": "bytes",
452
+ "id": 4
453
+ },
454
+ "bfloat16Vector": {
455
+ "type": "bytes",
456
+ "id": 5
457
+ },
458
+ "sparseFloatVector": {
459
+ "type": "SparseFloatArray",
460
+ "id": 6
461
+ }
462
+ }
463
+ },
464
+ "FieldData": {
465
+ "oneofs": {
466
+ "field": {
467
+ "oneof": [
468
+ "scalars",
469
+ "vectors"
470
+ ]
471
+ }
472
+ },
473
+ "fields": {
474
+ "type": {
475
+ "type": "DataType",
476
+ "id": 1
477
+ },
478
+ "fieldName": {
479
+ "type": "string",
480
+ "id": 2
481
+ },
482
+ "scalars": {
483
+ "type": "ScalarField",
484
+ "id": 3
485
+ },
486
+ "vectors": {
487
+ "type": "VectorField",
488
+ "id": 4
489
+ },
490
+ "fieldId": {
491
+ "type": "int64",
492
+ "id": 5
493
+ },
494
+ "isDynamic": {
495
+ "type": "bool",
496
+ "id": 6
497
+ },
498
+ "validData": {
499
+ "rule": "repeated",
500
+ "type": "bool",
501
+ "id": 7
502
+ }
503
+ }
504
+ },
505
+ "IDs": {
506
+ "oneofs": {
507
+ "idField": {
508
+ "oneof": [
509
+ "intId",
510
+ "strId"
511
+ ]
512
+ }
513
+ },
514
+ "fields": {
515
+ "intId": {
516
+ "type": "LongArray",
517
+ "id": 1
518
+ },
519
+ "strId": {
520
+ "type": "StringArray",
521
+ "id": 2
522
+ }
523
+ }
524
+ },
525
+ "SearchIteratorV2Results": {
526
+ "fields": {
527
+ "token": {
528
+ "type": "string",
529
+ "id": 1
530
+ },
531
+ "lastBound": {
532
+ "type": "float",
533
+ "id": 2
534
+ }
535
+ }
536
+ },
537
+ "SearchResultData": {
538
+ "oneofs": {
539
+ "_searchIteratorV2Results": {
540
+ "oneof": [
541
+ "searchIteratorV2Results"
542
+ ]
543
+ }
544
+ },
545
+ "fields": {
546
+ "numQueries": {
547
+ "type": "int64",
548
+ "id": 1
549
+ },
550
+ "topK": {
551
+ "type": "int64",
552
+ "id": 2
553
+ },
554
+ "fieldsData": {
555
+ "rule": "repeated",
556
+ "type": "FieldData",
557
+ "id": 3
558
+ },
559
+ "scores": {
560
+ "rule": "repeated",
561
+ "type": "float",
562
+ "id": 4
563
+ },
564
+ "ids": {
565
+ "type": "IDs",
566
+ "id": 5
567
+ },
568
+ "topks": {
569
+ "rule": "repeated",
570
+ "type": "int64",
571
+ "id": 6
572
+ },
573
+ "outputFields": {
574
+ "rule": "repeated",
575
+ "type": "string",
576
+ "id": 7
577
+ },
578
+ "groupByFieldValue": {
579
+ "type": "FieldData",
580
+ "id": 8
581
+ },
582
+ "allSearchCount": {
583
+ "type": "int64",
584
+ "id": 9
585
+ },
586
+ "distances": {
587
+ "rule": "repeated",
588
+ "type": "float",
589
+ "id": 10
590
+ },
591
+ "searchIteratorV2Results": {
592
+ "type": "SearchIteratorV2Results",
593
+ "id": 11,
594
+ "options": {
595
+ "proto3_optional": true
596
+ }
597
+ },
598
+ "recalls": {
599
+ "rule": "repeated",
600
+ "type": "float",
601
+ "id": 12
602
+ },
603
+ "primaryFieldName": {
604
+ "type": "string",
605
+ "id": 13
606
+ }
607
+ }
608
+ },
609
+ "VectorClusteringInfo": {
610
+ "fields": {
611
+ "field": {
612
+ "type": "string",
613
+ "id": 1
614
+ },
615
+ "centroid": {
616
+ "type": "schema.VectorField",
617
+ "id": 2
618
+ }
619
+ }
620
+ },
621
+ "ScalarClusteringInfo": {
622
+ "fields": {
623
+ "field": {
624
+ "type": "string",
625
+ "id": 1
626
+ }
627
+ }
628
+ },
629
+ "ClusteringInfo": {
630
+ "fields": {
631
+ "vectorClusteringInfos": {
632
+ "rule": "repeated",
633
+ "type": "VectorClusteringInfo",
634
+ "id": 1
635
+ },
636
+ "scalarClusteringInfos": {
637
+ "rule": "repeated",
638
+ "type": "ScalarClusteringInfo",
639
+ "id": 2
640
+ }
641
+ }
642
+ },
643
+ "TemplateValue": {
644
+ "oneofs": {
645
+ "val": {
646
+ "oneof": [
647
+ "boolVal",
648
+ "int64Val",
649
+ "floatVal",
650
+ "stringVal",
651
+ "arrayVal"
652
+ ]
653
+ }
654
+ },
655
+ "fields": {
656
+ "boolVal": {
657
+ "type": "bool",
658
+ "id": 1
659
+ },
660
+ "int64Val": {
661
+ "type": "int64",
662
+ "id": 2
663
+ },
664
+ "floatVal": {
665
+ "type": "double",
666
+ "id": 3
667
+ },
668
+ "stringVal": {
669
+ "type": "string",
670
+ "id": 4
671
+ },
672
+ "arrayVal": {
673
+ "type": "TemplateArrayValue",
674
+ "id": 5
675
+ }
676
+ }
677
+ },
678
+ "TemplateArrayValue": {
679
+ "oneofs": {
680
+ "data": {
681
+ "oneof": [
682
+ "boolData",
683
+ "longData",
684
+ "doubleData",
685
+ "stringData",
686
+ "arrayData",
687
+ "jsonData"
688
+ ]
689
+ }
690
+ },
691
+ "fields": {
692
+ "boolData": {
693
+ "type": "BoolArray",
694
+ "id": 1
695
+ },
696
+ "longData": {
697
+ "type": "LongArray",
698
+ "id": 2
699
+ },
700
+ "doubleData": {
701
+ "type": "DoubleArray",
702
+ "id": 3
703
+ },
704
+ "stringData": {
705
+ "type": "StringArray",
706
+ "id": 4
707
+ },
708
+ "arrayData": {
709
+ "type": "TemplateArrayValueArray",
710
+ "id": 5
711
+ },
712
+ "jsonData": {
713
+ "type": "JSONArray",
714
+ "id": 6
715
+ }
716
+ }
717
+ },
718
+ "TemplateArrayValueArray": {
719
+ "fields": {
720
+ "data": {
721
+ "rule": "repeated",
722
+ "type": "TemplateArrayValue",
723
+ "id": 1
724
+ }
725
+ }
726
+ }
727
+ }
728
+ },
729
+ "common": {
730
+ "options": {
731
+ "go_package": "github.com/milvus-io/milvus-proto/go-api/v2/commonpb",
732
+ "java_multiple_files": true,
733
+ "java_package": "io.milvus.grpc",
734
+ "java_outer_classname": "CommonProto",
735
+ "java_generate_equals_and_hash": true,
736
+ "csharp_namespace": "Milvus.Client.Grpc"
737
+ },
738
+ "nested": {
739
+ "ErrorCode": {
740
+ "options": {
741
+ "deprecated": true
742
+ },
743
+ "values": {
744
+ "Success": 0,
745
+ "UnexpectedError": 1,
746
+ "ConnectFailed": 2,
747
+ "PermissionDenied": 3,
748
+ "CollectionNotExists": 4,
749
+ "IllegalArgument": 5,
750
+ "IllegalDimension": 7,
751
+ "IllegalIndexType": 8,
752
+ "IllegalCollectionName": 9,
753
+ "IllegalTOPK": 10,
754
+ "IllegalRowRecord": 11,
755
+ "IllegalVectorID": 12,
756
+ "IllegalSearchResult": 13,
757
+ "FileNotFound": 14,
758
+ "MetaFailed": 15,
759
+ "CacheFailed": 16,
760
+ "CannotCreateFolder": 17,
761
+ "CannotCreateFile": 18,
762
+ "CannotDeleteFolder": 19,
763
+ "CannotDeleteFile": 20,
764
+ "BuildIndexError": 21,
765
+ "IllegalNLIST": 22,
766
+ "IllegalMetricType": 23,
767
+ "OutOfMemory": 24,
768
+ "IndexNotExist": 25,
769
+ "EmptyCollection": 26,
770
+ "UpdateImportTaskFailure": 27,
771
+ "CollectionNameNotFound": 28,
772
+ "CreateCredentialFailure": 29,
773
+ "UpdateCredentialFailure": 30,
774
+ "DeleteCredentialFailure": 31,
775
+ "GetCredentialFailure": 32,
776
+ "ListCredUsersFailure": 33,
777
+ "GetUserFailure": 34,
778
+ "CreateRoleFailure": 35,
779
+ "DropRoleFailure": 36,
780
+ "OperateUserRoleFailure": 37,
781
+ "SelectRoleFailure": 38,
782
+ "SelectUserFailure": 39,
783
+ "SelectResourceFailure": 40,
784
+ "OperatePrivilegeFailure": 41,
785
+ "SelectGrantFailure": 42,
786
+ "RefreshPolicyInfoCacheFailure": 43,
787
+ "ListPolicyFailure": 44,
788
+ "NotShardLeader": 45,
789
+ "NoReplicaAvailable": 46,
790
+ "SegmentNotFound": 47,
791
+ "ForceDeny": 48,
792
+ "RateLimit": 49,
793
+ "NodeIDNotMatch": 50,
794
+ "UpsertAutoIDTrue": 51,
795
+ "InsufficientMemoryToLoad": 52,
796
+ "MemoryQuotaExhausted": 53,
797
+ "DiskQuotaExhausted": 54,
798
+ "TimeTickLongDelay": 55,
799
+ "NotReadyServe": 56,
800
+ "NotReadyCoordActivating": 57,
801
+ "CreatePrivilegeGroupFailure": 58,
802
+ "DropPrivilegeGroupFailure": 59,
803
+ "ListPrivilegeGroupsFailure": 60,
804
+ "OperatePrivilegeGroupFailure": 61,
805
+ "SchemaMismatch": 62,
806
+ "DataCoordNA": 100,
807
+ "DDRequestRace": 1000
808
+ }
809
+ },
810
+ "IndexState": {
811
+ "values": {
812
+ "IndexStateNone": 0,
813
+ "Unissued": 1,
814
+ "InProgress": 2,
815
+ "Finished": 3,
816
+ "Failed": 4,
817
+ "Retry": 5
818
+ }
819
+ },
820
+ "SegmentState": {
821
+ "values": {
822
+ "SegmentStateNone": 0,
823
+ "NotExist": 1,
824
+ "Growing": 2,
825
+ "Sealed": 3,
826
+ "Flushed": 4,
827
+ "Flushing": 5,
828
+ "Dropped": 6,
829
+ "Importing": 7
830
+ }
831
+ },
832
+ "SegmentLevel": {
833
+ "values": {
834
+ "Legacy": 0,
835
+ "L0": 1,
836
+ "L1": 2,
837
+ "L2": 3
838
+ }
839
+ },
840
+ "Status": {
841
+ "fields": {
842
+ "errorCode": {
843
+ "type": "ErrorCode",
844
+ "id": 1,
845
+ "options": {
846
+ "deprecated": true
847
+ }
848
+ },
849
+ "reason": {
850
+ "type": "string",
851
+ "id": 2
852
+ },
853
+ "code": {
854
+ "type": "int32",
855
+ "id": 3
856
+ },
857
+ "retriable": {
858
+ "type": "bool",
859
+ "id": 4
860
+ },
861
+ "detail": {
862
+ "type": "string",
863
+ "id": 5
864
+ },
865
+ "extraInfo": {
866
+ "keyType": "string",
867
+ "type": "string",
868
+ "id": 6
869
+ }
870
+ }
871
+ },
872
+ "KeyValuePair": {
873
+ "fields": {
874
+ "key": {
875
+ "type": "string",
876
+ "id": 1
877
+ },
878
+ "value": {
879
+ "type": "string",
880
+ "id": 2
881
+ }
882
+ }
883
+ },
884
+ "KeyDataPair": {
885
+ "fields": {
886
+ "key": {
887
+ "type": "string",
888
+ "id": 1
889
+ },
890
+ "data": {
891
+ "type": "bytes",
892
+ "id": 2
893
+ }
894
+ }
895
+ },
896
+ "Blob": {
897
+ "fields": {
898
+ "value": {
899
+ "type": "bytes",
900
+ "id": 1
901
+ }
902
+ }
903
+ },
904
+ "PlaceholderType": {
905
+ "values": {
906
+ "None": 0,
907
+ "BinaryVector": 100,
908
+ "FloatVector": 101,
909
+ "Float16Vector": 102,
910
+ "BFloat16Vector": 103,
911
+ "SparseFloatVector": 104,
912
+ "Int64": 5,
913
+ "VarChar": 21
914
+ }
915
+ },
916
+ "PlaceholderValue": {
917
+ "fields": {
918
+ "tag": {
919
+ "type": "string",
920
+ "id": 1
921
+ },
922
+ "type": {
923
+ "type": "PlaceholderType",
924
+ "id": 2
925
+ },
926
+ "values": {
927
+ "rule": "repeated",
928
+ "type": "bytes",
929
+ "id": 3
930
+ }
931
+ }
932
+ },
933
+ "PlaceholderGroup": {
934
+ "fields": {
935
+ "placeholders": {
936
+ "rule": "repeated",
937
+ "type": "PlaceholderValue",
938
+ "id": 1
939
+ }
940
+ }
941
+ },
942
+ "Address": {
943
+ "fields": {
944
+ "ip": {
945
+ "type": "string",
946
+ "id": 1
947
+ },
948
+ "port": {
949
+ "type": "int64",
950
+ "id": 2
951
+ }
952
+ }
953
+ },
954
+ "MsgType": {
955
+ "values": {
956
+ "Undefined": 0,
957
+ "CreateCollection": 100,
958
+ "DropCollection": 101,
959
+ "HasCollection": 102,
960
+ "DescribeCollection": 103,
961
+ "ShowCollections": 104,
962
+ "GetSystemConfigs": 105,
963
+ "LoadCollection": 106,
964
+ "ReleaseCollection": 107,
965
+ "CreateAlias": 108,
966
+ "DropAlias": 109,
967
+ "AlterAlias": 110,
968
+ "AlterCollection": 111,
969
+ "RenameCollection": 112,
970
+ "DescribeAlias": 113,
971
+ "ListAliases": 114,
972
+ "AlterCollectionField": 115,
973
+ "CreatePartition": 200,
974
+ "DropPartition": 201,
975
+ "HasPartition": 202,
976
+ "DescribePartition": 203,
977
+ "ShowPartitions": 204,
978
+ "LoadPartitions": 205,
979
+ "ReleasePartitions": 206,
980
+ "ShowSegments": 250,
981
+ "DescribeSegment": 251,
982
+ "LoadSegments": 252,
983
+ "ReleaseSegments": 253,
984
+ "HandoffSegments": 254,
985
+ "LoadBalanceSegments": 255,
986
+ "DescribeSegments": 256,
987
+ "FederListIndexedSegment": 257,
988
+ "FederDescribeSegmentIndexData": 258,
989
+ "CreateIndex": 300,
990
+ "DescribeIndex": 301,
991
+ "DropIndex": 302,
992
+ "GetIndexStatistics": 303,
993
+ "AlterIndex": 304,
994
+ "Insert": 400,
995
+ "Delete": 401,
996
+ "Flush": 402,
997
+ "ResendSegmentStats": 403,
998
+ "Upsert": 404,
999
+ "ManualFlush": 405,
1000
+ "FlushSegment": 406,
1001
+ "CreateSegment": 407,
1002
+ "Import": 408,
1003
+ "Search": 500,
1004
+ "SearchResult": 501,
1005
+ "GetIndexState": 502,
1006
+ "GetIndexBuildProgress": 503,
1007
+ "GetCollectionStatistics": 504,
1008
+ "GetPartitionStatistics": 505,
1009
+ "Retrieve": 506,
1010
+ "RetrieveResult": 507,
1011
+ "WatchDmChannels": 508,
1012
+ "RemoveDmChannels": 509,
1013
+ "WatchQueryChannels": 510,
1014
+ "RemoveQueryChannels": 511,
1015
+ "SealedSegmentsChangeInfo": 512,
1016
+ "WatchDeltaChannels": 513,
1017
+ "GetShardLeaders": 514,
1018
+ "GetReplicas": 515,
1019
+ "UnsubDmChannel": 516,
1020
+ "GetDistribution": 517,
1021
+ "SyncDistribution": 518,
1022
+ "SegmentInfo": 600,
1023
+ "SystemInfo": 601,
1024
+ "GetRecoveryInfo": 602,
1025
+ "GetSegmentState": 603,
1026
+ "TimeTick": 1200,
1027
+ "QueryNodeStats": 1201,
1028
+ "LoadIndex": 1202,
1029
+ "RequestID": 1203,
1030
+ "RequestTSO": 1204,
1031
+ "AllocateSegment": 1205,
1032
+ "SegmentStatistics": 1206,
1033
+ "SegmentFlushDone": 1207,
1034
+ "DataNodeTt": 1208,
1035
+ "Connect": 1209,
1036
+ "ListClientInfos": 1210,
1037
+ "AllocTimestamp": 1211,
1038
+ "Replicate": 1212,
1039
+ "CreateCredential": 1500,
1040
+ "GetCredential": 1501,
1041
+ "DeleteCredential": 1502,
1042
+ "UpdateCredential": 1503,
1043
+ "ListCredUsernames": 1504,
1044
+ "CreateRole": 1600,
1045
+ "DropRole": 1601,
1046
+ "OperateUserRole": 1602,
1047
+ "SelectRole": 1603,
1048
+ "SelectUser": 1604,
1049
+ "SelectResource": 1605,
1050
+ "OperatePrivilege": 1606,
1051
+ "SelectGrant": 1607,
1052
+ "RefreshPolicyInfoCache": 1608,
1053
+ "ListPolicy": 1609,
1054
+ "CreatePrivilegeGroup": 1610,
1055
+ "DropPrivilegeGroup": 1611,
1056
+ "ListPrivilegeGroups": 1612,
1057
+ "OperatePrivilegeGroup": 1613,
1058
+ "OperatePrivilegeV2": 1614,
1059
+ "CreateResourceGroup": 1700,
1060
+ "DropResourceGroup": 1701,
1061
+ "ListResourceGroups": 1702,
1062
+ "DescribeResourceGroup": 1703,
1063
+ "TransferNode": 1704,
1064
+ "TransferReplica": 1705,
1065
+ "UpdateResourceGroups": 1706,
1066
+ "CreateDatabase": 1801,
1067
+ "DropDatabase": 1802,
1068
+ "ListDatabases": 1803,
1069
+ "AlterDatabase": 1804,
1070
+ "DescribeDatabase": 1805
1071
+ }
1072
+ },
1073
+ "MsgBase": {
1074
+ "fields": {
1075
+ "msgType": {
1076
+ "type": "MsgType",
1077
+ "id": 1
1078
+ },
1079
+ "msgID": {
1080
+ "type": "int64",
1081
+ "id": 2
1082
+ },
1083
+ "timestamp": {
1084
+ "type": "uint64",
1085
+ "id": 3
1086
+ },
1087
+ "sourceID": {
1088
+ "type": "int64",
1089
+ "id": 4
1090
+ },
1091
+ "targetID": {
1092
+ "type": "int64",
1093
+ "id": 5
1094
+ },
1095
+ "properties": {
1096
+ "keyType": "string",
1097
+ "type": "string",
1098
+ "id": 6
1099
+ },
1100
+ "replicateInfo": {
1101
+ "type": "ReplicateInfo",
1102
+ "id": 7
1103
+ }
1104
+ }
1105
+ },
1106
+ "ReplicateInfo": {
1107
+ "fields": {
1108
+ "isReplicate": {
1109
+ "type": "bool",
1110
+ "id": 1
1111
+ },
1112
+ "msgTimestamp": {
1113
+ "type": "uint64",
1114
+ "id": 2
1115
+ },
1116
+ "replicateID": {
1117
+ "type": "string",
1118
+ "id": 3
1119
+ }
1120
+ }
1121
+ },
1122
+ "DslType": {
1123
+ "values": {
1124
+ "Dsl": 0,
1125
+ "BoolExprV1": 1
1126
+ }
1127
+ },
1128
+ "MsgHeader": {
1129
+ "fields": {
1130
+ "base": {
1131
+ "type": "common.MsgBase",
1132
+ "id": 1
1133
+ }
1134
+ }
1135
+ },
1136
+ "DMLMsgHeader": {
1137
+ "fields": {
1138
+ "base": {
1139
+ "type": "common.MsgBase",
1140
+ "id": 1
1141
+ },
1142
+ "shardName": {
1143
+ "type": "string",
1144
+ "id": 2
1145
+ }
1146
+ }
1147
+ },
1148
+ "CompactionState": {
1149
+ "values": {
1150
+ "UndefiedState": 0,
1151
+ "Executing": 1,
1152
+ "Completed": 2
1153
+ }
1154
+ },
1155
+ "ConsistencyLevel": {
1156
+ "values": {
1157
+ "Strong": 0,
1158
+ "Session": 1,
1159
+ "Bounded": 2,
1160
+ "Eventually": 3,
1161
+ "Customized": 4
1162
+ }
1163
+ },
1164
+ "ImportState": {
1165
+ "values": {
1166
+ "ImportPending": 0,
1167
+ "ImportFailed": 1,
1168
+ "ImportStarted": 2,
1169
+ "ImportPersisted": 5,
1170
+ "ImportFlushed": 8,
1171
+ "ImportCompleted": 6,
1172
+ "ImportFailedAndCleaned": 7
1173
+ }
1174
+ },
1175
+ "ObjectType": {
1176
+ "values": {
1177
+ "Collection": 0,
1178
+ "Global": 1,
1179
+ "User": 2
1180
+ }
1181
+ },
1182
+ "ObjectPrivilege": {
1183
+ "values": {
1184
+ "PrivilegeAll": 0,
1185
+ "PrivilegeCreateCollection": 1,
1186
+ "PrivilegeDropCollection": 2,
1187
+ "PrivilegeDescribeCollection": 3,
1188
+ "PrivilegeShowCollections": 4,
1189
+ "PrivilegeLoad": 5,
1190
+ "PrivilegeRelease": 6,
1191
+ "PrivilegeCompaction": 7,
1192
+ "PrivilegeInsert": 8,
1193
+ "PrivilegeDelete": 9,
1194
+ "PrivilegeGetStatistics": 10,
1195
+ "PrivilegeCreateIndex": 11,
1196
+ "PrivilegeIndexDetail": 12,
1197
+ "PrivilegeDropIndex": 13,
1198
+ "PrivilegeSearch": 14,
1199
+ "PrivilegeFlush": 15,
1200
+ "PrivilegeQuery": 16,
1201
+ "PrivilegeLoadBalance": 17,
1202
+ "PrivilegeImport": 18,
1203
+ "PrivilegeCreateOwnership": 19,
1204
+ "PrivilegeUpdateUser": 20,
1205
+ "PrivilegeDropOwnership": 21,
1206
+ "PrivilegeSelectOwnership": 22,
1207
+ "PrivilegeManageOwnership": 23,
1208
+ "PrivilegeSelectUser": 24,
1209
+ "PrivilegeUpsert": 25,
1210
+ "PrivilegeCreateResourceGroup": 26,
1211
+ "PrivilegeDropResourceGroup": 27,
1212
+ "PrivilegeDescribeResourceGroup": 28,
1213
+ "PrivilegeListResourceGroups": 29,
1214
+ "PrivilegeTransferNode": 30,
1215
+ "PrivilegeTransferReplica": 31,
1216
+ "PrivilegeGetLoadingProgress": 32,
1217
+ "PrivilegeGetLoadState": 33,
1218
+ "PrivilegeRenameCollection": 34,
1219
+ "PrivilegeCreateDatabase": 35,
1220
+ "PrivilegeDropDatabase": 36,
1221
+ "PrivilegeListDatabases": 37,
1222
+ "PrivilegeFlushAll": 38,
1223
+ "PrivilegeCreatePartition": 39,
1224
+ "PrivilegeDropPartition": 40,
1225
+ "PrivilegeShowPartitions": 41,
1226
+ "PrivilegeHasPartition": 42,
1227
+ "PrivilegeGetFlushState": 43,
1228
+ "PrivilegeCreateAlias": 44,
1229
+ "PrivilegeDropAlias": 45,
1230
+ "PrivilegeDescribeAlias": 46,
1231
+ "PrivilegeListAliases": 47,
1232
+ "PrivilegeUpdateResourceGroups": 48,
1233
+ "PrivilegeAlterDatabase": 49,
1234
+ "PrivilegeDescribeDatabase": 50,
1235
+ "PrivilegeBackupRBAC": 51,
1236
+ "PrivilegeRestoreRBAC": 52,
1237
+ "PrivilegeGroupReadOnly": 53,
1238
+ "PrivilegeGroupReadWrite": 54,
1239
+ "PrivilegeGroupAdmin": 55,
1240
+ "PrivilegeCreatePrivilegeGroup": 56,
1241
+ "PrivilegeDropPrivilegeGroup": 57,
1242
+ "PrivilegeListPrivilegeGroups": 58,
1243
+ "PrivilegeOperatePrivilegeGroup": 59,
1244
+ "PrivilegeGroupClusterReadOnly": 60,
1245
+ "PrivilegeGroupClusterReadWrite": 61,
1246
+ "PrivilegeGroupClusterAdmin": 62,
1247
+ "PrivilegeGroupDatabaseReadOnly": 63,
1248
+ "PrivilegeGroupDatabaseReadWrite": 64,
1249
+ "PrivilegeGroupDatabaseAdmin": 65,
1250
+ "PrivilegeGroupCollectionReadOnly": 66,
1251
+ "PrivilegeGroupCollectionReadWrite": 67,
1252
+ "PrivilegeGroupCollectionAdmin": 68
1253
+ }
1254
+ },
1255
+ "PrivilegeExt": {
1256
+ "fields": {
1257
+ "objectType": {
1258
+ "type": "ObjectType",
1259
+ "id": 1
1260
+ },
1261
+ "objectPrivilege": {
1262
+ "type": "ObjectPrivilege",
1263
+ "id": 2
1264
+ },
1265
+ "objectNameIndex": {
1266
+ "type": "int32",
1267
+ "id": 3
1268
+ },
1269
+ "objectNameIndexs": {
1270
+ "type": "int32",
1271
+ "id": 4
1272
+ }
1273
+ }
1274
+ },
1275
+ "privilegeExtObj": {
1276
+ "type": "PrivilegeExt",
1277
+ "id": 1001,
1278
+ "extend": "google.protobuf.MessageOptions"
1279
+ },
1280
+ "StateCode": {
1281
+ "values": {
1282
+ "Initializing": 0,
1283
+ "Healthy": 1,
1284
+ "Abnormal": 2,
1285
+ "StandBy": 3,
1286
+ "Stopping": 4
1287
+ }
1288
+ },
1289
+ "LoadState": {
1290
+ "values": {
1291
+ "LoadStateNotExist": 0,
1292
+ "LoadStateNotLoad": 1,
1293
+ "LoadStateLoading": 2,
1294
+ "LoadStateLoaded": 3
1295
+ }
1296
+ },
1297
+ "SegmentStats": {
1298
+ "fields": {
1299
+ "SegmentID": {
1300
+ "type": "int64",
1301
+ "id": 1
1302
+ },
1303
+ "NumRows": {
1304
+ "type": "int64",
1305
+ "id": 2
1306
+ }
1307
+ }
1308
+ },
1309
+ "ClientInfo": {
1310
+ "fields": {
1311
+ "sdkType": {
1312
+ "type": "string",
1313
+ "id": 1
1314
+ },
1315
+ "sdkVersion": {
1316
+ "type": "string",
1317
+ "id": 2
1318
+ },
1319
+ "localTime": {
1320
+ "type": "string",
1321
+ "id": 3
1322
+ },
1323
+ "user": {
1324
+ "type": "string",
1325
+ "id": 4
1326
+ },
1327
+ "host": {
1328
+ "type": "string",
1329
+ "id": 5
1330
+ },
1331
+ "reserved": {
1332
+ "keyType": "string",
1333
+ "type": "string",
1334
+ "id": 6
1335
+ }
1336
+ }
1337
+ },
1338
+ "ServerInfo": {
1339
+ "fields": {
1340
+ "buildTags": {
1341
+ "type": "string",
1342
+ "id": 1
1343
+ },
1344
+ "buildTime": {
1345
+ "type": "string",
1346
+ "id": 2
1347
+ },
1348
+ "gitCommit": {
1349
+ "type": "string",
1350
+ "id": 3
1351
+ },
1352
+ "goVersion": {
1353
+ "type": "string",
1354
+ "id": 4
1355
+ },
1356
+ "deployMode": {
1357
+ "type": "string",
1358
+ "id": 5
1359
+ },
1360
+ "reserved": {
1361
+ "keyType": "string",
1362
+ "type": "string",
1363
+ "id": 6
1364
+ }
1365
+ }
1366
+ },
1367
+ "NodeInfo": {
1368
+ "fields": {
1369
+ "nodeId": {
1370
+ "type": "int64",
1371
+ "id": 1
1372
+ },
1373
+ "address": {
1374
+ "type": "string",
1375
+ "id": 2
1376
+ },
1377
+ "hostname": {
1378
+ "type": "string",
1379
+ "id": 3
1380
+ }
1381
+ }
1382
+ },
1383
+ "LoadPriority": {
1384
+ "values": {
1385
+ "HIGH": 0,
1386
+ "LOW": 1
1387
+ }
1388
+ }
1389
+ }
1390
+ }
1391
+ }
1392
+ }
1393
+ }
1394
+ },
1395
+ "google": {
1396
+ "nested": {
1397
+ "protobuf": {
1398
+ "nested": {
1399
+ "FileDescriptorSet": {
1400
+ "fields": {
1401
+ "file": {
1402
+ "rule": "repeated",
1403
+ "type": "FileDescriptorProto",
1404
+ "id": 1
1405
+ }
1406
+ }
1407
+ },
1408
+ "FileDescriptorProto": {
1409
+ "fields": {
1410
+ "name": {
1411
+ "type": "string",
1412
+ "id": 1
1413
+ },
1414
+ "package": {
1415
+ "type": "string",
1416
+ "id": 2
1417
+ },
1418
+ "dependency": {
1419
+ "rule": "repeated",
1420
+ "type": "string",
1421
+ "id": 3
1422
+ },
1423
+ "publicDependency": {
1424
+ "rule": "repeated",
1425
+ "type": "int32",
1426
+ "id": 10,
1427
+ "options": {
1428
+ "packed": false
1429
+ }
1430
+ },
1431
+ "weakDependency": {
1432
+ "rule": "repeated",
1433
+ "type": "int32",
1434
+ "id": 11,
1435
+ "options": {
1436
+ "packed": false
1437
+ }
1438
+ },
1439
+ "messageType": {
1440
+ "rule": "repeated",
1441
+ "type": "DescriptorProto",
1442
+ "id": 4
1443
+ },
1444
+ "enumType": {
1445
+ "rule": "repeated",
1446
+ "type": "EnumDescriptorProto",
1447
+ "id": 5
1448
+ },
1449
+ "service": {
1450
+ "rule": "repeated",
1451
+ "type": "ServiceDescriptorProto",
1452
+ "id": 6
1453
+ },
1454
+ "extension": {
1455
+ "rule": "repeated",
1456
+ "type": "FieldDescriptorProto",
1457
+ "id": 7
1458
+ },
1459
+ "options": {
1460
+ "type": "FileOptions",
1461
+ "id": 8
1462
+ },
1463
+ "sourceCodeInfo": {
1464
+ "type": "SourceCodeInfo",
1465
+ "id": 9
1466
+ },
1467
+ "syntax": {
1468
+ "type": "string",
1469
+ "id": 12
1470
+ }
1471
+ }
1472
+ },
1473
+ "DescriptorProto": {
1474
+ "fields": {
1475
+ "name": {
1476
+ "type": "string",
1477
+ "id": 1
1478
+ },
1479
+ "field": {
1480
+ "rule": "repeated",
1481
+ "type": "FieldDescriptorProto",
1482
+ "id": 2
1483
+ },
1484
+ "extension": {
1485
+ "rule": "repeated",
1486
+ "type": "FieldDescriptorProto",
1487
+ "id": 6
1488
+ },
1489
+ "nestedType": {
1490
+ "rule": "repeated",
1491
+ "type": "DescriptorProto",
1492
+ "id": 3
1493
+ },
1494
+ "enumType": {
1495
+ "rule": "repeated",
1496
+ "type": "EnumDescriptorProto",
1497
+ "id": 4
1498
+ },
1499
+ "extensionRange": {
1500
+ "rule": "repeated",
1501
+ "type": "ExtensionRange",
1502
+ "id": 5
1503
+ },
1504
+ "oneofDecl": {
1505
+ "rule": "repeated",
1506
+ "type": "OneofDescriptorProto",
1507
+ "id": 8
1508
+ },
1509
+ "options": {
1510
+ "type": "MessageOptions",
1511
+ "id": 7
1512
+ },
1513
+ "reservedRange": {
1514
+ "rule": "repeated",
1515
+ "type": "ReservedRange",
1516
+ "id": 9
1517
+ },
1518
+ "reservedName": {
1519
+ "rule": "repeated",
1520
+ "type": "string",
1521
+ "id": 10
1522
+ }
1523
+ },
1524
+ "nested": {
1525
+ "ExtensionRange": {
1526
+ "fields": {
1527
+ "start": {
1528
+ "type": "int32",
1529
+ "id": 1
1530
+ },
1531
+ "end": {
1532
+ "type": "int32",
1533
+ "id": 2
1534
+ }
1535
+ }
1536
+ },
1537
+ "ReservedRange": {
1538
+ "fields": {
1539
+ "start": {
1540
+ "type": "int32",
1541
+ "id": 1
1542
+ },
1543
+ "end": {
1544
+ "type": "int32",
1545
+ "id": 2
1546
+ }
1547
+ }
1548
+ }
1549
+ }
1550
+ },
1551
+ "FieldDescriptorProto": {
1552
+ "fields": {
1553
+ "name": {
1554
+ "type": "string",
1555
+ "id": 1
1556
+ },
1557
+ "number": {
1558
+ "type": "int32",
1559
+ "id": 3
1560
+ },
1561
+ "label": {
1562
+ "type": "Label",
1563
+ "id": 4
1564
+ },
1565
+ "type": {
1566
+ "type": "Type",
1567
+ "id": 5
1568
+ },
1569
+ "typeName": {
1570
+ "type": "string",
1571
+ "id": 6
1572
+ },
1573
+ "extendee": {
1574
+ "type": "string",
1575
+ "id": 2
1576
+ },
1577
+ "defaultValue": {
1578
+ "type": "string",
1579
+ "id": 7
1580
+ },
1581
+ "oneofIndex": {
1582
+ "type": "int32",
1583
+ "id": 9
1584
+ },
1585
+ "jsonName": {
1586
+ "type": "string",
1587
+ "id": 10
1588
+ },
1589
+ "options": {
1590
+ "type": "FieldOptions",
1591
+ "id": 8
1592
+ }
1593
+ },
1594
+ "nested": {
1595
+ "Type": {
1596
+ "values": {
1597
+ "TYPE_DOUBLE": 1,
1598
+ "TYPE_FLOAT": 2,
1599
+ "TYPE_INT64": 3,
1600
+ "TYPE_UINT64": 4,
1601
+ "TYPE_INT32": 5,
1602
+ "TYPE_FIXED64": 6,
1603
+ "TYPE_FIXED32": 7,
1604
+ "TYPE_BOOL": 8,
1605
+ "TYPE_STRING": 9,
1606
+ "TYPE_GROUP": 10,
1607
+ "TYPE_MESSAGE": 11,
1608
+ "TYPE_BYTES": 12,
1609
+ "TYPE_UINT32": 13,
1610
+ "TYPE_ENUM": 14,
1611
+ "TYPE_SFIXED32": 15,
1612
+ "TYPE_SFIXED64": 16,
1613
+ "TYPE_SINT32": 17,
1614
+ "TYPE_SINT64": 18
1615
+ }
1616
+ },
1617
+ "Label": {
1618
+ "values": {
1619
+ "LABEL_OPTIONAL": 1,
1620
+ "LABEL_REQUIRED": 2,
1621
+ "LABEL_REPEATED": 3
1622
+ }
1623
+ }
1624
+ }
1625
+ },
1626
+ "OneofDescriptorProto": {
1627
+ "fields": {
1628
+ "name": {
1629
+ "type": "string",
1630
+ "id": 1
1631
+ },
1632
+ "options": {
1633
+ "type": "OneofOptions",
1634
+ "id": 2
1635
+ }
1636
+ }
1637
+ },
1638
+ "EnumDescriptorProto": {
1639
+ "fields": {
1640
+ "name": {
1641
+ "type": "string",
1642
+ "id": 1
1643
+ },
1644
+ "value": {
1645
+ "rule": "repeated",
1646
+ "type": "EnumValueDescriptorProto",
1647
+ "id": 2
1648
+ },
1649
+ "options": {
1650
+ "type": "EnumOptions",
1651
+ "id": 3
1652
+ }
1653
+ }
1654
+ },
1655
+ "EnumValueDescriptorProto": {
1656
+ "fields": {
1657
+ "name": {
1658
+ "type": "string",
1659
+ "id": 1
1660
+ },
1661
+ "number": {
1662
+ "type": "int32",
1663
+ "id": 2
1664
+ },
1665
+ "options": {
1666
+ "type": "EnumValueOptions",
1667
+ "id": 3
1668
+ }
1669
+ }
1670
+ },
1671
+ "ServiceDescriptorProto": {
1672
+ "fields": {
1673
+ "name": {
1674
+ "type": "string",
1675
+ "id": 1
1676
+ },
1677
+ "method": {
1678
+ "rule": "repeated",
1679
+ "type": "MethodDescriptorProto",
1680
+ "id": 2
1681
+ },
1682
+ "options": {
1683
+ "type": "ServiceOptions",
1684
+ "id": 3
1685
+ }
1686
+ }
1687
+ },
1688
+ "MethodDescriptorProto": {
1689
+ "fields": {
1690
+ "name": {
1691
+ "type": "string",
1692
+ "id": 1
1693
+ },
1694
+ "inputType": {
1695
+ "type": "string",
1696
+ "id": 2
1697
+ },
1698
+ "outputType": {
1699
+ "type": "string",
1700
+ "id": 3
1701
+ },
1702
+ "options": {
1703
+ "type": "MethodOptions",
1704
+ "id": 4
1705
+ },
1706
+ "clientStreaming": {
1707
+ "type": "bool",
1708
+ "id": 5
1709
+ },
1710
+ "serverStreaming": {
1711
+ "type": "bool",
1712
+ "id": 6
1713
+ }
1714
+ }
1715
+ },
1716
+ "FileOptions": {
1717
+ "fields": {
1718
+ "javaPackage": {
1719
+ "type": "string",
1720
+ "id": 1
1721
+ },
1722
+ "javaOuterClassname": {
1723
+ "type": "string",
1724
+ "id": 8
1725
+ },
1726
+ "javaMultipleFiles": {
1727
+ "type": "bool",
1728
+ "id": 10
1729
+ },
1730
+ "javaGenerateEqualsAndHash": {
1731
+ "type": "bool",
1732
+ "id": 20,
1733
+ "options": {
1734
+ "deprecated": true
1735
+ }
1736
+ },
1737
+ "javaStringCheckUtf8": {
1738
+ "type": "bool",
1739
+ "id": 27
1740
+ },
1741
+ "optimizeFor": {
1742
+ "type": "OptimizeMode",
1743
+ "id": 9,
1744
+ "options": {
1745
+ "default": "SPEED"
1746
+ }
1747
+ },
1748
+ "goPackage": {
1749
+ "type": "string",
1750
+ "id": 11
1751
+ },
1752
+ "ccGenericServices": {
1753
+ "type": "bool",
1754
+ "id": 16
1755
+ },
1756
+ "javaGenericServices": {
1757
+ "type": "bool",
1758
+ "id": 17
1759
+ },
1760
+ "pyGenericServices": {
1761
+ "type": "bool",
1762
+ "id": 18
1763
+ },
1764
+ "deprecated": {
1765
+ "type": "bool",
1766
+ "id": 23
1767
+ },
1768
+ "ccEnableArenas": {
1769
+ "type": "bool",
1770
+ "id": 31
1771
+ },
1772
+ "objcClassPrefix": {
1773
+ "type": "string",
1774
+ "id": 36
1775
+ },
1776
+ "csharpNamespace": {
1777
+ "type": "string",
1778
+ "id": 37
1779
+ },
1780
+ "uninterpretedOption": {
1781
+ "rule": "repeated",
1782
+ "type": "UninterpretedOption",
1783
+ "id": 999
1784
+ }
1785
+ },
1786
+ "extensions": [
1787
+ [
1788
+ 1000,
1789
+ 536870911
1790
+ ]
1791
+ ],
1792
+ "reserved": [
1793
+ [
1794
+ 38,
1795
+ 38
1796
+ ]
1797
+ ],
1798
+ "nested": {
1799
+ "OptimizeMode": {
1800
+ "values": {
1801
+ "SPEED": 1,
1802
+ "CODE_SIZE": 2,
1803
+ "LITE_RUNTIME": 3
1804
+ }
1805
+ }
1806
+ }
1807
+ },
1808
+ "MessageOptions": {
1809
+ "fields": {
1810
+ "messageSetWireFormat": {
1811
+ "type": "bool",
1812
+ "id": 1
1813
+ },
1814
+ "noStandardDescriptorAccessor": {
1815
+ "type": "bool",
1816
+ "id": 2
1817
+ },
1818
+ "deprecated": {
1819
+ "type": "bool",
1820
+ "id": 3
1821
+ },
1822
+ "mapEntry": {
1823
+ "type": "bool",
1824
+ "id": 7
1825
+ },
1826
+ "uninterpretedOption": {
1827
+ "rule": "repeated",
1828
+ "type": "UninterpretedOption",
1829
+ "id": 999
1830
+ }
1831
+ },
1832
+ "extensions": [
1833
+ [
1834
+ 1000,
1835
+ 536870911
1836
+ ]
1837
+ ],
1838
+ "reserved": [
1839
+ [
1840
+ 8,
1841
+ 8
1842
+ ]
1843
+ ]
1844
+ },
1845
+ "FieldOptions": {
1846
+ "fields": {
1847
+ "ctype": {
1848
+ "type": "CType",
1849
+ "id": 1,
1850
+ "options": {
1851
+ "default": "STRING"
1852
+ }
1853
+ },
1854
+ "packed": {
1855
+ "type": "bool",
1856
+ "id": 2
1857
+ },
1858
+ "jstype": {
1859
+ "type": "JSType",
1860
+ "id": 6,
1861
+ "options": {
1862
+ "default": "JS_NORMAL"
1863
+ }
1864
+ },
1865
+ "lazy": {
1866
+ "type": "bool",
1867
+ "id": 5
1868
+ },
1869
+ "deprecated": {
1870
+ "type": "bool",
1871
+ "id": 3
1872
+ },
1873
+ "weak": {
1874
+ "type": "bool",
1875
+ "id": 10
1876
+ },
1877
+ "uninterpretedOption": {
1878
+ "rule": "repeated",
1879
+ "type": "UninterpretedOption",
1880
+ "id": 999
1881
+ }
1882
+ },
1883
+ "extensions": [
1884
+ [
1885
+ 1000,
1886
+ 536870911
1887
+ ]
1888
+ ],
1889
+ "reserved": [
1890
+ [
1891
+ 4,
1892
+ 4
1893
+ ]
1894
+ ],
1895
+ "nested": {
1896
+ "CType": {
1897
+ "values": {
1898
+ "STRING": 0,
1899
+ "CORD": 1,
1900
+ "STRING_PIECE": 2
1901
+ }
1902
+ },
1903
+ "JSType": {
1904
+ "values": {
1905
+ "JS_NORMAL": 0,
1906
+ "JS_STRING": 1,
1907
+ "JS_NUMBER": 2
1908
+ }
1909
+ }
1910
+ }
1911
+ },
1912
+ "OneofOptions": {
1913
+ "fields": {
1914
+ "uninterpretedOption": {
1915
+ "rule": "repeated",
1916
+ "type": "UninterpretedOption",
1917
+ "id": 999
1918
+ }
1919
+ },
1920
+ "extensions": [
1921
+ [
1922
+ 1000,
1923
+ 536870911
1924
+ ]
1925
+ ]
1926
+ },
1927
+ "EnumOptions": {
1928
+ "fields": {
1929
+ "allowAlias": {
1930
+ "type": "bool",
1931
+ "id": 2
1932
+ },
1933
+ "deprecated": {
1934
+ "type": "bool",
1935
+ "id": 3
1936
+ },
1937
+ "uninterpretedOption": {
1938
+ "rule": "repeated",
1939
+ "type": "UninterpretedOption",
1940
+ "id": 999
1941
+ }
1942
+ },
1943
+ "extensions": [
1944
+ [
1945
+ 1000,
1946
+ 536870911
1947
+ ]
1948
+ ]
1949
+ },
1950
+ "EnumValueOptions": {
1951
+ "fields": {
1952
+ "deprecated": {
1953
+ "type": "bool",
1954
+ "id": 1
1955
+ },
1956
+ "uninterpretedOption": {
1957
+ "rule": "repeated",
1958
+ "type": "UninterpretedOption",
1959
+ "id": 999
1960
+ }
1961
+ },
1962
+ "extensions": [
1963
+ [
1964
+ 1000,
1965
+ 536870911
1966
+ ]
1967
+ ]
1968
+ },
1969
+ "ServiceOptions": {
1970
+ "fields": {
1971
+ "deprecated": {
1972
+ "type": "bool",
1973
+ "id": 33
1974
+ },
1975
+ "uninterpretedOption": {
1976
+ "rule": "repeated",
1977
+ "type": "UninterpretedOption",
1978
+ "id": 999
1979
+ }
1980
+ },
1981
+ "extensions": [
1982
+ [
1983
+ 1000,
1984
+ 536870911
1985
+ ]
1986
+ ]
1987
+ },
1988
+ "MethodOptions": {
1989
+ "fields": {
1990
+ "deprecated": {
1991
+ "type": "bool",
1992
+ "id": 33
1993
+ },
1994
+ "uninterpretedOption": {
1995
+ "rule": "repeated",
1996
+ "type": "UninterpretedOption",
1997
+ "id": 999
1998
+ }
1999
+ },
2000
+ "extensions": [
2001
+ [
2002
+ 1000,
2003
+ 536870911
2004
+ ]
2005
+ ]
2006
+ },
2007
+ "UninterpretedOption": {
2008
+ "fields": {
2009
+ "name": {
2010
+ "rule": "repeated",
2011
+ "type": "NamePart",
2012
+ "id": 2
2013
+ },
2014
+ "identifierValue": {
2015
+ "type": "string",
2016
+ "id": 3
2017
+ },
2018
+ "positiveIntValue": {
2019
+ "type": "uint64",
2020
+ "id": 4
2021
+ },
2022
+ "negativeIntValue": {
2023
+ "type": "int64",
2024
+ "id": 5
2025
+ },
2026
+ "doubleValue": {
2027
+ "type": "double",
2028
+ "id": 6
2029
+ },
2030
+ "stringValue": {
2031
+ "type": "bytes",
2032
+ "id": 7
2033
+ },
2034
+ "aggregateValue": {
2035
+ "type": "string",
2036
+ "id": 8
2037
+ }
2038
+ },
2039
+ "nested": {
2040
+ "NamePart": {
2041
+ "fields": {
2042
+ "namePart": {
2043
+ "rule": "required",
2044
+ "type": "string",
2045
+ "id": 1
2046
+ },
2047
+ "isExtension": {
2048
+ "rule": "required",
2049
+ "type": "bool",
2050
+ "id": 2
2051
+ }
2052
+ }
2053
+ }
2054
+ }
2055
+ },
2056
+ "SourceCodeInfo": {
2057
+ "fields": {
2058
+ "location": {
2059
+ "rule": "repeated",
2060
+ "type": "Location",
2061
+ "id": 1
2062
+ }
2063
+ },
2064
+ "nested": {
2065
+ "Location": {
2066
+ "fields": {
2067
+ "path": {
2068
+ "rule": "repeated",
2069
+ "type": "int32",
2070
+ "id": 1
2071
+ },
2072
+ "span": {
2073
+ "rule": "repeated",
2074
+ "type": "int32",
2075
+ "id": 2
2076
+ },
2077
+ "leadingComments": {
2078
+ "type": "string",
2079
+ "id": 3
2080
+ },
2081
+ "trailingComments": {
2082
+ "type": "string",
2083
+ "id": 4
2084
+ },
2085
+ "leadingDetachedComments": {
2086
+ "rule": "repeated",
2087
+ "type": "string",
2088
+ "id": 6
2089
+ }
2090
+ }
2091
+ }
2092
+ }
2093
+ },
2094
+ "GeneratedCodeInfo": {
2095
+ "fields": {
2096
+ "annotation": {
2097
+ "rule": "repeated",
2098
+ "type": "Annotation",
2099
+ "id": 1
2100
+ }
2101
+ },
2102
+ "nested": {
2103
+ "Annotation": {
2104
+ "fields": {
2105
+ "path": {
2106
+ "rule": "repeated",
2107
+ "type": "int32",
2108
+ "id": 1
2109
+ },
2110
+ "sourceFile": {
2111
+ "type": "string",
2112
+ "id": 2
2113
+ },
2114
+ "begin": {
2115
+ "type": "int32",
2116
+ "id": 3
2117
+ },
2118
+ "end": {
2119
+ "type": "int32",
2120
+ "id": 4
2121
+ }
2122
+ }
2123
+ }
2124
+ }
2125
+ }
2126
+ }
2127
+ }
2128
+ }
2129
+ }
2130
+ }
2131
+ };
2132
+ //# sourceMappingURL=schema.base.js.map