@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
|
@@ -403,6 +403,12 @@ declare const _default: {
|
|
|
403
403
|
ReplicateMessage: {
|
|
404
404
|
requestType: string;
|
|
405
405
|
responseType: string;
|
|
406
|
+
options: {
|
|
407
|
+
deprecated: boolean;
|
|
408
|
+
};
|
|
409
|
+
parsedOptions: {
|
|
410
|
+
deprecated: boolean;
|
|
411
|
+
}[];
|
|
406
412
|
};
|
|
407
413
|
BackupRBAC: {
|
|
408
414
|
requestType: string;
|
|
@@ -495,6 +501,86 @@ declare const _default: {
|
|
|
495
501
|
responseType: string;
|
|
496
502
|
responseStream: boolean;
|
|
497
503
|
};
|
|
504
|
+
ComputePhraseMatchSlop: {
|
|
505
|
+
requestType: string;
|
|
506
|
+
responseType: string;
|
|
507
|
+
};
|
|
508
|
+
CreateSnapshot: {
|
|
509
|
+
requestType: string;
|
|
510
|
+
responseType: string;
|
|
511
|
+
};
|
|
512
|
+
DropSnapshot: {
|
|
513
|
+
requestType: string;
|
|
514
|
+
responseType: string;
|
|
515
|
+
};
|
|
516
|
+
ListSnapshots: {
|
|
517
|
+
requestType: string;
|
|
518
|
+
responseType: string;
|
|
519
|
+
};
|
|
520
|
+
DescribeSnapshot: {
|
|
521
|
+
requestType: string;
|
|
522
|
+
responseType: string;
|
|
523
|
+
};
|
|
524
|
+
RestoreSnapshot: {
|
|
525
|
+
requestType: string;
|
|
526
|
+
responseType: string;
|
|
527
|
+
};
|
|
528
|
+
GetRestoreSnapshotState: {
|
|
529
|
+
requestType: string;
|
|
530
|
+
responseType: string;
|
|
531
|
+
};
|
|
532
|
+
ListRestoreSnapshotJobs: {
|
|
533
|
+
requestType: string;
|
|
534
|
+
responseType: string;
|
|
535
|
+
};
|
|
536
|
+
PinSnapshotData: {
|
|
537
|
+
requestType: string;
|
|
538
|
+
responseType: string;
|
|
539
|
+
};
|
|
540
|
+
UnpinSnapshotData: {
|
|
541
|
+
requestType: string;
|
|
542
|
+
responseType: string;
|
|
543
|
+
};
|
|
544
|
+
AlterCollectionSchema: {
|
|
545
|
+
requestType: string;
|
|
546
|
+
responseType: string;
|
|
547
|
+
};
|
|
548
|
+
BatchUpdateManifest: {
|
|
549
|
+
requestType: string;
|
|
550
|
+
responseType: string;
|
|
551
|
+
};
|
|
552
|
+
RefreshExternalCollection: {
|
|
553
|
+
requestType: string;
|
|
554
|
+
responseType: string;
|
|
555
|
+
};
|
|
556
|
+
GetRefreshExternalCollectionProgress: {
|
|
557
|
+
requestType: string;
|
|
558
|
+
responseType: string;
|
|
559
|
+
};
|
|
560
|
+
ListRefreshExternalCollectionJobs: {
|
|
561
|
+
requestType: string;
|
|
562
|
+
responseType: string;
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
ClientTelemetryService: {
|
|
567
|
+
methods: {
|
|
568
|
+
ClientHeartbeat: {
|
|
569
|
+
requestType: string;
|
|
570
|
+
responseType: string;
|
|
571
|
+
};
|
|
572
|
+
GetClientTelemetry: {
|
|
573
|
+
requestType: string;
|
|
574
|
+
responseType: string;
|
|
575
|
+
};
|
|
576
|
+
PushClientCommand: {
|
|
577
|
+
requestType: string;
|
|
578
|
+
responseType: string;
|
|
579
|
+
};
|
|
580
|
+
DeleteClientCommand: {
|
|
581
|
+
requestType: string;
|
|
582
|
+
responseType: string;
|
|
583
|
+
};
|
|
498
584
|
};
|
|
499
585
|
};
|
|
500
586
|
CreateAliasRequest: {
|
|
@@ -2051,6 +2137,11 @@ declare const _default: {
|
|
|
2051
2137
|
proto3_optional: boolean;
|
|
2052
2138
|
};
|
|
2053
2139
|
};
|
|
2140
|
+
field_ops: {
|
|
2141
|
+
rule: string;
|
|
2142
|
+
type: string;
|
|
2143
|
+
id: number;
|
|
2144
|
+
};
|
|
2054
2145
|
};
|
|
2055
2146
|
};
|
|
2056
2147
|
MutationResult: {
|
|
@@ -2294,6 +2385,10 @@ declare const _default: {
|
|
|
2294
2385
|
type: string;
|
|
2295
2386
|
id: number;
|
|
2296
2387
|
};
|
|
2388
|
+
search_aggregation: {
|
|
2389
|
+
type: string;
|
|
2390
|
+
id: number;
|
|
2391
|
+
};
|
|
2297
2392
|
};
|
|
2298
2393
|
};
|
|
2299
2394
|
Hits: {
|
|
@@ -2548,6 +2643,14 @@ declare const _default: {
|
|
|
2548
2643
|
};
|
|
2549
2644
|
};
|
|
2550
2645
|
};
|
|
2646
|
+
ElementIndices: {
|
|
2647
|
+
fields: {
|
|
2648
|
+
indices: {
|
|
2649
|
+
type: string;
|
|
2650
|
+
id: number;
|
|
2651
|
+
};
|
|
2652
|
+
};
|
|
2653
|
+
};
|
|
2551
2654
|
QueryResults: {
|
|
2552
2655
|
fields: {
|
|
2553
2656
|
status: {
|
|
@@ -2576,6 +2679,11 @@ declare const _default: {
|
|
|
2576
2679
|
type: string;
|
|
2577
2680
|
id: number;
|
|
2578
2681
|
};
|
|
2682
|
+
element_indices: {
|
|
2683
|
+
rule: string;
|
|
2684
|
+
type: string;
|
|
2685
|
+
id: number;
|
|
2686
|
+
};
|
|
2579
2687
|
};
|
|
2580
2688
|
};
|
|
2581
2689
|
QueryCursor: {
|
|
@@ -4834,6 +4942,9 @@ declare const _default: {
|
|
|
4834
4942
|
};
|
|
4835
4943
|
};
|
|
4836
4944
|
ReplicateMessageRequest: {
|
|
4945
|
+
options: {
|
|
4946
|
+
deprecated: boolean;
|
|
4947
|
+
};
|
|
4837
4948
|
fields: {
|
|
4838
4949
|
base: {
|
|
4839
4950
|
type: string;
|
|
@@ -4869,6 +4980,9 @@ declare const _default: {
|
|
|
4869
4980
|
};
|
|
4870
4981
|
};
|
|
4871
4982
|
ReplicateMessageResponse: {
|
|
4983
|
+
options: {
|
|
4984
|
+
deprecated: boolean;
|
|
4985
|
+
};
|
|
4872
4986
|
fields: {
|
|
4873
4987
|
status: {
|
|
4874
4988
|
type: string;
|
|
@@ -5541,187 +5655,1053 @@ declare const _default: {
|
|
|
5541
5655
|
};
|
|
5542
5656
|
};
|
|
5543
5657
|
};
|
|
5544
|
-
|
|
5545
|
-
};
|
|
5546
|
-
common: {
|
|
5547
|
-
options: {
|
|
5548
|
-
go_package: string;
|
|
5549
|
-
java_multiple_files: boolean;
|
|
5550
|
-
java_package: string;
|
|
5551
|
-
java_outer_classname: string;
|
|
5552
|
-
java_generate_equals_and_hash: boolean;
|
|
5553
|
-
csharp_namespace: string;
|
|
5554
|
-
};
|
|
5555
|
-
nested: {
|
|
5556
|
-
ErrorCode: {
|
|
5557
|
-
options: {
|
|
5558
|
-
deprecated: boolean;
|
|
5559
|
-
};
|
|
5560
|
-
values: {
|
|
5561
|
-
Success: number;
|
|
5562
|
-
UnexpectedError: number;
|
|
5563
|
-
ConnectFailed: number;
|
|
5564
|
-
PermissionDenied: number;
|
|
5565
|
-
CollectionNotExists: number;
|
|
5566
|
-
IllegalArgument: number;
|
|
5567
|
-
IllegalDimension: number;
|
|
5568
|
-
IllegalIndexType: number;
|
|
5569
|
-
IllegalCollectionName: number;
|
|
5570
|
-
IllegalTOPK: number;
|
|
5571
|
-
IllegalRowRecord: number;
|
|
5572
|
-
IllegalVectorID: number;
|
|
5573
|
-
IllegalSearchResult: number;
|
|
5574
|
-
FileNotFound: number;
|
|
5575
|
-
MetaFailed: number;
|
|
5576
|
-
CacheFailed: number;
|
|
5577
|
-
CannotCreateFolder: number;
|
|
5578
|
-
CannotCreateFile: number;
|
|
5579
|
-
CannotDeleteFolder: number;
|
|
5580
|
-
CannotDeleteFile: number;
|
|
5581
|
-
BuildIndexError: number;
|
|
5582
|
-
IllegalNLIST: number;
|
|
5583
|
-
IllegalMetricType: number;
|
|
5584
|
-
OutOfMemory: number;
|
|
5585
|
-
IndexNotExist: number;
|
|
5586
|
-
EmptyCollection: number;
|
|
5587
|
-
UpdateImportTaskFailure: number;
|
|
5588
|
-
CollectionNameNotFound: number;
|
|
5589
|
-
CreateCredentialFailure: number;
|
|
5590
|
-
UpdateCredentialFailure: number;
|
|
5591
|
-
DeleteCredentialFailure: number;
|
|
5592
|
-
GetCredentialFailure: number;
|
|
5593
|
-
ListCredUsersFailure: number;
|
|
5594
|
-
GetUserFailure: number;
|
|
5595
|
-
CreateRoleFailure: number;
|
|
5596
|
-
DropRoleFailure: number;
|
|
5597
|
-
OperateUserRoleFailure: number;
|
|
5598
|
-
SelectRoleFailure: number;
|
|
5599
|
-
SelectUserFailure: number;
|
|
5600
|
-
SelectResourceFailure: number;
|
|
5601
|
-
OperatePrivilegeFailure: number;
|
|
5602
|
-
SelectGrantFailure: number;
|
|
5603
|
-
RefreshPolicyInfoCacheFailure: number;
|
|
5604
|
-
ListPolicyFailure: number;
|
|
5605
|
-
NotShardLeader: number;
|
|
5606
|
-
NoReplicaAvailable: number;
|
|
5607
|
-
SegmentNotFound: number;
|
|
5608
|
-
ForceDeny: number;
|
|
5609
|
-
RateLimit: number;
|
|
5610
|
-
NodeIDNotMatch: number;
|
|
5611
|
-
UpsertAutoIDTrue: number;
|
|
5612
|
-
InsufficientMemoryToLoad: number;
|
|
5613
|
-
MemoryQuotaExhausted: number;
|
|
5614
|
-
DiskQuotaExhausted: number;
|
|
5615
|
-
TimeTickLongDelay: number;
|
|
5616
|
-
NotReadyServe: number;
|
|
5617
|
-
NotReadyCoordActivating: number;
|
|
5618
|
-
CreatePrivilegeGroupFailure: number;
|
|
5619
|
-
DropPrivilegeGroupFailure: number;
|
|
5620
|
-
ListPrivilegeGroupsFailure: number;
|
|
5621
|
-
OperatePrivilegeGroupFailure: number;
|
|
5622
|
-
SchemaMismatch: number;
|
|
5623
|
-
DataCoordNA: number;
|
|
5624
|
-
DDRequestRace: number;
|
|
5625
|
-
};
|
|
5626
|
-
};
|
|
5627
|
-
IndexState: {
|
|
5628
|
-
values: {
|
|
5629
|
-
IndexStateNone: number;
|
|
5630
|
-
Unissued: number;
|
|
5631
|
-
InProgress: number;
|
|
5632
|
-
Finished: number;
|
|
5633
|
-
Failed: number;
|
|
5634
|
-
Retry: number;
|
|
5635
|
-
};
|
|
5636
|
-
};
|
|
5637
|
-
SegmentState: {
|
|
5638
|
-
values: {
|
|
5639
|
-
SegmentStateNone: number;
|
|
5640
|
-
NotExist: number;
|
|
5641
|
-
Growing: number;
|
|
5642
|
-
Sealed: number;
|
|
5643
|
-
Flushed: number;
|
|
5644
|
-
Flushing: number;
|
|
5645
|
-
Dropped: number;
|
|
5646
|
-
Importing: number;
|
|
5647
|
-
};
|
|
5648
|
-
};
|
|
5649
|
-
SegmentLevel: {
|
|
5650
|
-
values: {
|
|
5651
|
-
Legacy: number;
|
|
5652
|
-
L0: number;
|
|
5653
|
-
L1: number;
|
|
5654
|
-
L2: number;
|
|
5655
|
-
};
|
|
5656
|
-
};
|
|
5657
|
-
Status: {
|
|
5658
|
+
ComputePhraseMatchSlopRequest: {
|
|
5658
5659
|
fields: {
|
|
5659
|
-
|
|
5660
|
+
base: {
|
|
5660
5661
|
type: string;
|
|
5661
5662
|
id: number;
|
|
5662
|
-
options: {
|
|
5663
|
-
deprecated: boolean;
|
|
5664
|
-
};
|
|
5665
5663
|
};
|
|
5666
|
-
|
|
5664
|
+
analyzer_params: {
|
|
5667
5665
|
type: string;
|
|
5668
5666
|
id: number;
|
|
5669
5667
|
};
|
|
5670
|
-
|
|
5668
|
+
query_text: {
|
|
5671
5669
|
type: string;
|
|
5672
5670
|
id: number;
|
|
5673
5671
|
};
|
|
5674
|
-
|
|
5672
|
+
data_texts: {
|
|
5673
|
+
rule: string;
|
|
5675
5674
|
type: string;
|
|
5676
5675
|
id: number;
|
|
5677
5676
|
};
|
|
5678
|
-
|
|
5677
|
+
};
|
|
5678
|
+
};
|
|
5679
|
+
ComputePhraseMatchSlopResponse: {
|
|
5680
|
+
fields: {
|
|
5681
|
+
status: {
|
|
5679
5682
|
type: string;
|
|
5680
5683
|
id: number;
|
|
5681
5684
|
};
|
|
5682
|
-
|
|
5683
|
-
|
|
5685
|
+
is_match: {
|
|
5686
|
+
rule: string;
|
|
5687
|
+
type: string;
|
|
5688
|
+
id: number;
|
|
5689
|
+
};
|
|
5690
|
+
slops: {
|
|
5691
|
+
rule: string;
|
|
5684
5692
|
type: string;
|
|
5685
5693
|
id: number;
|
|
5686
5694
|
};
|
|
5687
5695
|
};
|
|
5688
5696
|
};
|
|
5689
|
-
|
|
5697
|
+
CreateSnapshotRequest: {
|
|
5698
|
+
options: {
|
|
5699
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5700
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5701
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5702
|
+
};
|
|
5690
5703
|
fields: {
|
|
5691
|
-
|
|
5704
|
+
base: {
|
|
5692
5705
|
type: string;
|
|
5693
5706
|
id: number;
|
|
5694
5707
|
};
|
|
5695
|
-
|
|
5708
|
+
name: {
|
|
5696
5709
|
type: string;
|
|
5697
5710
|
id: number;
|
|
5698
5711
|
};
|
|
5699
|
-
|
|
5700
|
-
};
|
|
5701
|
-
KeyDataPair: {
|
|
5702
|
-
fields: {
|
|
5703
|
-
key: {
|
|
5712
|
+
description: {
|
|
5704
5713
|
type: string;
|
|
5705
5714
|
id: number;
|
|
5706
5715
|
};
|
|
5707
|
-
|
|
5716
|
+
db_name: {
|
|
5708
5717
|
type: string;
|
|
5709
5718
|
id: number;
|
|
5710
5719
|
};
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5720
|
+
collection_name: {
|
|
5721
|
+
type: string;
|
|
5722
|
+
id: number;
|
|
5723
|
+
};
|
|
5724
|
+
compaction_protection_seconds: {
|
|
5716
5725
|
type: string;
|
|
5717
5726
|
id: number;
|
|
5718
5727
|
};
|
|
5719
5728
|
};
|
|
5720
5729
|
};
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5730
|
+
DropSnapshotRequest: {
|
|
5731
|
+
options: {
|
|
5732
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5733
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5734
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5735
|
+
};
|
|
5736
|
+
fields: {
|
|
5737
|
+
base: {
|
|
5738
|
+
type: string;
|
|
5739
|
+
id: number;
|
|
5740
|
+
};
|
|
5741
|
+
name: {
|
|
5742
|
+
type: string;
|
|
5743
|
+
id: number;
|
|
5744
|
+
};
|
|
5745
|
+
db_name: {
|
|
5746
|
+
type: string;
|
|
5747
|
+
id: number;
|
|
5748
|
+
};
|
|
5749
|
+
collection_name: {
|
|
5750
|
+
type: string;
|
|
5751
|
+
id: number;
|
|
5752
|
+
};
|
|
5753
|
+
};
|
|
5754
|
+
};
|
|
5755
|
+
ListSnapshotsRequest: {
|
|
5756
|
+
options: {
|
|
5757
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5758
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5759
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5760
|
+
};
|
|
5761
|
+
fields: {
|
|
5762
|
+
base: {
|
|
5763
|
+
type: string;
|
|
5764
|
+
id: number;
|
|
5765
|
+
};
|
|
5766
|
+
db_name: {
|
|
5767
|
+
type: string;
|
|
5768
|
+
id: number;
|
|
5769
|
+
};
|
|
5770
|
+
collection_name: {
|
|
5771
|
+
type: string;
|
|
5772
|
+
id: number;
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
|
+
};
|
|
5776
|
+
ListSnapshotsResponse: {
|
|
5777
|
+
fields: {
|
|
5778
|
+
status: {
|
|
5779
|
+
type: string;
|
|
5780
|
+
id: number;
|
|
5781
|
+
};
|
|
5782
|
+
snapshots: {
|
|
5783
|
+
rule: string;
|
|
5784
|
+
type: string;
|
|
5785
|
+
id: number;
|
|
5786
|
+
};
|
|
5787
|
+
};
|
|
5788
|
+
};
|
|
5789
|
+
DescribeSnapshotRequest: {
|
|
5790
|
+
options: {
|
|
5791
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5792
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5793
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5794
|
+
};
|
|
5795
|
+
fields: {
|
|
5796
|
+
base: {
|
|
5797
|
+
type: string;
|
|
5798
|
+
id: number;
|
|
5799
|
+
};
|
|
5800
|
+
name: {
|
|
5801
|
+
type: string;
|
|
5802
|
+
id: number;
|
|
5803
|
+
};
|
|
5804
|
+
db_name: {
|
|
5805
|
+
type: string;
|
|
5806
|
+
id: number;
|
|
5807
|
+
};
|
|
5808
|
+
collection_name: {
|
|
5809
|
+
type: string;
|
|
5810
|
+
id: number;
|
|
5811
|
+
};
|
|
5812
|
+
};
|
|
5813
|
+
};
|
|
5814
|
+
DescribeSnapshotResponse: {
|
|
5815
|
+
fields: {
|
|
5816
|
+
status: {
|
|
5817
|
+
type: string;
|
|
5818
|
+
id: number;
|
|
5819
|
+
};
|
|
5820
|
+
name: {
|
|
5821
|
+
type: string;
|
|
5822
|
+
id: number;
|
|
5823
|
+
};
|
|
5824
|
+
description: {
|
|
5825
|
+
type: string;
|
|
5826
|
+
id: number;
|
|
5827
|
+
};
|
|
5828
|
+
collection_name: {
|
|
5829
|
+
type: string;
|
|
5830
|
+
id: number;
|
|
5831
|
+
};
|
|
5832
|
+
partition_names: {
|
|
5833
|
+
rule: string;
|
|
5834
|
+
type: string;
|
|
5835
|
+
id: number;
|
|
5836
|
+
};
|
|
5837
|
+
create_ts: {
|
|
5838
|
+
type: string;
|
|
5839
|
+
id: number;
|
|
5840
|
+
};
|
|
5841
|
+
s3_location: {
|
|
5842
|
+
type: string;
|
|
5843
|
+
id: number;
|
|
5844
|
+
};
|
|
5845
|
+
};
|
|
5846
|
+
};
|
|
5847
|
+
RestoreSnapshotRequest: {
|
|
5848
|
+
options: {
|
|
5849
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5850
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5851
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5852
|
+
};
|
|
5853
|
+
fields: {
|
|
5854
|
+
base: {
|
|
5855
|
+
type: string;
|
|
5856
|
+
id: number;
|
|
5857
|
+
};
|
|
5858
|
+
name: {
|
|
5859
|
+
type: string;
|
|
5860
|
+
id: number;
|
|
5861
|
+
};
|
|
5862
|
+
db_name: {
|
|
5863
|
+
type: string;
|
|
5864
|
+
id: number;
|
|
5865
|
+
};
|
|
5866
|
+
collection_name: {
|
|
5867
|
+
type: string;
|
|
5868
|
+
id: number;
|
|
5869
|
+
};
|
|
5870
|
+
rewrite_data: {
|
|
5871
|
+
type: string;
|
|
5872
|
+
id: number;
|
|
5873
|
+
};
|
|
5874
|
+
target_db_name: {
|
|
5875
|
+
type: string;
|
|
5876
|
+
id: number;
|
|
5877
|
+
};
|
|
5878
|
+
target_collection_name: {
|
|
5879
|
+
type: string;
|
|
5880
|
+
id: number;
|
|
5881
|
+
};
|
|
5882
|
+
};
|
|
5883
|
+
};
|
|
5884
|
+
RestoreSnapshotResponse: {
|
|
5885
|
+
fields: {
|
|
5886
|
+
status: {
|
|
5887
|
+
type: string;
|
|
5888
|
+
id: number;
|
|
5889
|
+
};
|
|
5890
|
+
job_id: {
|
|
5891
|
+
type: string;
|
|
5892
|
+
id: number;
|
|
5893
|
+
};
|
|
5894
|
+
};
|
|
5895
|
+
};
|
|
5896
|
+
RestoreSnapshotState: {
|
|
5897
|
+
values: {
|
|
5898
|
+
RestoreSnapshotNone: number;
|
|
5899
|
+
RestoreSnapshotPending: number;
|
|
5900
|
+
RestoreSnapshotExecuting: number;
|
|
5901
|
+
RestoreSnapshotCompleted: number;
|
|
5902
|
+
RestoreSnapshotFailed: number;
|
|
5903
|
+
};
|
|
5904
|
+
};
|
|
5905
|
+
RestoreSnapshotInfo: {
|
|
5906
|
+
fields: {
|
|
5907
|
+
job_id: {
|
|
5908
|
+
type: string;
|
|
5909
|
+
id: number;
|
|
5910
|
+
};
|
|
5911
|
+
snapshot_name: {
|
|
5912
|
+
type: string;
|
|
5913
|
+
id: number;
|
|
5914
|
+
};
|
|
5915
|
+
db_name: {
|
|
5916
|
+
type: string;
|
|
5917
|
+
id: number;
|
|
5918
|
+
};
|
|
5919
|
+
collection_name: {
|
|
5920
|
+
type: string;
|
|
5921
|
+
id: number;
|
|
5922
|
+
};
|
|
5923
|
+
state: {
|
|
5924
|
+
type: string;
|
|
5925
|
+
id: number;
|
|
5926
|
+
};
|
|
5927
|
+
progress: {
|
|
5928
|
+
type: string;
|
|
5929
|
+
id: number;
|
|
5930
|
+
};
|
|
5931
|
+
reason: {
|
|
5932
|
+
type: string;
|
|
5933
|
+
id: number;
|
|
5934
|
+
};
|
|
5935
|
+
start_time: {
|
|
5936
|
+
type: string;
|
|
5937
|
+
id: number;
|
|
5938
|
+
};
|
|
5939
|
+
time_cost: {
|
|
5940
|
+
type: string;
|
|
5941
|
+
id: number;
|
|
5942
|
+
};
|
|
5943
|
+
};
|
|
5944
|
+
};
|
|
5945
|
+
GetRestoreSnapshotStateRequest: {
|
|
5946
|
+
fields: {
|
|
5947
|
+
base: {
|
|
5948
|
+
type: string;
|
|
5949
|
+
id: number;
|
|
5950
|
+
};
|
|
5951
|
+
job_id: {
|
|
5952
|
+
type: string;
|
|
5953
|
+
id: number;
|
|
5954
|
+
};
|
|
5955
|
+
};
|
|
5956
|
+
};
|
|
5957
|
+
GetRestoreSnapshotStateResponse: {
|
|
5958
|
+
fields: {
|
|
5959
|
+
status: {
|
|
5960
|
+
type: string;
|
|
5961
|
+
id: number;
|
|
5962
|
+
};
|
|
5963
|
+
info: {
|
|
5964
|
+
type: string;
|
|
5965
|
+
id: number;
|
|
5966
|
+
};
|
|
5967
|
+
};
|
|
5968
|
+
};
|
|
5969
|
+
ListRestoreSnapshotJobsRequest: {
|
|
5970
|
+
options: {
|
|
5971
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
5972
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
5973
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
5974
|
+
};
|
|
5975
|
+
fields: {
|
|
5976
|
+
base: {
|
|
5977
|
+
type: string;
|
|
5978
|
+
id: number;
|
|
5979
|
+
};
|
|
5980
|
+
db_name: {
|
|
5981
|
+
type: string;
|
|
5982
|
+
id: number;
|
|
5983
|
+
};
|
|
5984
|
+
collection_name: {
|
|
5985
|
+
type: string;
|
|
5986
|
+
id: number;
|
|
5987
|
+
};
|
|
5988
|
+
};
|
|
5989
|
+
};
|
|
5990
|
+
ListRestoreSnapshotJobsResponse: {
|
|
5991
|
+
fields: {
|
|
5992
|
+
status: {
|
|
5993
|
+
type: string;
|
|
5994
|
+
id: number;
|
|
5995
|
+
};
|
|
5996
|
+
jobs: {
|
|
5997
|
+
rule: string;
|
|
5998
|
+
type: string;
|
|
5999
|
+
id: number;
|
|
6000
|
+
};
|
|
6001
|
+
};
|
|
6002
|
+
};
|
|
6003
|
+
PinSnapshotDataRequest: {
|
|
6004
|
+
options: {
|
|
6005
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
6006
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
6007
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
6008
|
+
};
|
|
6009
|
+
fields: {
|
|
6010
|
+
base: {
|
|
6011
|
+
type: string;
|
|
6012
|
+
id: number;
|
|
6013
|
+
};
|
|
6014
|
+
name: {
|
|
6015
|
+
type: string;
|
|
6016
|
+
id: number;
|
|
6017
|
+
};
|
|
6018
|
+
db_name: {
|
|
6019
|
+
type: string;
|
|
6020
|
+
id: number;
|
|
6021
|
+
};
|
|
6022
|
+
collection_name: {
|
|
6023
|
+
type: string;
|
|
6024
|
+
id: number;
|
|
6025
|
+
};
|
|
6026
|
+
ttl_seconds: {
|
|
6027
|
+
type: string;
|
|
6028
|
+
id: number;
|
|
6029
|
+
};
|
|
6030
|
+
};
|
|
6031
|
+
};
|
|
6032
|
+
PinSnapshotDataResponse: {
|
|
6033
|
+
fields: {
|
|
6034
|
+
status: {
|
|
6035
|
+
type: string;
|
|
6036
|
+
id: number;
|
|
6037
|
+
};
|
|
6038
|
+
pin_id: {
|
|
6039
|
+
type: string;
|
|
6040
|
+
id: number;
|
|
6041
|
+
};
|
|
6042
|
+
};
|
|
6043
|
+
};
|
|
6044
|
+
UnpinSnapshotDataRequest: {
|
|
6045
|
+
options: {
|
|
6046
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
6047
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
6048
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
6049
|
+
};
|
|
6050
|
+
fields: {
|
|
6051
|
+
base: {
|
|
6052
|
+
type: string;
|
|
6053
|
+
id: number;
|
|
6054
|
+
};
|
|
6055
|
+
pin_id: {
|
|
6056
|
+
type: string;
|
|
6057
|
+
id: number;
|
|
6058
|
+
};
|
|
6059
|
+
};
|
|
6060
|
+
};
|
|
6061
|
+
AlterCollectionSchemaRequest: {
|
|
6062
|
+
options: {
|
|
6063
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
6064
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
6065
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
6066
|
+
};
|
|
6067
|
+
fields: {
|
|
6068
|
+
base: {
|
|
6069
|
+
type: string;
|
|
6070
|
+
id: number;
|
|
6071
|
+
};
|
|
6072
|
+
db_name: {
|
|
6073
|
+
type: string;
|
|
6074
|
+
id: number;
|
|
6075
|
+
};
|
|
6076
|
+
collection_name: {
|
|
6077
|
+
type: string;
|
|
6078
|
+
id: number;
|
|
6079
|
+
};
|
|
6080
|
+
collectionID: {
|
|
6081
|
+
type: string;
|
|
6082
|
+
id: number;
|
|
6083
|
+
};
|
|
6084
|
+
action: {
|
|
6085
|
+
type: string;
|
|
6086
|
+
id: number;
|
|
6087
|
+
};
|
|
6088
|
+
};
|
|
6089
|
+
nested: {
|
|
6090
|
+
FieldInfo: {
|
|
6091
|
+
fields: {
|
|
6092
|
+
field_schema: {
|
|
6093
|
+
type: string;
|
|
6094
|
+
id: number;
|
|
6095
|
+
};
|
|
6096
|
+
index_name: {
|
|
6097
|
+
type: string;
|
|
6098
|
+
id: number;
|
|
6099
|
+
};
|
|
6100
|
+
extra_params: {
|
|
6101
|
+
rule: string;
|
|
6102
|
+
type: string;
|
|
6103
|
+
id: number;
|
|
6104
|
+
};
|
|
6105
|
+
};
|
|
6106
|
+
};
|
|
6107
|
+
AddRequest: {
|
|
6108
|
+
fields: {
|
|
6109
|
+
field_infos: {
|
|
6110
|
+
rule: string;
|
|
6111
|
+
type: string;
|
|
6112
|
+
id: number;
|
|
6113
|
+
};
|
|
6114
|
+
func_schema: {
|
|
6115
|
+
rule: string;
|
|
6116
|
+
type: string;
|
|
6117
|
+
id: number;
|
|
6118
|
+
};
|
|
6119
|
+
do_physical_backfill: {
|
|
6120
|
+
type: string;
|
|
6121
|
+
id: number;
|
|
6122
|
+
};
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
6125
|
+
DropRequest: {
|
|
6126
|
+
oneofs: {
|
|
6127
|
+
identifier: {
|
|
6128
|
+
oneof: string[];
|
|
6129
|
+
};
|
|
6130
|
+
};
|
|
6131
|
+
fields: {
|
|
6132
|
+
field_name: {
|
|
6133
|
+
type: string;
|
|
6134
|
+
id: number;
|
|
6135
|
+
};
|
|
6136
|
+
field_id: {
|
|
6137
|
+
type: string;
|
|
6138
|
+
id: number;
|
|
6139
|
+
};
|
|
6140
|
+
function_name: {
|
|
6141
|
+
type: string;
|
|
6142
|
+
id: number;
|
|
6143
|
+
};
|
|
6144
|
+
};
|
|
6145
|
+
};
|
|
6146
|
+
Action: {
|
|
6147
|
+
oneofs: {
|
|
6148
|
+
op: {
|
|
6149
|
+
oneof: string[];
|
|
6150
|
+
};
|
|
6151
|
+
};
|
|
6152
|
+
fields: {
|
|
6153
|
+
add_request: {
|
|
6154
|
+
type: string;
|
|
6155
|
+
id: number;
|
|
6156
|
+
};
|
|
6157
|
+
drop_request: {
|
|
6158
|
+
type: string;
|
|
6159
|
+
id: number;
|
|
6160
|
+
};
|
|
6161
|
+
};
|
|
6162
|
+
};
|
|
6163
|
+
};
|
|
6164
|
+
};
|
|
6165
|
+
AlterCollectionSchemaResponse: {
|
|
6166
|
+
fields: {
|
|
6167
|
+
alter_status: {
|
|
6168
|
+
type: string;
|
|
6169
|
+
id: number;
|
|
6170
|
+
};
|
|
6171
|
+
index_status: {
|
|
6172
|
+
type: string;
|
|
6173
|
+
id: number;
|
|
6174
|
+
};
|
|
6175
|
+
};
|
|
6176
|
+
};
|
|
6177
|
+
BatchUpdateManifestRequest: {
|
|
6178
|
+
options: {
|
|
6179
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
6180
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
6181
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
6182
|
+
};
|
|
6183
|
+
fields: {
|
|
6184
|
+
base: {
|
|
6185
|
+
type: string;
|
|
6186
|
+
id: number;
|
|
6187
|
+
};
|
|
6188
|
+
db_name: {
|
|
6189
|
+
type: string;
|
|
6190
|
+
id: number;
|
|
6191
|
+
};
|
|
6192
|
+
collection_name: {
|
|
6193
|
+
type: string;
|
|
6194
|
+
id: number;
|
|
6195
|
+
};
|
|
6196
|
+
field_names: {
|
|
6197
|
+
rule: string;
|
|
6198
|
+
type: string;
|
|
6199
|
+
id: number;
|
|
6200
|
+
};
|
|
6201
|
+
items: {
|
|
6202
|
+
rule: string;
|
|
6203
|
+
type: string;
|
|
6204
|
+
id: number;
|
|
6205
|
+
};
|
|
6206
|
+
};
|
|
6207
|
+
};
|
|
6208
|
+
BatchUpdateManifestItem: {
|
|
6209
|
+
fields: {
|
|
6210
|
+
segment_id: {
|
|
6211
|
+
type: string;
|
|
6212
|
+
id: number;
|
|
6213
|
+
};
|
|
6214
|
+
manifest_version: {
|
|
6215
|
+
type: string;
|
|
6216
|
+
id: number;
|
|
6217
|
+
};
|
|
6218
|
+
};
|
|
6219
|
+
};
|
|
6220
|
+
ClientHeartbeatRequest: {
|
|
6221
|
+
fields: {
|
|
6222
|
+
client_info: {
|
|
6223
|
+
type: string;
|
|
6224
|
+
id: number;
|
|
6225
|
+
};
|
|
6226
|
+
report_timestamp: {
|
|
6227
|
+
type: string;
|
|
6228
|
+
id: number;
|
|
6229
|
+
};
|
|
6230
|
+
metrics: {
|
|
6231
|
+
rule: string;
|
|
6232
|
+
type: string;
|
|
6233
|
+
id: number;
|
|
6234
|
+
};
|
|
6235
|
+
command_replies: {
|
|
6236
|
+
rule: string;
|
|
6237
|
+
type: string;
|
|
6238
|
+
id: number;
|
|
6239
|
+
};
|
|
6240
|
+
config_hash: {
|
|
6241
|
+
type: string;
|
|
6242
|
+
id: number;
|
|
6243
|
+
};
|
|
6244
|
+
last_command_timestamp: {
|
|
6245
|
+
type: string;
|
|
6246
|
+
id: number;
|
|
6247
|
+
};
|
|
6248
|
+
};
|
|
6249
|
+
};
|
|
6250
|
+
ClientHeartbeatResponse: {
|
|
6251
|
+
fields: {
|
|
6252
|
+
status: {
|
|
6253
|
+
type: string;
|
|
6254
|
+
id: number;
|
|
6255
|
+
};
|
|
6256
|
+
server_timestamp: {
|
|
6257
|
+
type: string;
|
|
6258
|
+
id: number;
|
|
6259
|
+
};
|
|
6260
|
+
commands: {
|
|
6261
|
+
rule: string;
|
|
6262
|
+
type: string;
|
|
6263
|
+
id: number;
|
|
6264
|
+
};
|
|
6265
|
+
};
|
|
6266
|
+
};
|
|
6267
|
+
GetClientTelemetryRequest: {
|
|
6268
|
+
fields: {
|
|
6269
|
+
database: {
|
|
6270
|
+
type: string;
|
|
6271
|
+
id: number;
|
|
6272
|
+
};
|
|
6273
|
+
client_id: {
|
|
6274
|
+
type: string;
|
|
6275
|
+
id: number;
|
|
6276
|
+
};
|
|
6277
|
+
include_metrics: {
|
|
6278
|
+
type: string;
|
|
6279
|
+
id: number;
|
|
6280
|
+
};
|
|
6281
|
+
};
|
|
6282
|
+
};
|
|
6283
|
+
ClientTelemetry: {
|
|
6284
|
+
fields: {
|
|
6285
|
+
client_info: {
|
|
6286
|
+
type: string;
|
|
6287
|
+
id: number;
|
|
6288
|
+
};
|
|
6289
|
+
last_heartbeat_time: {
|
|
6290
|
+
type: string;
|
|
6291
|
+
id: number;
|
|
6292
|
+
};
|
|
6293
|
+
status: {
|
|
6294
|
+
type: string;
|
|
6295
|
+
id: number;
|
|
6296
|
+
};
|
|
6297
|
+
databases: {
|
|
6298
|
+
rule: string;
|
|
6299
|
+
type: string;
|
|
6300
|
+
id: number;
|
|
6301
|
+
};
|
|
6302
|
+
metrics: {
|
|
6303
|
+
rule: string;
|
|
6304
|
+
type: string;
|
|
6305
|
+
id: number;
|
|
6306
|
+
};
|
|
6307
|
+
};
|
|
6308
|
+
};
|
|
6309
|
+
GetClientTelemetryResponse: {
|
|
6310
|
+
fields: {
|
|
6311
|
+
status: {
|
|
6312
|
+
type: string;
|
|
6313
|
+
id: number;
|
|
6314
|
+
};
|
|
6315
|
+
clients: {
|
|
6316
|
+
rule: string;
|
|
6317
|
+
type: string;
|
|
6318
|
+
id: number;
|
|
6319
|
+
};
|
|
6320
|
+
aggregated: {
|
|
6321
|
+
type: string;
|
|
6322
|
+
id: number;
|
|
6323
|
+
};
|
|
6324
|
+
};
|
|
6325
|
+
};
|
|
6326
|
+
PushClientCommandRequest: {
|
|
6327
|
+
fields: {
|
|
6328
|
+
command_type: {
|
|
6329
|
+
type: string;
|
|
6330
|
+
id: number;
|
|
6331
|
+
};
|
|
6332
|
+
payload: {
|
|
6333
|
+
type: string;
|
|
6334
|
+
id: number;
|
|
6335
|
+
};
|
|
6336
|
+
target_client_id: {
|
|
6337
|
+
type: string;
|
|
6338
|
+
id: number;
|
|
6339
|
+
};
|
|
6340
|
+
target_database: {
|
|
6341
|
+
type: string;
|
|
6342
|
+
id: number;
|
|
6343
|
+
};
|
|
6344
|
+
ttl_seconds: {
|
|
6345
|
+
type: string;
|
|
6346
|
+
id: number;
|
|
6347
|
+
};
|
|
6348
|
+
persistent: {
|
|
6349
|
+
type: string;
|
|
6350
|
+
id: number;
|
|
6351
|
+
};
|
|
6352
|
+
};
|
|
6353
|
+
};
|
|
6354
|
+
PushClientCommandResponse: {
|
|
6355
|
+
fields: {
|
|
6356
|
+
status: {
|
|
6357
|
+
type: string;
|
|
6358
|
+
id: number;
|
|
6359
|
+
};
|
|
6360
|
+
command_id: {
|
|
6361
|
+
type: string;
|
|
6362
|
+
id: number;
|
|
6363
|
+
};
|
|
6364
|
+
};
|
|
6365
|
+
};
|
|
6366
|
+
DeleteClientCommandRequest: {
|
|
6367
|
+
fields: {
|
|
6368
|
+
command_id: {
|
|
6369
|
+
type: string;
|
|
6370
|
+
id: number;
|
|
6371
|
+
};
|
|
6372
|
+
};
|
|
6373
|
+
};
|
|
6374
|
+
DeleteClientCommandResponse: {
|
|
6375
|
+
fields: {
|
|
6376
|
+
status: {
|
|
6377
|
+
type: string;
|
|
6378
|
+
id: number;
|
|
6379
|
+
};
|
|
6380
|
+
};
|
|
6381
|
+
};
|
|
6382
|
+
RefreshExternalCollectionState: {
|
|
6383
|
+
values: {
|
|
6384
|
+
RefreshPending: number;
|
|
6385
|
+
RefreshInProgress: number;
|
|
6386
|
+
RefreshCompleted: number;
|
|
6387
|
+
RefreshFailed: number;
|
|
6388
|
+
};
|
|
6389
|
+
};
|
|
6390
|
+
RefreshExternalCollectionRequest: {
|
|
6391
|
+
options: {
|
|
6392
|
+
"(common.privilege_ext_obj).object_type": string;
|
|
6393
|
+
"(common.privilege_ext_obj).object_privilege": string;
|
|
6394
|
+
"(common.privilege_ext_obj).object_name_index": number;
|
|
6395
|
+
};
|
|
6396
|
+
fields: {
|
|
6397
|
+
base: {
|
|
6398
|
+
type: string;
|
|
6399
|
+
id: number;
|
|
6400
|
+
};
|
|
6401
|
+
db_name: {
|
|
6402
|
+
type: string;
|
|
6403
|
+
id: number;
|
|
6404
|
+
};
|
|
6405
|
+
collection_name: {
|
|
6406
|
+
type: string;
|
|
6407
|
+
id: number;
|
|
6408
|
+
};
|
|
6409
|
+
external_source: {
|
|
6410
|
+
type: string;
|
|
6411
|
+
id: number;
|
|
6412
|
+
};
|
|
6413
|
+
external_spec: {
|
|
6414
|
+
type: string;
|
|
6415
|
+
id: number;
|
|
6416
|
+
};
|
|
6417
|
+
};
|
|
6418
|
+
};
|
|
6419
|
+
RefreshExternalCollectionResponse: {
|
|
6420
|
+
fields: {
|
|
6421
|
+
status: {
|
|
6422
|
+
type: string;
|
|
6423
|
+
id: number;
|
|
6424
|
+
};
|
|
6425
|
+
job_id: {
|
|
6426
|
+
type: string;
|
|
6427
|
+
id: number;
|
|
6428
|
+
};
|
|
6429
|
+
};
|
|
6430
|
+
};
|
|
6431
|
+
GetRefreshExternalCollectionProgressRequest: {
|
|
6432
|
+
fields: {
|
|
6433
|
+
base: {
|
|
6434
|
+
type: string;
|
|
6435
|
+
id: number;
|
|
6436
|
+
};
|
|
6437
|
+
job_id: {
|
|
6438
|
+
type: string;
|
|
6439
|
+
id: number;
|
|
6440
|
+
};
|
|
6441
|
+
};
|
|
6442
|
+
};
|
|
6443
|
+
RefreshExternalCollectionJobInfo: {
|
|
6444
|
+
fields: {
|
|
6445
|
+
job_id: {
|
|
6446
|
+
type: string;
|
|
6447
|
+
id: number;
|
|
6448
|
+
};
|
|
6449
|
+
collection_name: {
|
|
6450
|
+
type: string;
|
|
6451
|
+
id: number;
|
|
6452
|
+
};
|
|
6453
|
+
state: {
|
|
6454
|
+
type: string;
|
|
6455
|
+
id: number;
|
|
6456
|
+
};
|
|
6457
|
+
progress: {
|
|
6458
|
+
type: string;
|
|
6459
|
+
id: number;
|
|
6460
|
+
};
|
|
6461
|
+
reason: {
|
|
6462
|
+
type: string;
|
|
6463
|
+
id: number;
|
|
6464
|
+
};
|
|
6465
|
+
external_source: {
|
|
6466
|
+
type: string;
|
|
6467
|
+
id: number;
|
|
6468
|
+
};
|
|
6469
|
+
start_time: {
|
|
6470
|
+
type: string;
|
|
6471
|
+
id: number;
|
|
6472
|
+
};
|
|
6473
|
+
end_time: {
|
|
6474
|
+
type: string;
|
|
6475
|
+
id: number;
|
|
6476
|
+
};
|
|
6477
|
+
external_spec: {
|
|
6478
|
+
type: string;
|
|
6479
|
+
id: number;
|
|
6480
|
+
};
|
|
6481
|
+
};
|
|
6482
|
+
};
|
|
6483
|
+
GetRefreshExternalCollectionProgressResponse: {
|
|
6484
|
+
fields: {
|
|
6485
|
+
status: {
|
|
6486
|
+
type: string;
|
|
6487
|
+
id: number;
|
|
6488
|
+
};
|
|
6489
|
+
job_info: {
|
|
6490
|
+
type: string;
|
|
6491
|
+
id: number;
|
|
6492
|
+
};
|
|
6493
|
+
};
|
|
6494
|
+
};
|
|
6495
|
+
ListRefreshExternalCollectionJobsRequest: {
|
|
6496
|
+
fields: {
|
|
6497
|
+
base: {
|
|
6498
|
+
type: string;
|
|
6499
|
+
id: number;
|
|
6500
|
+
};
|
|
6501
|
+
db_name: {
|
|
6502
|
+
type: string;
|
|
6503
|
+
id: number;
|
|
6504
|
+
};
|
|
6505
|
+
collection_name: {
|
|
6506
|
+
type: string;
|
|
6507
|
+
id: number;
|
|
6508
|
+
};
|
|
6509
|
+
};
|
|
6510
|
+
};
|
|
6511
|
+
ListRefreshExternalCollectionJobsResponse: {
|
|
6512
|
+
fields: {
|
|
6513
|
+
status: {
|
|
6514
|
+
type: string;
|
|
6515
|
+
id: number;
|
|
6516
|
+
};
|
|
6517
|
+
jobs: {
|
|
6518
|
+
rule: string;
|
|
6519
|
+
type: string;
|
|
6520
|
+
id: number;
|
|
6521
|
+
};
|
|
6522
|
+
};
|
|
6523
|
+
};
|
|
6524
|
+
};
|
|
6525
|
+
};
|
|
6526
|
+
common: {
|
|
6527
|
+
options: {
|
|
6528
|
+
go_package: string;
|
|
6529
|
+
java_multiple_files: boolean;
|
|
6530
|
+
java_package: string;
|
|
6531
|
+
java_outer_classname: string;
|
|
6532
|
+
java_generate_equals_and_hash: boolean;
|
|
6533
|
+
csharp_namespace: string;
|
|
6534
|
+
};
|
|
6535
|
+
nested: {
|
|
6536
|
+
ErrorCode: {
|
|
6537
|
+
options: {
|
|
6538
|
+
deprecated: boolean;
|
|
6539
|
+
};
|
|
6540
|
+
values: {
|
|
6541
|
+
Success: number;
|
|
6542
|
+
UnexpectedError: number;
|
|
6543
|
+
ConnectFailed: number;
|
|
6544
|
+
PermissionDenied: number;
|
|
6545
|
+
CollectionNotExists: number;
|
|
6546
|
+
IllegalArgument: number;
|
|
6547
|
+
IllegalDimension: number;
|
|
6548
|
+
IllegalIndexType: number;
|
|
6549
|
+
IllegalCollectionName: number;
|
|
6550
|
+
IllegalTOPK: number;
|
|
6551
|
+
IllegalRowRecord: number;
|
|
6552
|
+
IllegalVectorID: number;
|
|
6553
|
+
IllegalSearchResult: number;
|
|
6554
|
+
FileNotFound: number;
|
|
6555
|
+
MetaFailed: number;
|
|
6556
|
+
CacheFailed: number;
|
|
6557
|
+
CannotCreateFolder: number;
|
|
6558
|
+
CannotCreateFile: number;
|
|
6559
|
+
CannotDeleteFolder: number;
|
|
6560
|
+
CannotDeleteFile: number;
|
|
6561
|
+
BuildIndexError: number;
|
|
6562
|
+
IllegalNLIST: number;
|
|
6563
|
+
IllegalMetricType: number;
|
|
6564
|
+
OutOfMemory: number;
|
|
6565
|
+
IndexNotExist: number;
|
|
6566
|
+
EmptyCollection: number;
|
|
6567
|
+
UpdateImportTaskFailure: number;
|
|
6568
|
+
CollectionNameNotFound: number;
|
|
6569
|
+
CreateCredentialFailure: number;
|
|
6570
|
+
UpdateCredentialFailure: number;
|
|
6571
|
+
DeleteCredentialFailure: number;
|
|
6572
|
+
GetCredentialFailure: number;
|
|
6573
|
+
ListCredUsersFailure: number;
|
|
6574
|
+
GetUserFailure: number;
|
|
6575
|
+
CreateRoleFailure: number;
|
|
6576
|
+
DropRoleFailure: number;
|
|
6577
|
+
OperateUserRoleFailure: number;
|
|
6578
|
+
SelectRoleFailure: number;
|
|
6579
|
+
SelectUserFailure: number;
|
|
6580
|
+
SelectResourceFailure: number;
|
|
6581
|
+
OperatePrivilegeFailure: number;
|
|
6582
|
+
SelectGrantFailure: number;
|
|
6583
|
+
RefreshPolicyInfoCacheFailure: number;
|
|
6584
|
+
ListPolicyFailure: number;
|
|
6585
|
+
NotShardLeader: number;
|
|
6586
|
+
NoReplicaAvailable: number;
|
|
6587
|
+
SegmentNotFound: number;
|
|
6588
|
+
ForceDeny: number;
|
|
6589
|
+
RateLimit: number;
|
|
6590
|
+
NodeIDNotMatch: number;
|
|
6591
|
+
UpsertAutoIDTrue: number;
|
|
6592
|
+
InsufficientMemoryToLoad: number;
|
|
6593
|
+
MemoryQuotaExhausted: number;
|
|
6594
|
+
DiskQuotaExhausted: number;
|
|
6595
|
+
TimeTickLongDelay: number;
|
|
6596
|
+
NotReadyServe: number;
|
|
6597
|
+
NotReadyCoordActivating: number;
|
|
6598
|
+
CreatePrivilegeGroupFailure: number;
|
|
6599
|
+
DropPrivilegeGroupFailure: number;
|
|
6600
|
+
ListPrivilegeGroupsFailure: number;
|
|
6601
|
+
OperatePrivilegeGroupFailure: number;
|
|
6602
|
+
SchemaMismatch: number;
|
|
6603
|
+
DataCoordNA: number;
|
|
6604
|
+
DDRequestRace: number;
|
|
6605
|
+
};
|
|
6606
|
+
};
|
|
6607
|
+
IndexState: {
|
|
6608
|
+
values: {
|
|
6609
|
+
IndexStateNone: number;
|
|
6610
|
+
Unissued: number;
|
|
6611
|
+
InProgress: number;
|
|
6612
|
+
Finished: number;
|
|
6613
|
+
Failed: number;
|
|
6614
|
+
Retry: number;
|
|
6615
|
+
};
|
|
6616
|
+
};
|
|
6617
|
+
SegmentState: {
|
|
6618
|
+
values: {
|
|
6619
|
+
SegmentStateNone: number;
|
|
6620
|
+
NotExist: number;
|
|
6621
|
+
Growing: number;
|
|
6622
|
+
Sealed: number;
|
|
6623
|
+
Flushed: number;
|
|
6624
|
+
Flushing: number;
|
|
6625
|
+
Dropped: number;
|
|
6626
|
+
Importing: number;
|
|
6627
|
+
};
|
|
6628
|
+
};
|
|
6629
|
+
SegmentLevel: {
|
|
6630
|
+
values: {
|
|
6631
|
+
Legacy: number;
|
|
6632
|
+
L0: number;
|
|
6633
|
+
L1: number;
|
|
6634
|
+
L2: number;
|
|
6635
|
+
};
|
|
6636
|
+
};
|
|
6637
|
+
Status: {
|
|
6638
|
+
fields: {
|
|
6639
|
+
error_code: {
|
|
6640
|
+
type: string;
|
|
6641
|
+
id: number;
|
|
6642
|
+
options: {
|
|
6643
|
+
deprecated: boolean;
|
|
6644
|
+
};
|
|
6645
|
+
};
|
|
6646
|
+
reason: {
|
|
6647
|
+
type: string;
|
|
6648
|
+
id: number;
|
|
6649
|
+
};
|
|
6650
|
+
code: {
|
|
6651
|
+
type: string;
|
|
6652
|
+
id: number;
|
|
6653
|
+
};
|
|
6654
|
+
retriable: {
|
|
6655
|
+
type: string;
|
|
6656
|
+
id: number;
|
|
6657
|
+
};
|
|
6658
|
+
detail: {
|
|
6659
|
+
type: string;
|
|
6660
|
+
id: number;
|
|
6661
|
+
};
|
|
6662
|
+
extra_info: {
|
|
6663
|
+
keyType: string;
|
|
6664
|
+
type: string;
|
|
6665
|
+
id: number;
|
|
6666
|
+
};
|
|
6667
|
+
};
|
|
6668
|
+
};
|
|
6669
|
+
KeyValuePair: {
|
|
6670
|
+
fields: {
|
|
6671
|
+
key: {
|
|
6672
|
+
type: string;
|
|
6673
|
+
id: number;
|
|
6674
|
+
};
|
|
6675
|
+
value: {
|
|
6676
|
+
type: string;
|
|
6677
|
+
id: number;
|
|
6678
|
+
};
|
|
6679
|
+
};
|
|
6680
|
+
};
|
|
6681
|
+
KeyDataPair: {
|
|
6682
|
+
fields: {
|
|
6683
|
+
key: {
|
|
6684
|
+
type: string;
|
|
6685
|
+
id: number;
|
|
6686
|
+
};
|
|
6687
|
+
data: {
|
|
6688
|
+
type: string;
|
|
6689
|
+
id: number;
|
|
6690
|
+
};
|
|
6691
|
+
};
|
|
6692
|
+
};
|
|
6693
|
+
Blob: {
|
|
6694
|
+
fields: {
|
|
6695
|
+
value: {
|
|
6696
|
+
type: string;
|
|
6697
|
+
id: number;
|
|
6698
|
+
};
|
|
6699
|
+
};
|
|
6700
|
+
};
|
|
6701
|
+
PlaceholderType: {
|
|
6702
|
+
values: {
|
|
6703
|
+
None: number;
|
|
6704
|
+
BinaryVector: number;
|
|
5725
6705
|
FloatVector: number;
|
|
5726
6706
|
Float16Vector: number;
|
|
5727
6707
|
BFloat16Vector: number;
|
|
@@ -5752,6 +6732,10 @@ declare const _default: {
|
|
|
5752
6732
|
type: string;
|
|
5753
6733
|
id: number;
|
|
5754
6734
|
};
|
|
6735
|
+
element_level: {
|
|
6736
|
+
type: string;
|
|
6737
|
+
id: number;
|
|
6738
|
+
};
|
|
5755
6739
|
};
|
|
5756
6740
|
};
|
|
5757
6741
|
PlaceholderGroup: {
|
|
@@ -5776,6 +6760,11 @@ declare const _default: {
|
|
|
5776
6760
|
};
|
|
5777
6761
|
};
|
|
5778
6762
|
MsgType: {
|
|
6763
|
+
valuesOptions: {
|
|
6764
|
+
Replicate: {
|
|
6765
|
+
deprecated: boolean;
|
|
6766
|
+
};
|
|
6767
|
+
};
|
|
5779
6768
|
values: {
|
|
5780
6769
|
Undefined: number;
|
|
5781
6770
|
CreateCollection: number;
|
|
@@ -5900,6 +6889,19 @@ declare const _default: {
|
|
|
5900
6889
|
DescribeDatabase: number;
|
|
5901
6890
|
AddCollectionField: number;
|
|
5902
6891
|
AlterWAL: number;
|
|
6892
|
+
CreateSnapshot: number;
|
|
6893
|
+
DropSnapshot: number;
|
|
6894
|
+
ListSnapshots: number;
|
|
6895
|
+
DescribeSnapshot: number;
|
|
6896
|
+
RestoreSnapshot: number;
|
|
6897
|
+
GetRestoreSnapshotState: number;
|
|
6898
|
+
ListRestoreSnapshotJobs: number;
|
|
6899
|
+
PinSnapshotData: number;
|
|
6900
|
+
UnpinSnapshotData: number;
|
|
6901
|
+
AlterCollectionSchema: number;
|
|
6902
|
+
RefreshExternalCollection: number;
|
|
6903
|
+
GetRefreshExternalCollectionProgress: number;
|
|
6904
|
+
ListRefreshExternalCollectionJobs: number;
|
|
5903
6905
|
};
|
|
5904
6906
|
};
|
|
5905
6907
|
MsgBase: {
|
|
@@ -5932,10 +6934,16 @@ declare const _default: {
|
|
|
5932
6934
|
replicateInfo: {
|
|
5933
6935
|
type: string;
|
|
5934
6936
|
id: number;
|
|
6937
|
+
options: {
|
|
6938
|
+
deprecated: boolean;
|
|
6939
|
+
};
|
|
5935
6940
|
};
|
|
5936
6941
|
};
|
|
5937
6942
|
};
|
|
5938
6943
|
ReplicateInfo: {
|
|
6944
|
+
options: {
|
|
6945
|
+
deprecated: boolean;
|
|
6946
|
+
};
|
|
5939
6947
|
fields: {
|
|
5940
6948
|
isReplicate: {
|
|
5941
6949
|
type: string;
|
|
@@ -6089,7 +7097,16 @@ declare const _default: {
|
|
|
6089
7097
|
PrivilegeRemoveFileResource: number;
|
|
6090
7098
|
PrivilegeListFileResources: number;
|
|
6091
7099
|
PrivilegeUpdateReplicateConfiguration: number;
|
|
7100
|
+
PrivilegeCreateSnapshot: number;
|
|
7101
|
+
PrivilegeDropSnapshot: number;
|
|
7102
|
+
PrivilegeDescribeSnapshot: number;
|
|
7103
|
+
PrivilegeListSnapshots: number;
|
|
7104
|
+
PrivilegeRestoreSnapshot: number;
|
|
7105
|
+
PrivilegeAlterCollectionSchema: number;
|
|
6092
7106
|
PrivilegeGetReplicateConfiguration: number;
|
|
7107
|
+
PrivilegeRefreshExternalCollection: number;
|
|
7108
|
+
PrivilegePinSnapshotData: number;
|
|
7109
|
+
PrivilegeUnpinSnapshotData: number;
|
|
6093
7110
|
};
|
|
6094
7111
|
};
|
|
6095
7112
|
PrivilegeExt: {
|
|
@@ -6175,6 +7192,99 @@ declare const _default: {
|
|
|
6175
7192
|
};
|
|
6176
7193
|
};
|
|
6177
7194
|
};
|
|
7195
|
+
Metrics: {
|
|
7196
|
+
fields: {
|
|
7197
|
+
request_count: {
|
|
7198
|
+
type: string;
|
|
7199
|
+
id: number;
|
|
7200
|
+
};
|
|
7201
|
+
success_count: {
|
|
7202
|
+
type: string;
|
|
7203
|
+
id: number;
|
|
7204
|
+
};
|
|
7205
|
+
error_count: {
|
|
7206
|
+
type: string;
|
|
7207
|
+
id: number;
|
|
7208
|
+
};
|
|
7209
|
+
avg_latency_ms: {
|
|
7210
|
+
type: string;
|
|
7211
|
+
id: number;
|
|
7212
|
+
};
|
|
7213
|
+
p99_latency_ms: {
|
|
7214
|
+
type: string;
|
|
7215
|
+
id: number;
|
|
7216
|
+
};
|
|
7217
|
+
max_latency_ms: {
|
|
7218
|
+
type: string;
|
|
7219
|
+
id: number;
|
|
7220
|
+
};
|
|
7221
|
+
};
|
|
7222
|
+
};
|
|
7223
|
+
OperationMetrics: {
|
|
7224
|
+
fields: {
|
|
7225
|
+
operation: {
|
|
7226
|
+
type: string;
|
|
7227
|
+
id: number;
|
|
7228
|
+
};
|
|
7229
|
+
global: {
|
|
7230
|
+
type: string;
|
|
7231
|
+
id: number;
|
|
7232
|
+
};
|
|
7233
|
+
collection_metrics: {
|
|
7234
|
+
keyType: string;
|
|
7235
|
+
type: string;
|
|
7236
|
+
id: number;
|
|
7237
|
+
};
|
|
7238
|
+
};
|
|
7239
|
+
};
|
|
7240
|
+
ClientCommand: {
|
|
7241
|
+
fields: {
|
|
7242
|
+
command_id: {
|
|
7243
|
+
type: string;
|
|
7244
|
+
id: number;
|
|
7245
|
+
};
|
|
7246
|
+
command_type: {
|
|
7247
|
+
type: string;
|
|
7248
|
+
id: number;
|
|
7249
|
+
};
|
|
7250
|
+
payload: {
|
|
7251
|
+
type: string;
|
|
7252
|
+
id: number;
|
|
7253
|
+
};
|
|
7254
|
+
create_time: {
|
|
7255
|
+
type: string;
|
|
7256
|
+
id: number;
|
|
7257
|
+
};
|
|
7258
|
+
persistent: {
|
|
7259
|
+
type: string;
|
|
7260
|
+
id: number;
|
|
7261
|
+
};
|
|
7262
|
+
target_scope: {
|
|
7263
|
+
type: string;
|
|
7264
|
+
id: number;
|
|
7265
|
+
};
|
|
7266
|
+
};
|
|
7267
|
+
};
|
|
7268
|
+
CommandReply: {
|
|
7269
|
+
fields: {
|
|
7270
|
+
command_id: {
|
|
7271
|
+
type: string;
|
|
7272
|
+
id: number;
|
|
7273
|
+
};
|
|
7274
|
+
success: {
|
|
7275
|
+
type: string;
|
|
7276
|
+
id: number;
|
|
7277
|
+
};
|
|
7278
|
+
error_message: {
|
|
7279
|
+
type: string;
|
|
7280
|
+
id: number;
|
|
7281
|
+
};
|
|
7282
|
+
payload: {
|
|
7283
|
+
type: string;
|
|
7284
|
+
id: number;
|
|
7285
|
+
};
|
|
7286
|
+
};
|
|
7287
|
+
};
|
|
6178
7288
|
ServerInfo: {
|
|
6179
7289
|
fields: {
|
|
6180
7290
|
build_tags: {
|
|
@@ -6386,6 +7496,94 @@ declare const _default: {
|
|
|
6386
7496
|
};
|
|
6387
7497
|
};
|
|
6388
7498
|
};
|
|
7499
|
+
MetricAggSpec: {
|
|
7500
|
+
fields: {
|
|
7501
|
+
op: {
|
|
7502
|
+
type: string;
|
|
7503
|
+
id: number;
|
|
7504
|
+
};
|
|
7505
|
+
field_name: {
|
|
7506
|
+
type: string;
|
|
7507
|
+
id: number;
|
|
7508
|
+
};
|
|
7509
|
+
};
|
|
7510
|
+
};
|
|
7511
|
+
SortSpec: {
|
|
7512
|
+
fields: {
|
|
7513
|
+
field_name: {
|
|
7514
|
+
type: string;
|
|
7515
|
+
id: number;
|
|
7516
|
+
};
|
|
7517
|
+
direction: {
|
|
7518
|
+
type: string;
|
|
7519
|
+
id: number;
|
|
7520
|
+
};
|
|
7521
|
+
null_first: {
|
|
7522
|
+
type: string;
|
|
7523
|
+
id: number;
|
|
7524
|
+
};
|
|
7525
|
+
};
|
|
7526
|
+
};
|
|
7527
|
+
TopHitsSpec: {
|
|
7528
|
+
fields: {
|
|
7529
|
+
size: {
|
|
7530
|
+
type: string;
|
|
7531
|
+
id: number;
|
|
7532
|
+
};
|
|
7533
|
+
sort: {
|
|
7534
|
+
rule: string;
|
|
7535
|
+
type: string;
|
|
7536
|
+
id: number;
|
|
7537
|
+
};
|
|
7538
|
+
};
|
|
7539
|
+
};
|
|
7540
|
+
OrderSpec: {
|
|
7541
|
+
fields: {
|
|
7542
|
+
key: {
|
|
7543
|
+
type: string;
|
|
7544
|
+
id: number;
|
|
7545
|
+
};
|
|
7546
|
+
direction: {
|
|
7547
|
+
type: string;
|
|
7548
|
+
id: number;
|
|
7549
|
+
};
|
|
7550
|
+
null_first: {
|
|
7551
|
+
type: string;
|
|
7552
|
+
id: number;
|
|
7553
|
+
};
|
|
7554
|
+
};
|
|
7555
|
+
};
|
|
7556
|
+
SearchAggregationSpec: {
|
|
7557
|
+
fields: {
|
|
7558
|
+
fields: {
|
|
7559
|
+
rule: string;
|
|
7560
|
+
type: string;
|
|
7561
|
+
id: number;
|
|
7562
|
+
};
|
|
7563
|
+
size: {
|
|
7564
|
+
type: string;
|
|
7565
|
+
id: number;
|
|
7566
|
+
};
|
|
7567
|
+
metrics: {
|
|
7568
|
+
keyType: string;
|
|
7569
|
+
type: string;
|
|
7570
|
+
id: number;
|
|
7571
|
+
};
|
|
7572
|
+
order: {
|
|
7573
|
+
rule: string;
|
|
7574
|
+
type: string;
|
|
7575
|
+
id: number;
|
|
7576
|
+
};
|
|
7577
|
+
top_hits: {
|
|
7578
|
+
type: string;
|
|
7579
|
+
id: number;
|
|
7580
|
+
};
|
|
7581
|
+
sub_aggregation: {
|
|
7582
|
+
type: string;
|
|
7583
|
+
id: number;
|
|
7584
|
+
};
|
|
7585
|
+
};
|
|
7586
|
+
};
|
|
6389
7587
|
};
|
|
6390
7588
|
};
|
|
6391
7589
|
rg: {
|
|
@@ -6478,6 +7676,7 @@ declare const _default: {
|
|
|
6478
7676
|
Geometry: number;
|
|
6479
7677
|
Text: number;
|
|
6480
7678
|
Timestamptz: number;
|
|
7679
|
+
Mol: number;
|
|
6481
7680
|
BinaryVector: number;
|
|
6482
7681
|
FloatVector: number;
|
|
6483
7682
|
Float16Vector: number;
|
|
@@ -6495,6 +7694,8 @@ declare const _default: {
|
|
|
6495
7694
|
BM25: number;
|
|
6496
7695
|
TextEmbedding: number;
|
|
6497
7696
|
Rerank: number;
|
|
7697
|
+
MinHash: number;
|
|
7698
|
+
MolFingerprint: number;
|
|
6498
7699
|
};
|
|
6499
7700
|
};
|
|
6500
7701
|
FieldState: {
|
|
@@ -6573,6 +7774,10 @@ declare const _default: {
|
|
|
6573
7774
|
type: string;
|
|
6574
7775
|
id: number;
|
|
6575
7776
|
};
|
|
7777
|
+
external_field: {
|
|
7778
|
+
type: string;
|
|
7779
|
+
id: number;
|
|
7780
|
+
};
|
|
6576
7781
|
};
|
|
6577
7782
|
};
|
|
6578
7783
|
FunctionSchema: {
|
|
@@ -6683,6 +7888,23 @@ declare const _default: {
|
|
|
6683
7888
|
type: string;
|
|
6684
7889
|
id: number;
|
|
6685
7890
|
};
|
|
7891
|
+
external_source: {
|
|
7892
|
+
type: string;
|
|
7893
|
+
id: number;
|
|
7894
|
+
};
|
|
7895
|
+
external_spec: {
|
|
7896
|
+
type: string;
|
|
7897
|
+
id: number;
|
|
7898
|
+
};
|
|
7899
|
+
do_physical_backfill: {
|
|
7900
|
+
type: string;
|
|
7901
|
+
id: number;
|
|
7902
|
+
};
|
|
7903
|
+
file_resource_ids: {
|
|
7904
|
+
rule: string;
|
|
7905
|
+
type: string;
|
|
7906
|
+
id: number;
|
|
7907
|
+
};
|
|
6686
7908
|
enable_namespace: {
|
|
6687
7909
|
type: string;
|
|
6688
7910
|
id: number;
|
|
@@ -6713,6 +7935,10 @@ declare const _default: {
|
|
|
6713
7935
|
type: string;
|
|
6714
7936
|
id: number;
|
|
6715
7937
|
};
|
|
7938
|
+
nullable: {
|
|
7939
|
+
type: string;
|
|
7940
|
+
id: number;
|
|
7941
|
+
};
|
|
6716
7942
|
};
|
|
6717
7943
|
};
|
|
6718
7944
|
BoolArray: {
|
|
@@ -6827,6 +8053,24 @@ declare const _default: {
|
|
|
6827
8053
|
};
|
|
6828
8054
|
};
|
|
6829
8055
|
};
|
|
8056
|
+
MolArray: {
|
|
8057
|
+
fields: {
|
|
8058
|
+
data: {
|
|
8059
|
+
rule: string;
|
|
8060
|
+
type: string;
|
|
8061
|
+
id: number;
|
|
8062
|
+
};
|
|
8063
|
+
};
|
|
8064
|
+
};
|
|
8065
|
+
MolSmilesArray: {
|
|
8066
|
+
fields: {
|
|
8067
|
+
data: {
|
|
8068
|
+
rule: string;
|
|
8069
|
+
type: string;
|
|
8070
|
+
id: number;
|
|
8071
|
+
};
|
|
8072
|
+
};
|
|
8073
|
+
};
|
|
6830
8074
|
ValueField: {
|
|
6831
8075
|
oneofs: {
|
|
6832
8076
|
data: {
|
|
@@ -6923,6 +8167,14 @@ declare const _default: {
|
|
|
6923
8167
|
type: string;
|
|
6924
8168
|
id: number;
|
|
6925
8169
|
};
|
|
8170
|
+
mol_data: {
|
|
8171
|
+
type: string;
|
|
8172
|
+
id: number;
|
|
8173
|
+
};
|
|
8174
|
+
mol_smiles_data: {
|
|
8175
|
+
type: string;
|
|
8176
|
+
id: number;
|
|
8177
|
+
};
|
|
6926
8178
|
};
|
|
6927
8179
|
};
|
|
6928
8180
|
SparseFloatArray: {
|
|
@@ -7005,6 +8257,27 @@ declare const _default: {
|
|
|
7005
8257
|
};
|
|
7006
8258
|
};
|
|
7007
8259
|
};
|
|
8260
|
+
FieldPartialUpdateOp: {
|
|
8261
|
+
fields: {
|
|
8262
|
+
field_name: {
|
|
8263
|
+
type: string;
|
|
8264
|
+
id: number;
|
|
8265
|
+
};
|
|
8266
|
+
op: {
|
|
8267
|
+
type: string;
|
|
8268
|
+
id: number;
|
|
8269
|
+
};
|
|
8270
|
+
};
|
|
8271
|
+
nested: {
|
|
8272
|
+
OpType: {
|
|
8273
|
+
values: {
|
|
8274
|
+
REPLACE: number;
|
|
8275
|
+
ARRAY_APPEND: number;
|
|
8276
|
+
ARRAY_REMOVE: number;
|
|
8277
|
+
};
|
|
8278
|
+
};
|
|
8279
|
+
};
|
|
8280
|
+
};
|
|
7008
8281
|
FieldData: {
|
|
7009
8282
|
oneofs: {
|
|
7010
8283
|
field: {
|
|
@@ -7149,6 +8422,175 @@ declare const _default: {
|
|
|
7149
8422
|
type: string;
|
|
7150
8423
|
id: number;
|
|
7151
8424
|
};
|
|
8425
|
+
element_indices: {
|
|
8426
|
+
type: string;
|
|
8427
|
+
id: number;
|
|
8428
|
+
};
|
|
8429
|
+
group_by_field_values: {
|
|
8430
|
+
rule: string;
|
|
8431
|
+
type: string;
|
|
8432
|
+
id: number;
|
|
8433
|
+
};
|
|
8434
|
+
agg_buckets: {
|
|
8435
|
+
rule: string;
|
|
8436
|
+
type: string;
|
|
8437
|
+
id: number;
|
|
8438
|
+
};
|
|
8439
|
+
agg_topks: {
|
|
8440
|
+
rule: string;
|
|
8441
|
+
type: string;
|
|
8442
|
+
id: number;
|
|
8443
|
+
};
|
|
8444
|
+
};
|
|
8445
|
+
reserved: number[][];
|
|
8446
|
+
};
|
|
8447
|
+
AggBucket: {
|
|
8448
|
+
fields: {
|
|
8449
|
+
key: {
|
|
8450
|
+
rule: string;
|
|
8451
|
+
type: string;
|
|
8452
|
+
id: number;
|
|
8453
|
+
};
|
|
8454
|
+
count: {
|
|
8455
|
+
type: string;
|
|
8456
|
+
id: number;
|
|
8457
|
+
};
|
|
8458
|
+
metrics: {
|
|
8459
|
+
keyType: string;
|
|
8460
|
+
type: string;
|
|
8461
|
+
id: number;
|
|
8462
|
+
};
|
|
8463
|
+
hits: {
|
|
8464
|
+
rule: string;
|
|
8465
|
+
type: string;
|
|
8466
|
+
id: number;
|
|
8467
|
+
};
|
|
8468
|
+
sub_groups: {
|
|
8469
|
+
rule: string;
|
|
8470
|
+
type: string;
|
|
8471
|
+
id: number;
|
|
8472
|
+
};
|
|
8473
|
+
};
|
|
8474
|
+
};
|
|
8475
|
+
MetricValue: {
|
|
8476
|
+
oneofs: {
|
|
8477
|
+
value: {
|
|
8478
|
+
oneof: string[];
|
|
8479
|
+
};
|
|
8480
|
+
};
|
|
8481
|
+
fields: {
|
|
8482
|
+
int_val: {
|
|
8483
|
+
type: string;
|
|
8484
|
+
id: number;
|
|
8485
|
+
};
|
|
8486
|
+
double_val: {
|
|
8487
|
+
type: string;
|
|
8488
|
+
id: number;
|
|
8489
|
+
};
|
|
8490
|
+
string_val: {
|
|
8491
|
+
type: string;
|
|
8492
|
+
id: number;
|
|
8493
|
+
};
|
|
8494
|
+
bool_val: {
|
|
8495
|
+
type: string;
|
|
8496
|
+
id: number;
|
|
8497
|
+
};
|
|
8498
|
+
};
|
|
8499
|
+
};
|
|
8500
|
+
BucketKeyEntry: {
|
|
8501
|
+
oneofs: {
|
|
8502
|
+
value: {
|
|
8503
|
+
oneof: string[];
|
|
8504
|
+
};
|
|
8505
|
+
};
|
|
8506
|
+
fields: {
|
|
8507
|
+
field_id: {
|
|
8508
|
+
type: string;
|
|
8509
|
+
id: number;
|
|
8510
|
+
};
|
|
8511
|
+
field_name: {
|
|
8512
|
+
type: string;
|
|
8513
|
+
id: number;
|
|
8514
|
+
};
|
|
8515
|
+
int_val: {
|
|
8516
|
+
type: string;
|
|
8517
|
+
id: number;
|
|
8518
|
+
};
|
|
8519
|
+
string_val: {
|
|
8520
|
+
type: string;
|
|
8521
|
+
id: number;
|
|
8522
|
+
};
|
|
8523
|
+
bool_val: {
|
|
8524
|
+
type: string;
|
|
8525
|
+
id: number;
|
|
8526
|
+
};
|
|
8527
|
+
};
|
|
8528
|
+
};
|
|
8529
|
+
AggHit: {
|
|
8530
|
+
oneofs: {
|
|
8531
|
+
pk: {
|
|
8532
|
+
oneof: string[];
|
|
8533
|
+
};
|
|
8534
|
+
};
|
|
8535
|
+
fields: {
|
|
8536
|
+
int_pk: {
|
|
8537
|
+
type: string;
|
|
8538
|
+
id: number;
|
|
8539
|
+
};
|
|
8540
|
+
str_pk: {
|
|
8541
|
+
type: string;
|
|
8542
|
+
id: number;
|
|
8543
|
+
};
|
|
8544
|
+
score: {
|
|
8545
|
+
type: string;
|
|
8546
|
+
id: number;
|
|
8547
|
+
};
|
|
8548
|
+
fields: {
|
|
8549
|
+
rule: string;
|
|
8550
|
+
type: string;
|
|
8551
|
+
id: number;
|
|
8552
|
+
};
|
|
8553
|
+
};
|
|
8554
|
+
};
|
|
8555
|
+
AggHitField: {
|
|
8556
|
+
oneofs: {
|
|
8557
|
+
value: {
|
|
8558
|
+
oneof: string[];
|
|
8559
|
+
};
|
|
8560
|
+
};
|
|
8561
|
+
fields: {
|
|
8562
|
+
field_id: {
|
|
8563
|
+
type: string;
|
|
8564
|
+
id: number;
|
|
8565
|
+
};
|
|
8566
|
+
field_name: {
|
|
8567
|
+
type: string;
|
|
8568
|
+
id: number;
|
|
8569
|
+
};
|
|
8570
|
+
int_val: {
|
|
8571
|
+
type: string;
|
|
8572
|
+
id: number;
|
|
8573
|
+
};
|
|
8574
|
+
bool_val: {
|
|
8575
|
+
type: string;
|
|
8576
|
+
id: number;
|
|
8577
|
+
};
|
|
8578
|
+
float_val: {
|
|
8579
|
+
type: string;
|
|
8580
|
+
id: number;
|
|
8581
|
+
};
|
|
8582
|
+
double_val: {
|
|
8583
|
+
type: string;
|
|
8584
|
+
id: number;
|
|
8585
|
+
};
|
|
8586
|
+
string_val: {
|
|
8587
|
+
type: string;
|
|
8588
|
+
id: number;
|
|
8589
|
+
};
|
|
8590
|
+
bytes_val: {
|
|
8591
|
+
type: string;
|
|
8592
|
+
id: number;
|
|
8593
|
+
};
|
|
7152
8594
|
};
|
|
7153
8595
|
};
|
|
7154
8596
|
VectorClusteringInfo: {
|
|
@@ -7714,6 +9156,9 @@ declare const _default: {
|
|
|
7714
9156
|
};
|
|
7715
9157
|
};
|
|
7716
9158
|
ReplicateMsg: {
|
|
9159
|
+
options: {
|
|
9160
|
+
deprecated: boolean;
|
|
9161
|
+
};
|
|
7717
9162
|
fields: {
|
|
7718
9163
|
base: {
|
|
7719
9164
|
type: string;
|
|
@@ -7804,6 +9249,7 @@ declare const _default: {
|
|
|
7804
9249
|
protobuf: {
|
|
7805
9250
|
nested: {
|
|
7806
9251
|
FileDescriptorSet: {
|
|
9252
|
+
edition: string;
|
|
7807
9253
|
fields: {
|
|
7808
9254
|
file: {
|
|
7809
9255
|
rule: string;
|
|
@@ -7811,8 +9257,27 @@ declare const _default: {
|
|
|
7811
9257
|
id: number;
|
|
7812
9258
|
};
|
|
7813
9259
|
};
|
|
9260
|
+
extensions: number[][];
|
|
9261
|
+
};
|
|
9262
|
+
Edition: {
|
|
9263
|
+
edition: string;
|
|
9264
|
+
values: {
|
|
9265
|
+
EDITION_UNKNOWN: number;
|
|
9266
|
+
EDITION_LEGACY: number;
|
|
9267
|
+
EDITION_PROTO2: number;
|
|
9268
|
+
EDITION_PROTO3: number;
|
|
9269
|
+
EDITION_2023: number;
|
|
9270
|
+
EDITION_2024: number;
|
|
9271
|
+
EDITION_1_TEST_ONLY: number;
|
|
9272
|
+
EDITION_2_TEST_ONLY: number;
|
|
9273
|
+
EDITION_99997_TEST_ONLY: number;
|
|
9274
|
+
EDITION_99998_TEST_ONLY: number;
|
|
9275
|
+
EDITION_99999_TEST_ONLY: number;
|
|
9276
|
+
EDITION_MAX: number;
|
|
9277
|
+
};
|
|
7814
9278
|
};
|
|
7815
9279
|
FileDescriptorProto: {
|
|
9280
|
+
edition: string;
|
|
7816
9281
|
fields: {
|
|
7817
9282
|
name: {
|
|
7818
9283
|
type: string;
|
|
@@ -7827,28 +9292,27 @@ declare const _default: {
|
|
|
7827
9292
|
type: string;
|
|
7828
9293
|
id: number;
|
|
7829
9294
|
};
|
|
7830
|
-
|
|
9295
|
+
publicDependency: {
|
|
7831
9296
|
rule: string;
|
|
7832
9297
|
type: string;
|
|
7833
9298
|
id: number;
|
|
7834
|
-
options: {
|
|
7835
|
-
packed: boolean;
|
|
7836
|
-
};
|
|
7837
9299
|
};
|
|
7838
|
-
|
|
9300
|
+
weakDependency: {
|
|
7839
9301
|
rule: string;
|
|
7840
9302
|
type: string;
|
|
7841
9303
|
id: number;
|
|
7842
|
-
options: {
|
|
7843
|
-
packed: boolean;
|
|
7844
|
-
};
|
|
7845
9304
|
};
|
|
7846
|
-
|
|
9305
|
+
optionDependency: {
|
|
7847
9306
|
rule: string;
|
|
7848
9307
|
type: string;
|
|
7849
9308
|
id: number;
|
|
7850
9309
|
};
|
|
7851
|
-
|
|
9310
|
+
messageType: {
|
|
9311
|
+
rule: string;
|
|
9312
|
+
type: string;
|
|
9313
|
+
id: number;
|
|
9314
|
+
};
|
|
9315
|
+
enumType: {
|
|
7852
9316
|
rule: string;
|
|
7853
9317
|
type: string;
|
|
7854
9318
|
id: number;
|
|
@@ -7867,7 +9331,7 @@ declare const _default: {
|
|
|
7867
9331
|
type: string;
|
|
7868
9332
|
id: number;
|
|
7869
9333
|
};
|
|
7870
|
-
|
|
9334
|
+
sourceCodeInfo: {
|
|
7871
9335
|
type: string;
|
|
7872
9336
|
id: number;
|
|
7873
9337
|
};
|
|
@@ -7875,9 +9339,14 @@ declare const _default: {
|
|
|
7875
9339
|
type: string;
|
|
7876
9340
|
id: number;
|
|
7877
9341
|
};
|
|
9342
|
+
edition: {
|
|
9343
|
+
type: string;
|
|
9344
|
+
id: number;
|
|
9345
|
+
};
|
|
7878
9346
|
};
|
|
7879
9347
|
};
|
|
7880
9348
|
DescriptorProto: {
|
|
9349
|
+
edition: string;
|
|
7881
9350
|
fields: {
|
|
7882
9351
|
name: {
|
|
7883
9352
|
type: string;
|
|
@@ -7893,22 +9362,22 @@ declare const _default: {
|
|
|
7893
9362
|
type: string;
|
|
7894
9363
|
id: number;
|
|
7895
9364
|
};
|
|
7896
|
-
|
|
9365
|
+
nestedType: {
|
|
7897
9366
|
rule: string;
|
|
7898
9367
|
type: string;
|
|
7899
9368
|
id: number;
|
|
7900
9369
|
};
|
|
7901
|
-
|
|
9370
|
+
enumType: {
|
|
7902
9371
|
rule: string;
|
|
7903
9372
|
type: string;
|
|
7904
9373
|
id: number;
|
|
7905
9374
|
};
|
|
7906
|
-
|
|
9375
|
+
extensionRange: {
|
|
7907
9376
|
rule: string;
|
|
7908
9377
|
type: string;
|
|
7909
9378
|
id: number;
|
|
7910
9379
|
};
|
|
7911
|
-
|
|
9380
|
+
oneofDecl: {
|
|
7912
9381
|
rule: string;
|
|
7913
9382
|
type: string;
|
|
7914
9383
|
id: number;
|
|
@@ -7917,16 +9386,20 @@ declare const _default: {
|
|
|
7917
9386
|
type: string;
|
|
7918
9387
|
id: number;
|
|
7919
9388
|
};
|
|
7920
|
-
|
|
9389
|
+
reservedRange: {
|
|
7921
9390
|
rule: string;
|
|
7922
9391
|
type: string;
|
|
7923
9392
|
id: number;
|
|
7924
9393
|
};
|
|
7925
|
-
|
|
9394
|
+
reservedName: {
|
|
7926
9395
|
rule: string;
|
|
7927
9396
|
type: string;
|
|
7928
9397
|
id: number;
|
|
7929
9398
|
};
|
|
9399
|
+
visibility: {
|
|
9400
|
+
type: string;
|
|
9401
|
+
id: number;
|
|
9402
|
+
};
|
|
7930
9403
|
};
|
|
7931
9404
|
nested: {
|
|
7932
9405
|
ExtensionRange: {
|
|
@@ -7939,6 +9412,10 @@ declare const _default: {
|
|
|
7939
9412
|
type: string;
|
|
7940
9413
|
id: number;
|
|
7941
9414
|
};
|
|
9415
|
+
options: {
|
|
9416
|
+
type: string;
|
|
9417
|
+
id: number;
|
|
9418
|
+
};
|
|
7942
9419
|
};
|
|
7943
9420
|
};
|
|
7944
9421
|
ReservedRange: {
|
|
@@ -7955,7 +9432,72 @@ declare const _default: {
|
|
|
7955
9432
|
};
|
|
7956
9433
|
};
|
|
7957
9434
|
};
|
|
9435
|
+
ExtensionRangeOptions: {
|
|
9436
|
+
edition: string;
|
|
9437
|
+
fields: {
|
|
9438
|
+
uninterpretedOption: {
|
|
9439
|
+
rule: string;
|
|
9440
|
+
type: string;
|
|
9441
|
+
id: number;
|
|
9442
|
+
};
|
|
9443
|
+
declaration: {
|
|
9444
|
+
rule: string;
|
|
9445
|
+
type: string;
|
|
9446
|
+
id: number;
|
|
9447
|
+
options: {
|
|
9448
|
+
retention: string;
|
|
9449
|
+
};
|
|
9450
|
+
};
|
|
9451
|
+
features: {
|
|
9452
|
+
type: string;
|
|
9453
|
+
id: number;
|
|
9454
|
+
};
|
|
9455
|
+
verification: {
|
|
9456
|
+
type: string;
|
|
9457
|
+
id: number;
|
|
9458
|
+
options: {
|
|
9459
|
+
default: string;
|
|
9460
|
+
retention: string;
|
|
9461
|
+
};
|
|
9462
|
+
};
|
|
9463
|
+
};
|
|
9464
|
+
extensions: number[][];
|
|
9465
|
+
nested: {
|
|
9466
|
+
Declaration: {
|
|
9467
|
+
fields: {
|
|
9468
|
+
number: {
|
|
9469
|
+
type: string;
|
|
9470
|
+
id: number;
|
|
9471
|
+
};
|
|
9472
|
+
fullName: {
|
|
9473
|
+
type: string;
|
|
9474
|
+
id: number;
|
|
9475
|
+
};
|
|
9476
|
+
type: {
|
|
9477
|
+
type: string;
|
|
9478
|
+
id: number;
|
|
9479
|
+
};
|
|
9480
|
+
reserved: {
|
|
9481
|
+
type: string;
|
|
9482
|
+
id: number;
|
|
9483
|
+
};
|
|
9484
|
+
repeated: {
|
|
9485
|
+
type: string;
|
|
9486
|
+
id: number;
|
|
9487
|
+
};
|
|
9488
|
+
};
|
|
9489
|
+
reserved: number[][];
|
|
9490
|
+
};
|
|
9491
|
+
VerificationState: {
|
|
9492
|
+
values: {
|
|
9493
|
+
DECLARATION: number;
|
|
9494
|
+
UNVERIFIED: number;
|
|
9495
|
+
};
|
|
9496
|
+
};
|
|
9497
|
+
};
|
|
9498
|
+
};
|
|
7958
9499
|
FieldDescriptorProto: {
|
|
9500
|
+
edition: string;
|
|
7959
9501
|
fields: {
|
|
7960
9502
|
name: {
|
|
7961
9503
|
type: string;
|
|
@@ -7973,7 +9515,7 @@ declare const _default: {
|
|
|
7973
9515
|
type: string;
|
|
7974
9516
|
id: number;
|
|
7975
9517
|
};
|
|
7976
|
-
|
|
9518
|
+
typeName: {
|
|
7977
9519
|
type: string;
|
|
7978
9520
|
id: number;
|
|
7979
9521
|
};
|
|
@@ -7981,15 +9523,15 @@ declare const _default: {
|
|
|
7981
9523
|
type: string;
|
|
7982
9524
|
id: number;
|
|
7983
9525
|
};
|
|
7984
|
-
|
|
9526
|
+
defaultValue: {
|
|
7985
9527
|
type: string;
|
|
7986
9528
|
id: number;
|
|
7987
9529
|
};
|
|
7988
|
-
|
|
9530
|
+
oneofIndex: {
|
|
7989
9531
|
type: string;
|
|
7990
9532
|
id: number;
|
|
7991
9533
|
};
|
|
7992
|
-
|
|
9534
|
+
jsonName: {
|
|
7993
9535
|
type: string;
|
|
7994
9536
|
id: number;
|
|
7995
9537
|
};
|
|
@@ -7997,6 +9539,10 @@ declare const _default: {
|
|
|
7997
9539
|
type: string;
|
|
7998
9540
|
id: number;
|
|
7999
9541
|
};
|
|
9542
|
+
proto3Optional: {
|
|
9543
|
+
type: string;
|
|
9544
|
+
id: number;
|
|
9545
|
+
};
|
|
8000
9546
|
};
|
|
8001
9547
|
nested: {
|
|
8002
9548
|
Type: {
|
|
@@ -8024,13 +9570,14 @@ declare const _default: {
|
|
|
8024
9570
|
Label: {
|
|
8025
9571
|
values: {
|
|
8026
9572
|
LABEL_OPTIONAL: number;
|
|
8027
|
-
LABEL_REQUIRED: number;
|
|
8028
9573
|
LABEL_REPEATED: number;
|
|
9574
|
+
LABEL_REQUIRED: number;
|
|
8029
9575
|
};
|
|
8030
9576
|
};
|
|
8031
9577
|
};
|
|
8032
9578
|
};
|
|
8033
9579
|
OneofDescriptorProto: {
|
|
9580
|
+
edition: string;
|
|
8034
9581
|
fields: {
|
|
8035
9582
|
name: {
|
|
8036
9583
|
type: string;
|
|
@@ -8043,23 +9590,53 @@ declare const _default: {
|
|
|
8043
9590
|
};
|
|
8044
9591
|
};
|
|
8045
9592
|
EnumDescriptorProto: {
|
|
9593
|
+
edition: string;
|
|
8046
9594
|
fields: {
|
|
8047
9595
|
name: {
|
|
8048
9596
|
type: string;
|
|
8049
9597
|
id: number;
|
|
8050
9598
|
};
|
|
8051
|
-
value: {
|
|
9599
|
+
value: {
|
|
9600
|
+
rule: string;
|
|
9601
|
+
type: string;
|
|
9602
|
+
id: number;
|
|
9603
|
+
};
|
|
9604
|
+
options: {
|
|
9605
|
+
type: string;
|
|
9606
|
+
id: number;
|
|
9607
|
+
};
|
|
9608
|
+
reservedRange: {
|
|
9609
|
+
rule: string;
|
|
9610
|
+
type: string;
|
|
9611
|
+
id: number;
|
|
9612
|
+
};
|
|
9613
|
+
reservedName: {
|
|
8052
9614
|
rule: string;
|
|
8053
9615
|
type: string;
|
|
8054
9616
|
id: number;
|
|
8055
9617
|
};
|
|
8056
|
-
|
|
9618
|
+
visibility: {
|
|
8057
9619
|
type: string;
|
|
8058
9620
|
id: number;
|
|
8059
9621
|
};
|
|
8060
9622
|
};
|
|
9623
|
+
nested: {
|
|
9624
|
+
EnumReservedRange: {
|
|
9625
|
+
fields: {
|
|
9626
|
+
start: {
|
|
9627
|
+
type: string;
|
|
9628
|
+
id: number;
|
|
9629
|
+
};
|
|
9630
|
+
end: {
|
|
9631
|
+
type: string;
|
|
9632
|
+
id: number;
|
|
9633
|
+
};
|
|
9634
|
+
};
|
|
9635
|
+
};
|
|
9636
|
+
};
|
|
8061
9637
|
};
|
|
8062
9638
|
EnumValueDescriptorProto: {
|
|
9639
|
+
edition: string;
|
|
8063
9640
|
fields: {
|
|
8064
9641
|
name: {
|
|
8065
9642
|
type: string;
|
|
@@ -8076,6 +9653,7 @@ declare const _default: {
|
|
|
8076
9653
|
};
|
|
8077
9654
|
};
|
|
8078
9655
|
ServiceDescriptorProto: {
|
|
9656
|
+
edition: string;
|
|
8079
9657
|
fields: {
|
|
8080
9658
|
name: {
|
|
8081
9659
|
type: string;
|
|
@@ -8093,16 +9671,17 @@ declare const _default: {
|
|
|
8093
9671
|
};
|
|
8094
9672
|
};
|
|
8095
9673
|
MethodDescriptorProto: {
|
|
9674
|
+
edition: string;
|
|
8096
9675
|
fields: {
|
|
8097
9676
|
name: {
|
|
8098
9677
|
type: string;
|
|
8099
9678
|
id: number;
|
|
8100
9679
|
};
|
|
8101
|
-
|
|
9680
|
+
inputType: {
|
|
8102
9681
|
type: string;
|
|
8103
9682
|
id: number;
|
|
8104
9683
|
};
|
|
8105
|
-
|
|
9684
|
+
outputType: {
|
|
8106
9685
|
type: string;
|
|
8107
9686
|
id: number;
|
|
8108
9687
|
};
|
|
@@ -8110,61 +9689,62 @@ declare const _default: {
|
|
|
8110
9689
|
type: string;
|
|
8111
9690
|
id: number;
|
|
8112
9691
|
};
|
|
8113
|
-
|
|
9692
|
+
clientStreaming: {
|
|
8114
9693
|
type: string;
|
|
8115
9694
|
id: number;
|
|
8116
9695
|
};
|
|
8117
|
-
|
|
9696
|
+
serverStreaming: {
|
|
8118
9697
|
type: string;
|
|
8119
9698
|
id: number;
|
|
8120
9699
|
};
|
|
8121
9700
|
};
|
|
8122
9701
|
};
|
|
8123
9702
|
FileOptions: {
|
|
9703
|
+
edition: string;
|
|
8124
9704
|
fields: {
|
|
8125
|
-
|
|
9705
|
+
javaPackage: {
|
|
8126
9706
|
type: string;
|
|
8127
9707
|
id: number;
|
|
8128
9708
|
};
|
|
8129
|
-
|
|
9709
|
+
javaOuterClassname: {
|
|
8130
9710
|
type: string;
|
|
8131
9711
|
id: number;
|
|
8132
9712
|
};
|
|
8133
|
-
|
|
9713
|
+
javaMultipleFiles: {
|
|
8134
9714
|
type: string;
|
|
8135
9715
|
id: number;
|
|
8136
9716
|
};
|
|
8137
|
-
|
|
9717
|
+
javaGenerateEqualsAndHash: {
|
|
8138
9718
|
type: string;
|
|
8139
9719
|
id: number;
|
|
8140
9720
|
options: {
|
|
8141
9721
|
deprecated: boolean;
|
|
8142
9722
|
};
|
|
8143
9723
|
};
|
|
8144
|
-
|
|
9724
|
+
javaStringCheckUtf8: {
|
|
8145
9725
|
type: string;
|
|
8146
9726
|
id: number;
|
|
8147
9727
|
};
|
|
8148
|
-
|
|
9728
|
+
optimizeFor: {
|
|
8149
9729
|
type: string;
|
|
8150
9730
|
id: number;
|
|
8151
9731
|
options: {
|
|
8152
9732
|
default: string;
|
|
8153
9733
|
};
|
|
8154
9734
|
};
|
|
8155
|
-
|
|
9735
|
+
goPackage: {
|
|
8156
9736
|
type: string;
|
|
8157
9737
|
id: number;
|
|
8158
9738
|
};
|
|
8159
|
-
|
|
9739
|
+
ccGenericServices: {
|
|
8160
9740
|
type: string;
|
|
8161
9741
|
id: number;
|
|
8162
9742
|
};
|
|
8163
|
-
|
|
9743
|
+
javaGenericServices: {
|
|
8164
9744
|
type: string;
|
|
8165
9745
|
id: number;
|
|
8166
9746
|
};
|
|
8167
|
-
|
|
9747
|
+
pyGenericServices: {
|
|
8168
9748
|
type: string;
|
|
8169
9749
|
id: number;
|
|
8170
9750
|
};
|
|
@@ -8172,26 +9752,53 @@ declare const _default: {
|
|
|
8172
9752
|
type: string;
|
|
8173
9753
|
id: number;
|
|
8174
9754
|
};
|
|
8175
|
-
|
|
9755
|
+
ccEnableArenas: {
|
|
9756
|
+
type: string;
|
|
9757
|
+
id: number;
|
|
9758
|
+
options: {
|
|
9759
|
+
default: boolean;
|
|
9760
|
+
};
|
|
9761
|
+
};
|
|
9762
|
+
objcClassPrefix: {
|
|
9763
|
+
type: string;
|
|
9764
|
+
id: number;
|
|
9765
|
+
};
|
|
9766
|
+
csharpNamespace: {
|
|
9767
|
+
type: string;
|
|
9768
|
+
id: number;
|
|
9769
|
+
};
|
|
9770
|
+
swiftPrefix: {
|
|
9771
|
+
type: string;
|
|
9772
|
+
id: number;
|
|
9773
|
+
};
|
|
9774
|
+
phpClassPrefix: {
|
|
9775
|
+
type: string;
|
|
9776
|
+
id: number;
|
|
9777
|
+
};
|
|
9778
|
+
phpNamespace: {
|
|
8176
9779
|
type: string;
|
|
8177
9780
|
id: number;
|
|
8178
9781
|
};
|
|
8179
|
-
|
|
9782
|
+
phpMetadataNamespace: {
|
|
8180
9783
|
type: string;
|
|
8181
9784
|
id: number;
|
|
8182
9785
|
};
|
|
8183
|
-
|
|
9786
|
+
rubyPackage: {
|
|
8184
9787
|
type: string;
|
|
8185
9788
|
id: number;
|
|
8186
9789
|
};
|
|
8187
|
-
|
|
9790
|
+
features: {
|
|
9791
|
+
type: string;
|
|
9792
|
+
id: number;
|
|
9793
|
+
};
|
|
9794
|
+
uninterpretedOption: {
|
|
8188
9795
|
rule: string;
|
|
8189
9796
|
type: string;
|
|
8190
9797
|
id: number;
|
|
8191
9798
|
};
|
|
8192
9799
|
};
|
|
8193
9800
|
extensions: number[][];
|
|
8194
|
-
reserved: number[][];
|
|
9801
|
+
reserved: (string | number[])[];
|
|
8195
9802
|
nested: {
|
|
8196
9803
|
OptimizeMode: {
|
|
8197
9804
|
values: {
|
|
@@ -8203,12 +9810,13 @@ declare const _default: {
|
|
|
8203
9810
|
};
|
|
8204
9811
|
};
|
|
8205
9812
|
MessageOptions: {
|
|
9813
|
+
edition: string;
|
|
8206
9814
|
fields: {
|
|
8207
|
-
|
|
9815
|
+
messageSetWireFormat: {
|
|
8208
9816
|
type: string;
|
|
8209
9817
|
id: number;
|
|
8210
9818
|
};
|
|
8211
|
-
|
|
9819
|
+
noStandardDescriptorAccessor: {
|
|
8212
9820
|
type: string;
|
|
8213
9821
|
id: number;
|
|
8214
9822
|
};
|
|
@@ -8216,11 +9824,22 @@ declare const _default: {
|
|
|
8216
9824
|
type: string;
|
|
8217
9825
|
id: number;
|
|
8218
9826
|
};
|
|
8219
|
-
|
|
9827
|
+
mapEntry: {
|
|
9828
|
+
type: string;
|
|
9829
|
+
id: number;
|
|
9830
|
+
};
|
|
9831
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
9832
|
+
type: string;
|
|
9833
|
+
id: number;
|
|
9834
|
+
options: {
|
|
9835
|
+
deprecated: boolean;
|
|
9836
|
+
};
|
|
9837
|
+
};
|
|
9838
|
+
features: {
|
|
8220
9839
|
type: string;
|
|
8221
9840
|
id: number;
|
|
8222
9841
|
};
|
|
8223
|
-
|
|
9842
|
+
uninterpretedOption: {
|
|
8224
9843
|
rule: string;
|
|
8225
9844
|
type: string;
|
|
8226
9845
|
id: number;
|
|
@@ -8230,6 +9849,7 @@ declare const _default: {
|
|
|
8230
9849
|
reserved: number[][];
|
|
8231
9850
|
};
|
|
8232
9851
|
FieldOptions: {
|
|
9852
|
+
edition: string;
|
|
8233
9853
|
fields: {
|
|
8234
9854
|
ctype: {
|
|
8235
9855
|
type: string;
|
|
@@ -8253,6 +9873,10 @@ declare const _default: {
|
|
|
8253
9873
|
type: string;
|
|
8254
9874
|
id: number;
|
|
8255
9875
|
};
|
|
9876
|
+
unverifiedLazy: {
|
|
9877
|
+
type: string;
|
|
9878
|
+
id: number;
|
|
9879
|
+
};
|
|
8256
9880
|
deprecated: {
|
|
8257
9881
|
type: string;
|
|
8258
9882
|
id: number;
|
|
@@ -8260,8 +9884,37 @@ declare const _default: {
|
|
|
8260
9884
|
weak: {
|
|
8261
9885
|
type: string;
|
|
8262
9886
|
id: number;
|
|
9887
|
+
options: {
|
|
9888
|
+
deprecated: boolean;
|
|
9889
|
+
};
|
|
9890
|
+
};
|
|
9891
|
+
debugRedact: {
|
|
9892
|
+
type: string;
|
|
9893
|
+
id: number;
|
|
9894
|
+
};
|
|
9895
|
+
retention: {
|
|
9896
|
+
type: string;
|
|
9897
|
+
id: number;
|
|
9898
|
+
};
|
|
9899
|
+
targets: {
|
|
9900
|
+
rule: string;
|
|
9901
|
+
type: string;
|
|
9902
|
+
id: number;
|
|
9903
|
+
};
|
|
9904
|
+
editionDefaults: {
|
|
9905
|
+
rule: string;
|
|
9906
|
+
type: string;
|
|
9907
|
+
id: number;
|
|
9908
|
+
};
|
|
9909
|
+
features: {
|
|
9910
|
+
type: string;
|
|
9911
|
+
id: number;
|
|
8263
9912
|
};
|
|
8264
|
-
|
|
9913
|
+
featureSupport: {
|
|
9914
|
+
type: string;
|
|
9915
|
+
id: number;
|
|
9916
|
+
};
|
|
9917
|
+
uninterpretedOption: {
|
|
8265
9918
|
rule: string;
|
|
8266
9919
|
type: string;
|
|
8267
9920
|
id: number;
|
|
@@ -8284,11 +9937,69 @@ declare const _default: {
|
|
|
8284
9937
|
JS_NUMBER: number;
|
|
8285
9938
|
};
|
|
8286
9939
|
};
|
|
9940
|
+
OptionRetention: {
|
|
9941
|
+
values: {
|
|
9942
|
+
RETENTION_UNKNOWN: number;
|
|
9943
|
+
RETENTION_RUNTIME: number;
|
|
9944
|
+
RETENTION_SOURCE: number;
|
|
9945
|
+
};
|
|
9946
|
+
};
|
|
9947
|
+
OptionTargetType: {
|
|
9948
|
+
values: {
|
|
9949
|
+
TARGET_TYPE_UNKNOWN: number;
|
|
9950
|
+
TARGET_TYPE_FILE: number;
|
|
9951
|
+
TARGET_TYPE_EXTENSION_RANGE: number;
|
|
9952
|
+
TARGET_TYPE_MESSAGE: number;
|
|
9953
|
+
TARGET_TYPE_FIELD: number;
|
|
9954
|
+
TARGET_TYPE_ONEOF: number;
|
|
9955
|
+
TARGET_TYPE_ENUM: number;
|
|
9956
|
+
TARGET_TYPE_ENUM_ENTRY: number;
|
|
9957
|
+
TARGET_TYPE_SERVICE: number;
|
|
9958
|
+
TARGET_TYPE_METHOD: number;
|
|
9959
|
+
};
|
|
9960
|
+
};
|
|
9961
|
+
EditionDefault: {
|
|
9962
|
+
fields: {
|
|
9963
|
+
edition: {
|
|
9964
|
+
type: string;
|
|
9965
|
+
id: number;
|
|
9966
|
+
};
|
|
9967
|
+
value: {
|
|
9968
|
+
type: string;
|
|
9969
|
+
id: number;
|
|
9970
|
+
};
|
|
9971
|
+
};
|
|
9972
|
+
};
|
|
9973
|
+
FeatureSupport: {
|
|
9974
|
+
fields: {
|
|
9975
|
+
editionIntroduced: {
|
|
9976
|
+
type: string;
|
|
9977
|
+
id: number;
|
|
9978
|
+
};
|
|
9979
|
+
editionDeprecated: {
|
|
9980
|
+
type: string;
|
|
9981
|
+
id: number;
|
|
9982
|
+
};
|
|
9983
|
+
deprecationWarning: {
|
|
9984
|
+
type: string;
|
|
9985
|
+
id: number;
|
|
9986
|
+
};
|
|
9987
|
+
editionRemoved: {
|
|
9988
|
+
type: string;
|
|
9989
|
+
id: number;
|
|
9990
|
+
};
|
|
9991
|
+
};
|
|
9992
|
+
};
|
|
8287
9993
|
};
|
|
8288
9994
|
};
|
|
8289
9995
|
OneofOptions: {
|
|
9996
|
+
edition: string;
|
|
8290
9997
|
fields: {
|
|
8291
|
-
|
|
9998
|
+
features: {
|
|
9999
|
+
type: string;
|
|
10000
|
+
id: number;
|
|
10001
|
+
};
|
|
10002
|
+
uninterpretedOption: {
|
|
8292
10003
|
rule: string;
|
|
8293
10004
|
type: string;
|
|
8294
10005
|
id: number;
|
|
@@ -8297,8 +10008,9 @@ declare const _default: {
|
|
|
8297
10008
|
extensions: number[][];
|
|
8298
10009
|
};
|
|
8299
10010
|
EnumOptions: {
|
|
10011
|
+
edition: string;
|
|
8300
10012
|
fields: {
|
|
8301
|
-
|
|
10013
|
+
allowAlias: {
|
|
8302
10014
|
type: string;
|
|
8303
10015
|
id: number;
|
|
8304
10016
|
};
|
|
@@ -8306,21 +10018,46 @@ declare const _default: {
|
|
|
8306
10018
|
type: string;
|
|
8307
10019
|
id: number;
|
|
8308
10020
|
};
|
|
8309
|
-
|
|
10021
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
10022
|
+
type: string;
|
|
10023
|
+
id: number;
|
|
10024
|
+
options: {
|
|
10025
|
+
deprecated: boolean;
|
|
10026
|
+
};
|
|
10027
|
+
};
|
|
10028
|
+
features: {
|
|
10029
|
+
type: string;
|
|
10030
|
+
id: number;
|
|
10031
|
+
};
|
|
10032
|
+
uninterpretedOption: {
|
|
8310
10033
|
rule: string;
|
|
8311
10034
|
type: string;
|
|
8312
10035
|
id: number;
|
|
8313
10036
|
};
|
|
8314
10037
|
};
|
|
8315
10038
|
extensions: number[][];
|
|
10039
|
+
reserved: number[][];
|
|
8316
10040
|
};
|
|
8317
10041
|
EnumValueOptions: {
|
|
10042
|
+
edition: string;
|
|
8318
10043
|
fields: {
|
|
8319
10044
|
deprecated: {
|
|
8320
10045
|
type: string;
|
|
8321
10046
|
id: number;
|
|
8322
10047
|
};
|
|
8323
|
-
|
|
10048
|
+
features: {
|
|
10049
|
+
type: string;
|
|
10050
|
+
id: number;
|
|
10051
|
+
};
|
|
10052
|
+
debugRedact: {
|
|
10053
|
+
type: string;
|
|
10054
|
+
id: number;
|
|
10055
|
+
};
|
|
10056
|
+
featureSupport: {
|
|
10057
|
+
type: string;
|
|
10058
|
+
id: number;
|
|
10059
|
+
};
|
|
10060
|
+
uninterpretedOption: {
|
|
8324
10061
|
rule: string;
|
|
8325
10062
|
type: string;
|
|
8326
10063
|
id: number;
|
|
@@ -8329,12 +10066,17 @@ declare const _default: {
|
|
|
8329
10066
|
extensions: number[][];
|
|
8330
10067
|
};
|
|
8331
10068
|
ServiceOptions: {
|
|
10069
|
+
edition: string;
|
|
8332
10070
|
fields: {
|
|
10071
|
+
features: {
|
|
10072
|
+
type: string;
|
|
10073
|
+
id: number;
|
|
10074
|
+
};
|
|
8333
10075
|
deprecated: {
|
|
8334
10076
|
type: string;
|
|
8335
10077
|
id: number;
|
|
8336
10078
|
};
|
|
8337
|
-
|
|
10079
|
+
uninterpretedOption: {
|
|
8338
10080
|
rule: string;
|
|
8339
10081
|
type: string;
|
|
8340
10082
|
id: number;
|
|
@@ -8343,47 +10085,69 @@ declare const _default: {
|
|
|
8343
10085
|
extensions: number[][];
|
|
8344
10086
|
};
|
|
8345
10087
|
MethodOptions: {
|
|
10088
|
+
edition: string;
|
|
8346
10089
|
fields: {
|
|
8347
10090
|
deprecated: {
|
|
8348
10091
|
type: string;
|
|
8349
10092
|
id: number;
|
|
8350
10093
|
};
|
|
8351
|
-
|
|
10094
|
+
idempotencyLevel: {
|
|
10095
|
+
type: string;
|
|
10096
|
+
id: number;
|
|
10097
|
+
options: {
|
|
10098
|
+
default: string;
|
|
10099
|
+
};
|
|
10100
|
+
};
|
|
10101
|
+
features: {
|
|
10102
|
+
type: string;
|
|
10103
|
+
id: number;
|
|
10104
|
+
};
|
|
10105
|
+
uninterpretedOption: {
|
|
8352
10106
|
rule: string;
|
|
8353
10107
|
type: string;
|
|
8354
10108
|
id: number;
|
|
8355
10109
|
};
|
|
8356
10110
|
};
|
|
8357
10111
|
extensions: number[][];
|
|
10112
|
+
nested: {
|
|
10113
|
+
IdempotencyLevel: {
|
|
10114
|
+
values: {
|
|
10115
|
+
IDEMPOTENCY_UNKNOWN: number;
|
|
10116
|
+
NO_SIDE_EFFECTS: number;
|
|
10117
|
+
IDEMPOTENT: number;
|
|
10118
|
+
};
|
|
10119
|
+
};
|
|
10120
|
+
};
|
|
8358
10121
|
};
|
|
8359
10122
|
UninterpretedOption: {
|
|
10123
|
+
edition: string;
|
|
8360
10124
|
fields: {
|
|
8361
10125
|
name: {
|
|
8362
10126
|
rule: string;
|
|
8363
10127
|
type: string;
|
|
8364
10128
|
id: number;
|
|
8365
10129
|
};
|
|
8366
|
-
|
|
10130
|
+
identifierValue: {
|
|
8367
10131
|
type: string;
|
|
8368
10132
|
id: number;
|
|
8369
10133
|
};
|
|
8370
|
-
|
|
10134
|
+
positiveIntValue: {
|
|
8371
10135
|
type: string;
|
|
8372
10136
|
id: number;
|
|
8373
10137
|
};
|
|
8374
|
-
|
|
10138
|
+
negativeIntValue: {
|
|
8375
10139
|
type: string;
|
|
8376
10140
|
id: number;
|
|
8377
10141
|
};
|
|
8378
|
-
|
|
10142
|
+
doubleValue: {
|
|
8379
10143
|
type: string;
|
|
8380
10144
|
id: number;
|
|
8381
10145
|
};
|
|
8382
|
-
|
|
10146
|
+
stringValue: {
|
|
8383
10147
|
type: string;
|
|
8384
10148
|
id: number;
|
|
8385
10149
|
};
|
|
8386
|
-
|
|
10150
|
+
aggregateValue: {
|
|
8387
10151
|
type: string;
|
|
8388
10152
|
id: number;
|
|
8389
10153
|
};
|
|
@@ -8391,12 +10155,12 @@ declare const _default: {
|
|
|
8391
10155
|
nested: {
|
|
8392
10156
|
NamePart: {
|
|
8393
10157
|
fields: {
|
|
8394
|
-
|
|
10158
|
+
namePart: {
|
|
8395
10159
|
rule: string;
|
|
8396
10160
|
type: string;
|
|
8397
10161
|
id: number;
|
|
8398
10162
|
};
|
|
8399
|
-
|
|
10163
|
+
isExtension: {
|
|
8400
10164
|
rule: string;
|
|
8401
10165
|
type: string;
|
|
8402
10166
|
id: number;
|
|
@@ -8405,7 +10169,207 @@ declare const _default: {
|
|
|
8405
10169
|
};
|
|
8406
10170
|
};
|
|
8407
10171
|
};
|
|
10172
|
+
FeatureSet: {
|
|
10173
|
+
edition: string;
|
|
10174
|
+
fields: {
|
|
10175
|
+
fieldPresence: {
|
|
10176
|
+
type: string;
|
|
10177
|
+
id: number;
|
|
10178
|
+
options: {
|
|
10179
|
+
retention: string;
|
|
10180
|
+
targets: string;
|
|
10181
|
+
"feature_support.edition_introduced": string;
|
|
10182
|
+
"edition_defaults.edition": string;
|
|
10183
|
+
"edition_defaults.value": string;
|
|
10184
|
+
};
|
|
10185
|
+
};
|
|
10186
|
+
enumType: {
|
|
10187
|
+
type: string;
|
|
10188
|
+
id: number;
|
|
10189
|
+
options: {
|
|
10190
|
+
retention: string;
|
|
10191
|
+
targets: string;
|
|
10192
|
+
"feature_support.edition_introduced": string;
|
|
10193
|
+
"edition_defaults.edition": string;
|
|
10194
|
+
"edition_defaults.value": string;
|
|
10195
|
+
};
|
|
10196
|
+
};
|
|
10197
|
+
repeatedFieldEncoding: {
|
|
10198
|
+
type: string;
|
|
10199
|
+
id: number;
|
|
10200
|
+
options: {
|
|
10201
|
+
retention: string;
|
|
10202
|
+
targets: string;
|
|
10203
|
+
"feature_support.edition_introduced": string;
|
|
10204
|
+
"edition_defaults.edition": string;
|
|
10205
|
+
"edition_defaults.value": string;
|
|
10206
|
+
};
|
|
10207
|
+
};
|
|
10208
|
+
utf8Validation: {
|
|
10209
|
+
type: string;
|
|
10210
|
+
id: number;
|
|
10211
|
+
options: {
|
|
10212
|
+
retention: string;
|
|
10213
|
+
targets: string;
|
|
10214
|
+
"feature_support.edition_introduced": string;
|
|
10215
|
+
"edition_defaults.edition": string;
|
|
10216
|
+
"edition_defaults.value": string;
|
|
10217
|
+
};
|
|
10218
|
+
};
|
|
10219
|
+
messageEncoding: {
|
|
10220
|
+
type: string;
|
|
10221
|
+
id: number;
|
|
10222
|
+
options: {
|
|
10223
|
+
retention: string;
|
|
10224
|
+
targets: string;
|
|
10225
|
+
"feature_support.edition_introduced": string;
|
|
10226
|
+
"edition_defaults.edition": string;
|
|
10227
|
+
"edition_defaults.value": string;
|
|
10228
|
+
};
|
|
10229
|
+
};
|
|
10230
|
+
jsonFormat: {
|
|
10231
|
+
type: string;
|
|
10232
|
+
id: number;
|
|
10233
|
+
options: {
|
|
10234
|
+
retention: string;
|
|
10235
|
+
targets: string;
|
|
10236
|
+
"feature_support.edition_introduced": string;
|
|
10237
|
+
"edition_defaults.edition": string;
|
|
10238
|
+
"edition_defaults.value": string;
|
|
10239
|
+
};
|
|
10240
|
+
};
|
|
10241
|
+
enforceNamingStyle: {
|
|
10242
|
+
type: string;
|
|
10243
|
+
id: number;
|
|
10244
|
+
options: {
|
|
10245
|
+
retention: string;
|
|
10246
|
+
targets: string;
|
|
10247
|
+
"feature_support.edition_introduced": string;
|
|
10248
|
+
"edition_defaults.edition": string;
|
|
10249
|
+
"edition_defaults.value": string;
|
|
10250
|
+
};
|
|
10251
|
+
};
|
|
10252
|
+
defaultSymbolVisibility: {
|
|
10253
|
+
type: string;
|
|
10254
|
+
id: number;
|
|
10255
|
+
options: {
|
|
10256
|
+
retention: string;
|
|
10257
|
+
targets: string;
|
|
10258
|
+
"feature_support.edition_introduced": string;
|
|
10259
|
+
"edition_defaults.edition": string;
|
|
10260
|
+
"edition_defaults.value": string;
|
|
10261
|
+
};
|
|
10262
|
+
};
|
|
10263
|
+
};
|
|
10264
|
+
extensions: number[][];
|
|
10265
|
+
reserved: number[][];
|
|
10266
|
+
nested: {
|
|
10267
|
+
FieldPresence: {
|
|
10268
|
+
values: {
|
|
10269
|
+
FIELD_PRESENCE_UNKNOWN: number;
|
|
10270
|
+
EXPLICIT: number;
|
|
10271
|
+
IMPLICIT: number;
|
|
10272
|
+
LEGACY_REQUIRED: number;
|
|
10273
|
+
};
|
|
10274
|
+
};
|
|
10275
|
+
EnumType: {
|
|
10276
|
+
values: {
|
|
10277
|
+
ENUM_TYPE_UNKNOWN: number;
|
|
10278
|
+
OPEN: number;
|
|
10279
|
+
CLOSED: number;
|
|
10280
|
+
};
|
|
10281
|
+
};
|
|
10282
|
+
RepeatedFieldEncoding: {
|
|
10283
|
+
values: {
|
|
10284
|
+
REPEATED_FIELD_ENCODING_UNKNOWN: number;
|
|
10285
|
+
PACKED: number;
|
|
10286
|
+
EXPANDED: number;
|
|
10287
|
+
};
|
|
10288
|
+
};
|
|
10289
|
+
Utf8Validation: {
|
|
10290
|
+
values: {
|
|
10291
|
+
UTF8_VALIDATION_UNKNOWN: number;
|
|
10292
|
+
VERIFY: number;
|
|
10293
|
+
NONE: number;
|
|
10294
|
+
};
|
|
10295
|
+
};
|
|
10296
|
+
MessageEncoding: {
|
|
10297
|
+
values: {
|
|
10298
|
+
MESSAGE_ENCODING_UNKNOWN: number;
|
|
10299
|
+
LENGTH_PREFIXED: number;
|
|
10300
|
+
DELIMITED: number;
|
|
10301
|
+
};
|
|
10302
|
+
};
|
|
10303
|
+
JsonFormat: {
|
|
10304
|
+
values: {
|
|
10305
|
+
JSON_FORMAT_UNKNOWN: number;
|
|
10306
|
+
ALLOW: number;
|
|
10307
|
+
LEGACY_BEST_EFFORT: number;
|
|
10308
|
+
};
|
|
10309
|
+
};
|
|
10310
|
+
EnforceNamingStyle: {
|
|
10311
|
+
values: {
|
|
10312
|
+
ENFORCE_NAMING_STYLE_UNKNOWN: number;
|
|
10313
|
+
STYLE2024: number;
|
|
10314
|
+
STYLE_LEGACY: number;
|
|
10315
|
+
};
|
|
10316
|
+
};
|
|
10317
|
+
VisibilityFeature: {
|
|
10318
|
+
fields: {};
|
|
10319
|
+
reserved: number[][];
|
|
10320
|
+
nested: {
|
|
10321
|
+
DefaultSymbolVisibility: {
|
|
10322
|
+
values: {
|
|
10323
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN: number;
|
|
10324
|
+
EXPORT_ALL: number;
|
|
10325
|
+
EXPORT_TOP_LEVEL: number;
|
|
10326
|
+
LOCAL_ALL: number;
|
|
10327
|
+
STRICT: number;
|
|
10328
|
+
};
|
|
10329
|
+
};
|
|
10330
|
+
};
|
|
10331
|
+
};
|
|
10332
|
+
};
|
|
10333
|
+
};
|
|
10334
|
+
FeatureSetDefaults: {
|
|
10335
|
+
edition: string;
|
|
10336
|
+
fields: {
|
|
10337
|
+
defaults: {
|
|
10338
|
+
rule: string;
|
|
10339
|
+
type: string;
|
|
10340
|
+
id: number;
|
|
10341
|
+
};
|
|
10342
|
+
minimumEdition: {
|
|
10343
|
+
type: string;
|
|
10344
|
+
id: number;
|
|
10345
|
+
};
|
|
10346
|
+
maximumEdition: {
|
|
10347
|
+
type: string;
|
|
10348
|
+
id: number;
|
|
10349
|
+
};
|
|
10350
|
+
};
|
|
10351
|
+
nested: {
|
|
10352
|
+
FeatureSetEditionDefault: {
|
|
10353
|
+
fields: {
|
|
10354
|
+
edition: {
|
|
10355
|
+
type: string;
|
|
10356
|
+
id: number;
|
|
10357
|
+
};
|
|
10358
|
+
overridableFeatures: {
|
|
10359
|
+
type: string;
|
|
10360
|
+
id: number;
|
|
10361
|
+
};
|
|
10362
|
+
fixedFeatures: {
|
|
10363
|
+
type: string;
|
|
10364
|
+
id: number;
|
|
10365
|
+
};
|
|
10366
|
+
};
|
|
10367
|
+
reserved: (string | number[])[];
|
|
10368
|
+
};
|
|
10369
|
+
};
|
|
10370
|
+
};
|
|
8408
10371
|
SourceCodeInfo: {
|
|
10372
|
+
edition: string;
|
|
8409
10373
|
fields: {
|
|
8410
10374
|
location: {
|
|
8411
10375
|
rule: string;
|
|
@@ -8413,6 +10377,7 @@ declare const _default: {
|
|
|
8413
10377
|
id: number;
|
|
8414
10378
|
};
|
|
8415
10379
|
};
|
|
10380
|
+
extensions: number[][];
|
|
8416
10381
|
nested: {
|
|
8417
10382
|
Location: {
|
|
8418
10383
|
fields: {
|
|
@@ -8420,21 +10385,27 @@ declare const _default: {
|
|
|
8420
10385
|
rule: string;
|
|
8421
10386
|
type: string;
|
|
8422
10387
|
id: number;
|
|
10388
|
+
options: {
|
|
10389
|
+
packed: boolean;
|
|
10390
|
+
};
|
|
8423
10391
|
};
|
|
8424
10392
|
span: {
|
|
8425
10393
|
rule: string;
|
|
8426
10394
|
type: string;
|
|
8427
10395
|
id: number;
|
|
10396
|
+
options: {
|
|
10397
|
+
packed: boolean;
|
|
10398
|
+
};
|
|
8428
10399
|
};
|
|
8429
|
-
|
|
10400
|
+
leadingComments: {
|
|
8430
10401
|
type: string;
|
|
8431
10402
|
id: number;
|
|
8432
10403
|
};
|
|
8433
|
-
|
|
10404
|
+
trailingComments: {
|
|
8434
10405
|
type: string;
|
|
8435
10406
|
id: number;
|
|
8436
10407
|
};
|
|
8437
|
-
|
|
10408
|
+
leadingDetachedComments: {
|
|
8438
10409
|
rule: string;
|
|
8439
10410
|
type: string;
|
|
8440
10411
|
id: number;
|
|
@@ -8444,6 +10415,7 @@ declare const _default: {
|
|
|
8444
10415
|
};
|
|
8445
10416
|
};
|
|
8446
10417
|
GeneratedCodeInfo: {
|
|
10418
|
+
edition: string;
|
|
8447
10419
|
fields: {
|
|
8448
10420
|
annotation: {
|
|
8449
10421
|
rule: string;
|
|
@@ -8458,8 +10430,11 @@ declare const _default: {
|
|
|
8458
10430
|
rule: string;
|
|
8459
10431
|
type: string;
|
|
8460
10432
|
id: number;
|
|
10433
|
+
options: {
|
|
10434
|
+
packed: boolean;
|
|
10435
|
+
};
|
|
8461
10436
|
};
|
|
8462
|
-
|
|
10437
|
+
sourceFile: {
|
|
8463
10438
|
type: string;
|
|
8464
10439
|
id: number;
|
|
8465
10440
|
};
|
|
@@ -8471,10 +10446,31 @@ declare const _default: {
|
|
|
8471
10446
|
type: string;
|
|
8472
10447
|
id: number;
|
|
8473
10448
|
};
|
|
10449
|
+
semantic: {
|
|
10450
|
+
type: string;
|
|
10451
|
+
id: number;
|
|
10452
|
+
};
|
|
10453
|
+
};
|
|
10454
|
+
nested: {
|
|
10455
|
+
Semantic: {
|
|
10456
|
+
values: {
|
|
10457
|
+
NONE: number;
|
|
10458
|
+
SET: number;
|
|
10459
|
+
ALIAS: number;
|
|
10460
|
+
};
|
|
10461
|
+
};
|
|
8474
10462
|
};
|
|
8475
10463
|
};
|
|
8476
10464
|
};
|
|
8477
10465
|
};
|
|
10466
|
+
SymbolVisibility: {
|
|
10467
|
+
edition: string;
|
|
10468
|
+
values: {
|
|
10469
|
+
VISIBILITY_UNSET: number;
|
|
10470
|
+
VISIBILITY_LOCAL: number;
|
|
10471
|
+
VISIBILITY_EXPORT: number;
|
|
10472
|
+
};
|
|
10473
|
+
};
|
|
8478
10474
|
};
|
|
8479
10475
|
};
|
|
8480
10476
|
};
|