@zilliz/milvus2-sdk-node 2.6.12 → 2.6.14
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/dist/milvus/bulkwriter/JsonFormatter.js +4 -3
- package/dist/milvus/bulkwriter/JsonFormatter.js.map +1 -1
- package/dist/milvus/bulkwriter/ParquetFormatter.js +30 -21
- package/dist/milvus/bulkwriter/ParquetFormatter.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/proto-json/milvus.base.d.ts +631 -8
- package/dist/milvus/proto-json/milvus.base.js +726 -17
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +687 -64
- package/dist/milvus/proto-json/milvus.js +782 -73
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +580 -8
- package/dist/milvus/proto-json/schema.base.js +672 -17
- package/dist/milvus/proto-json/schema.base.js.map +1 -1
- package/dist/milvus/types/Client.d.ts +1 -0
- package/dist/milvus/types/Database.d.ts +2 -0
- package/dist/milvus/types/Http.d.ts +2 -0
- package/dist/sdk.json +1 -1
- package/package.json +6 -3
|
@@ -490,6 +490,11 @@ declare const _default: {
|
|
|
490
490
|
responseType: string;
|
|
491
491
|
responseStream: boolean;
|
|
492
492
|
};
|
|
493
|
+
DumpMessages: {
|
|
494
|
+
requestType: string;
|
|
495
|
+
responseType: string;
|
|
496
|
+
responseStream: boolean;
|
|
497
|
+
};
|
|
493
498
|
};
|
|
494
499
|
};
|
|
495
500
|
CreateAliasRequest: {
|
|
@@ -2046,6 +2051,11 @@ declare const _default: {
|
|
|
2046
2051
|
proto3_optional: boolean;
|
|
2047
2052
|
};
|
|
2048
2053
|
};
|
|
2054
|
+
field_ops: {
|
|
2055
|
+
rule: string;
|
|
2056
|
+
type: string;
|
|
2057
|
+
id: number;
|
|
2058
|
+
};
|
|
2049
2059
|
};
|
|
2050
2060
|
};
|
|
2051
2061
|
MutationResult: {
|
|
@@ -5418,6 +5428,10 @@ declare const _default: {
|
|
|
5418
5428
|
type: string;
|
|
5419
5429
|
id: number;
|
|
5420
5430
|
};
|
|
5431
|
+
salvage_checkpoint: {
|
|
5432
|
+
type: string;
|
|
5433
|
+
id: number;
|
|
5434
|
+
};
|
|
5421
5435
|
};
|
|
5422
5436
|
};
|
|
5423
5437
|
ReplicateMessage: {
|
|
@@ -5466,6 +5480,43 @@ declare const _default: {
|
|
|
5466
5480
|
};
|
|
5467
5481
|
};
|
|
5468
5482
|
};
|
|
5483
|
+
DumpMessagesRequest: {
|
|
5484
|
+
fields: {
|
|
5485
|
+
pchannel: {
|
|
5486
|
+
type: string;
|
|
5487
|
+
id: number;
|
|
5488
|
+
};
|
|
5489
|
+
start_message_id: {
|
|
5490
|
+
type: string;
|
|
5491
|
+
id: number;
|
|
5492
|
+
};
|
|
5493
|
+
start_timetick: {
|
|
5494
|
+
type: string;
|
|
5495
|
+
id: number;
|
|
5496
|
+
};
|
|
5497
|
+
end_timetick: {
|
|
5498
|
+
type: string;
|
|
5499
|
+
id: number;
|
|
5500
|
+
};
|
|
5501
|
+
};
|
|
5502
|
+
};
|
|
5503
|
+
DumpMessagesResponse: {
|
|
5504
|
+
oneofs: {
|
|
5505
|
+
response: {
|
|
5506
|
+
oneof: string[];
|
|
5507
|
+
};
|
|
5508
|
+
};
|
|
5509
|
+
fields: {
|
|
5510
|
+
status: {
|
|
5511
|
+
type: string;
|
|
5512
|
+
id: number;
|
|
5513
|
+
};
|
|
5514
|
+
message: {
|
|
5515
|
+
type: string;
|
|
5516
|
+
id: number;
|
|
5517
|
+
};
|
|
5518
|
+
};
|
|
5519
|
+
};
|
|
5469
5520
|
TruncateCollectionRequest: {
|
|
5470
5521
|
options: {
|
|
5471
5522
|
"(common.privilege_ext_obj).object_type": string;
|
|
@@ -6959,6 +7010,27 @@ declare const _default: {
|
|
|
6959
7010
|
};
|
|
6960
7011
|
};
|
|
6961
7012
|
};
|
|
7013
|
+
FieldPartialUpdateOp: {
|
|
7014
|
+
fields: {
|
|
7015
|
+
field_name: {
|
|
7016
|
+
type: string;
|
|
7017
|
+
id: number;
|
|
7018
|
+
};
|
|
7019
|
+
op: {
|
|
7020
|
+
type: string;
|
|
7021
|
+
id: number;
|
|
7022
|
+
};
|
|
7023
|
+
};
|
|
7024
|
+
nested: {
|
|
7025
|
+
OpType: {
|
|
7026
|
+
values: {
|
|
7027
|
+
REPLACE: number;
|
|
7028
|
+
ARRAY_APPEND: number;
|
|
7029
|
+
ARRAY_REMOVE: number;
|
|
7030
|
+
};
|
|
7031
|
+
};
|
|
7032
|
+
};
|
|
7033
|
+
};
|
|
6962
7034
|
FieldData: {
|
|
6963
7035
|
oneofs: {
|
|
6964
7036
|
field: {
|
|
@@ -7758,6 +7830,7 @@ declare const _default: {
|
|
|
7758
7830
|
protobuf: {
|
|
7759
7831
|
nested: {
|
|
7760
7832
|
FileDescriptorSet: {
|
|
7833
|
+
edition: string;
|
|
7761
7834
|
fields: {
|
|
7762
7835
|
file: {
|
|
7763
7836
|
rule: string;
|
|
@@ -7765,8 +7838,27 @@ declare const _default: {
|
|
|
7765
7838
|
id: number;
|
|
7766
7839
|
};
|
|
7767
7840
|
};
|
|
7841
|
+
extensions: number[][];
|
|
7842
|
+
};
|
|
7843
|
+
Edition: {
|
|
7844
|
+
edition: string;
|
|
7845
|
+
values: {
|
|
7846
|
+
EDITION_UNKNOWN: number;
|
|
7847
|
+
EDITION_LEGACY: number;
|
|
7848
|
+
EDITION_PROTO2: number;
|
|
7849
|
+
EDITION_PROTO3: number;
|
|
7850
|
+
EDITION_2023: number;
|
|
7851
|
+
EDITION_2024: number;
|
|
7852
|
+
EDITION_1_TEST_ONLY: number;
|
|
7853
|
+
EDITION_2_TEST_ONLY: number;
|
|
7854
|
+
EDITION_99997_TEST_ONLY: number;
|
|
7855
|
+
EDITION_99998_TEST_ONLY: number;
|
|
7856
|
+
EDITION_99999_TEST_ONLY: number;
|
|
7857
|
+
EDITION_MAX: number;
|
|
7858
|
+
};
|
|
7768
7859
|
};
|
|
7769
7860
|
FileDescriptorProto: {
|
|
7861
|
+
edition: string;
|
|
7770
7862
|
fields: {
|
|
7771
7863
|
name: {
|
|
7772
7864
|
type: string;
|
|
@@ -7781,28 +7873,27 @@ declare const _default: {
|
|
|
7781
7873
|
type: string;
|
|
7782
7874
|
id: number;
|
|
7783
7875
|
};
|
|
7784
|
-
|
|
7876
|
+
publicDependency: {
|
|
7785
7877
|
rule: string;
|
|
7786
7878
|
type: string;
|
|
7787
7879
|
id: number;
|
|
7788
|
-
options: {
|
|
7789
|
-
packed: boolean;
|
|
7790
|
-
};
|
|
7791
7880
|
};
|
|
7792
|
-
|
|
7881
|
+
weakDependency: {
|
|
7793
7882
|
rule: string;
|
|
7794
7883
|
type: string;
|
|
7795
7884
|
id: number;
|
|
7796
|
-
options: {
|
|
7797
|
-
packed: boolean;
|
|
7798
|
-
};
|
|
7799
7885
|
};
|
|
7800
|
-
|
|
7886
|
+
optionDependency: {
|
|
7801
7887
|
rule: string;
|
|
7802
7888
|
type: string;
|
|
7803
7889
|
id: number;
|
|
7804
7890
|
};
|
|
7805
|
-
|
|
7891
|
+
messageType: {
|
|
7892
|
+
rule: string;
|
|
7893
|
+
type: string;
|
|
7894
|
+
id: number;
|
|
7895
|
+
};
|
|
7896
|
+
enumType: {
|
|
7806
7897
|
rule: string;
|
|
7807
7898
|
type: string;
|
|
7808
7899
|
id: number;
|
|
@@ -7821,7 +7912,7 @@ declare const _default: {
|
|
|
7821
7912
|
type: string;
|
|
7822
7913
|
id: number;
|
|
7823
7914
|
};
|
|
7824
|
-
|
|
7915
|
+
sourceCodeInfo: {
|
|
7825
7916
|
type: string;
|
|
7826
7917
|
id: number;
|
|
7827
7918
|
};
|
|
@@ -7829,9 +7920,14 @@ declare const _default: {
|
|
|
7829
7920
|
type: string;
|
|
7830
7921
|
id: number;
|
|
7831
7922
|
};
|
|
7923
|
+
edition: {
|
|
7924
|
+
type: string;
|
|
7925
|
+
id: number;
|
|
7926
|
+
};
|
|
7832
7927
|
};
|
|
7833
7928
|
};
|
|
7834
7929
|
DescriptorProto: {
|
|
7930
|
+
edition: string;
|
|
7835
7931
|
fields: {
|
|
7836
7932
|
name: {
|
|
7837
7933
|
type: string;
|
|
@@ -7847,22 +7943,22 @@ declare const _default: {
|
|
|
7847
7943
|
type: string;
|
|
7848
7944
|
id: number;
|
|
7849
7945
|
};
|
|
7850
|
-
|
|
7946
|
+
nestedType: {
|
|
7851
7947
|
rule: string;
|
|
7852
7948
|
type: string;
|
|
7853
7949
|
id: number;
|
|
7854
7950
|
};
|
|
7855
|
-
|
|
7951
|
+
enumType: {
|
|
7856
7952
|
rule: string;
|
|
7857
7953
|
type: string;
|
|
7858
7954
|
id: number;
|
|
7859
7955
|
};
|
|
7860
|
-
|
|
7956
|
+
extensionRange: {
|
|
7861
7957
|
rule: string;
|
|
7862
7958
|
type: string;
|
|
7863
7959
|
id: number;
|
|
7864
7960
|
};
|
|
7865
|
-
|
|
7961
|
+
oneofDecl: {
|
|
7866
7962
|
rule: string;
|
|
7867
7963
|
type: string;
|
|
7868
7964
|
id: number;
|
|
@@ -7871,16 +7967,20 @@ declare const _default: {
|
|
|
7871
7967
|
type: string;
|
|
7872
7968
|
id: number;
|
|
7873
7969
|
};
|
|
7874
|
-
|
|
7970
|
+
reservedRange: {
|
|
7875
7971
|
rule: string;
|
|
7876
7972
|
type: string;
|
|
7877
7973
|
id: number;
|
|
7878
7974
|
};
|
|
7879
|
-
|
|
7975
|
+
reservedName: {
|
|
7880
7976
|
rule: string;
|
|
7881
7977
|
type: string;
|
|
7882
7978
|
id: number;
|
|
7883
7979
|
};
|
|
7980
|
+
visibility: {
|
|
7981
|
+
type: string;
|
|
7982
|
+
id: number;
|
|
7983
|
+
};
|
|
7884
7984
|
};
|
|
7885
7985
|
nested: {
|
|
7886
7986
|
ExtensionRange: {
|
|
@@ -7893,6 +7993,10 @@ declare const _default: {
|
|
|
7893
7993
|
type: string;
|
|
7894
7994
|
id: number;
|
|
7895
7995
|
};
|
|
7996
|
+
options: {
|
|
7997
|
+
type: string;
|
|
7998
|
+
id: number;
|
|
7999
|
+
};
|
|
7896
8000
|
};
|
|
7897
8001
|
};
|
|
7898
8002
|
ReservedRange: {
|
|
@@ -7909,7 +8013,72 @@ declare const _default: {
|
|
|
7909
8013
|
};
|
|
7910
8014
|
};
|
|
7911
8015
|
};
|
|
8016
|
+
ExtensionRangeOptions: {
|
|
8017
|
+
edition: string;
|
|
8018
|
+
fields: {
|
|
8019
|
+
uninterpretedOption: {
|
|
8020
|
+
rule: string;
|
|
8021
|
+
type: string;
|
|
8022
|
+
id: number;
|
|
8023
|
+
};
|
|
8024
|
+
declaration: {
|
|
8025
|
+
rule: string;
|
|
8026
|
+
type: string;
|
|
8027
|
+
id: number;
|
|
8028
|
+
options: {
|
|
8029
|
+
retention: string;
|
|
8030
|
+
};
|
|
8031
|
+
};
|
|
8032
|
+
features: {
|
|
8033
|
+
type: string;
|
|
8034
|
+
id: number;
|
|
8035
|
+
};
|
|
8036
|
+
verification: {
|
|
8037
|
+
type: string;
|
|
8038
|
+
id: number;
|
|
8039
|
+
options: {
|
|
8040
|
+
default: string;
|
|
8041
|
+
retention: string;
|
|
8042
|
+
};
|
|
8043
|
+
};
|
|
8044
|
+
};
|
|
8045
|
+
extensions: number[][];
|
|
8046
|
+
nested: {
|
|
8047
|
+
Declaration: {
|
|
8048
|
+
fields: {
|
|
8049
|
+
number: {
|
|
8050
|
+
type: string;
|
|
8051
|
+
id: number;
|
|
8052
|
+
};
|
|
8053
|
+
fullName: {
|
|
8054
|
+
type: string;
|
|
8055
|
+
id: number;
|
|
8056
|
+
};
|
|
8057
|
+
type: {
|
|
8058
|
+
type: string;
|
|
8059
|
+
id: number;
|
|
8060
|
+
};
|
|
8061
|
+
reserved: {
|
|
8062
|
+
type: string;
|
|
8063
|
+
id: number;
|
|
8064
|
+
};
|
|
8065
|
+
repeated: {
|
|
8066
|
+
type: string;
|
|
8067
|
+
id: number;
|
|
8068
|
+
};
|
|
8069
|
+
};
|
|
8070
|
+
reserved: number[][];
|
|
8071
|
+
};
|
|
8072
|
+
VerificationState: {
|
|
8073
|
+
values: {
|
|
8074
|
+
DECLARATION: number;
|
|
8075
|
+
UNVERIFIED: number;
|
|
8076
|
+
};
|
|
8077
|
+
};
|
|
8078
|
+
};
|
|
8079
|
+
};
|
|
7912
8080
|
FieldDescriptorProto: {
|
|
8081
|
+
edition: string;
|
|
7913
8082
|
fields: {
|
|
7914
8083
|
name: {
|
|
7915
8084
|
type: string;
|
|
@@ -7927,7 +8096,7 @@ declare const _default: {
|
|
|
7927
8096
|
type: string;
|
|
7928
8097
|
id: number;
|
|
7929
8098
|
};
|
|
7930
|
-
|
|
8099
|
+
typeName: {
|
|
7931
8100
|
type: string;
|
|
7932
8101
|
id: number;
|
|
7933
8102
|
};
|
|
@@ -7935,15 +8104,15 @@ declare const _default: {
|
|
|
7935
8104
|
type: string;
|
|
7936
8105
|
id: number;
|
|
7937
8106
|
};
|
|
7938
|
-
|
|
8107
|
+
defaultValue: {
|
|
7939
8108
|
type: string;
|
|
7940
8109
|
id: number;
|
|
7941
8110
|
};
|
|
7942
|
-
|
|
8111
|
+
oneofIndex: {
|
|
7943
8112
|
type: string;
|
|
7944
8113
|
id: number;
|
|
7945
8114
|
};
|
|
7946
|
-
|
|
8115
|
+
jsonName: {
|
|
7947
8116
|
type: string;
|
|
7948
8117
|
id: number;
|
|
7949
8118
|
};
|
|
@@ -7951,6 +8120,10 @@ declare const _default: {
|
|
|
7951
8120
|
type: string;
|
|
7952
8121
|
id: number;
|
|
7953
8122
|
};
|
|
8123
|
+
proto3Optional: {
|
|
8124
|
+
type: string;
|
|
8125
|
+
id: number;
|
|
8126
|
+
};
|
|
7954
8127
|
};
|
|
7955
8128
|
nested: {
|
|
7956
8129
|
Type: {
|
|
@@ -7978,13 +8151,14 @@ declare const _default: {
|
|
|
7978
8151
|
Label: {
|
|
7979
8152
|
values: {
|
|
7980
8153
|
LABEL_OPTIONAL: number;
|
|
7981
|
-
LABEL_REQUIRED: number;
|
|
7982
8154
|
LABEL_REPEATED: number;
|
|
8155
|
+
LABEL_REQUIRED: number;
|
|
7983
8156
|
};
|
|
7984
8157
|
};
|
|
7985
8158
|
};
|
|
7986
8159
|
};
|
|
7987
8160
|
OneofDescriptorProto: {
|
|
8161
|
+
edition: string;
|
|
7988
8162
|
fields: {
|
|
7989
8163
|
name: {
|
|
7990
8164
|
type: string;
|
|
@@ -7997,6 +8171,7 @@ declare const _default: {
|
|
|
7997
8171
|
};
|
|
7998
8172
|
};
|
|
7999
8173
|
EnumDescriptorProto: {
|
|
8174
|
+
edition: string;
|
|
8000
8175
|
fields: {
|
|
8001
8176
|
name: {
|
|
8002
8177
|
type: string;
|
|
@@ -8011,9 +8186,38 @@ declare const _default: {
|
|
|
8011
8186
|
type: string;
|
|
8012
8187
|
id: number;
|
|
8013
8188
|
};
|
|
8189
|
+
reservedRange: {
|
|
8190
|
+
rule: string;
|
|
8191
|
+
type: string;
|
|
8192
|
+
id: number;
|
|
8193
|
+
};
|
|
8194
|
+
reservedName: {
|
|
8195
|
+
rule: string;
|
|
8196
|
+
type: string;
|
|
8197
|
+
id: number;
|
|
8198
|
+
};
|
|
8199
|
+
visibility: {
|
|
8200
|
+
type: string;
|
|
8201
|
+
id: number;
|
|
8202
|
+
};
|
|
8203
|
+
};
|
|
8204
|
+
nested: {
|
|
8205
|
+
EnumReservedRange: {
|
|
8206
|
+
fields: {
|
|
8207
|
+
start: {
|
|
8208
|
+
type: string;
|
|
8209
|
+
id: number;
|
|
8210
|
+
};
|
|
8211
|
+
end: {
|
|
8212
|
+
type: string;
|
|
8213
|
+
id: number;
|
|
8214
|
+
};
|
|
8215
|
+
};
|
|
8216
|
+
};
|
|
8014
8217
|
};
|
|
8015
8218
|
};
|
|
8016
8219
|
EnumValueDescriptorProto: {
|
|
8220
|
+
edition: string;
|
|
8017
8221
|
fields: {
|
|
8018
8222
|
name: {
|
|
8019
8223
|
type: string;
|
|
@@ -8030,6 +8234,7 @@ declare const _default: {
|
|
|
8030
8234
|
};
|
|
8031
8235
|
};
|
|
8032
8236
|
ServiceDescriptorProto: {
|
|
8237
|
+
edition: string;
|
|
8033
8238
|
fields: {
|
|
8034
8239
|
name: {
|
|
8035
8240
|
type: string;
|
|
@@ -8047,16 +8252,17 @@ declare const _default: {
|
|
|
8047
8252
|
};
|
|
8048
8253
|
};
|
|
8049
8254
|
MethodDescriptorProto: {
|
|
8255
|
+
edition: string;
|
|
8050
8256
|
fields: {
|
|
8051
8257
|
name: {
|
|
8052
8258
|
type: string;
|
|
8053
8259
|
id: number;
|
|
8054
8260
|
};
|
|
8055
|
-
|
|
8261
|
+
inputType: {
|
|
8056
8262
|
type: string;
|
|
8057
8263
|
id: number;
|
|
8058
8264
|
};
|
|
8059
|
-
|
|
8265
|
+
outputType: {
|
|
8060
8266
|
type: string;
|
|
8061
8267
|
id: number;
|
|
8062
8268
|
};
|
|
@@ -8064,61 +8270,62 @@ declare const _default: {
|
|
|
8064
8270
|
type: string;
|
|
8065
8271
|
id: number;
|
|
8066
8272
|
};
|
|
8067
|
-
|
|
8273
|
+
clientStreaming: {
|
|
8068
8274
|
type: string;
|
|
8069
8275
|
id: number;
|
|
8070
8276
|
};
|
|
8071
|
-
|
|
8277
|
+
serverStreaming: {
|
|
8072
8278
|
type: string;
|
|
8073
8279
|
id: number;
|
|
8074
8280
|
};
|
|
8075
8281
|
};
|
|
8076
8282
|
};
|
|
8077
8283
|
FileOptions: {
|
|
8284
|
+
edition: string;
|
|
8078
8285
|
fields: {
|
|
8079
|
-
|
|
8286
|
+
javaPackage: {
|
|
8080
8287
|
type: string;
|
|
8081
8288
|
id: number;
|
|
8082
8289
|
};
|
|
8083
|
-
|
|
8290
|
+
javaOuterClassname: {
|
|
8084
8291
|
type: string;
|
|
8085
8292
|
id: number;
|
|
8086
8293
|
};
|
|
8087
|
-
|
|
8294
|
+
javaMultipleFiles: {
|
|
8088
8295
|
type: string;
|
|
8089
8296
|
id: number;
|
|
8090
8297
|
};
|
|
8091
|
-
|
|
8298
|
+
javaGenerateEqualsAndHash: {
|
|
8092
8299
|
type: string;
|
|
8093
8300
|
id: number;
|
|
8094
8301
|
options: {
|
|
8095
8302
|
deprecated: boolean;
|
|
8096
8303
|
};
|
|
8097
8304
|
};
|
|
8098
|
-
|
|
8305
|
+
javaStringCheckUtf8: {
|
|
8099
8306
|
type: string;
|
|
8100
8307
|
id: number;
|
|
8101
8308
|
};
|
|
8102
|
-
|
|
8309
|
+
optimizeFor: {
|
|
8103
8310
|
type: string;
|
|
8104
8311
|
id: number;
|
|
8105
8312
|
options: {
|
|
8106
8313
|
default: string;
|
|
8107
8314
|
};
|
|
8108
8315
|
};
|
|
8109
|
-
|
|
8316
|
+
goPackage: {
|
|
8110
8317
|
type: string;
|
|
8111
8318
|
id: number;
|
|
8112
8319
|
};
|
|
8113
|
-
|
|
8320
|
+
ccGenericServices: {
|
|
8114
8321
|
type: string;
|
|
8115
8322
|
id: number;
|
|
8116
8323
|
};
|
|
8117
|
-
|
|
8324
|
+
javaGenericServices: {
|
|
8118
8325
|
type: string;
|
|
8119
8326
|
id: number;
|
|
8120
8327
|
};
|
|
8121
|
-
|
|
8328
|
+
pyGenericServices: {
|
|
8122
8329
|
type: string;
|
|
8123
8330
|
id: number;
|
|
8124
8331
|
};
|
|
@@ -8126,26 +8333,53 @@ declare const _default: {
|
|
|
8126
8333
|
type: string;
|
|
8127
8334
|
id: number;
|
|
8128
8335
|
};
|
|
8129
|
-
|
|
8336
|
+
ccEnableArenas: {
|
|
8337
|
+
type: string;
|
|
8338
|
+
id: number;
|
|
8339
|
+
options: {
|
|
8340
|
+
default: boolean;
|
|
8341
|
+
};
|
|
8342
|
+
};
|
|
8343
|
+
objcClassPrefix: {
|
|
8344
|
+
type: string;
|
|
8345
|
+
id: number;
|
|
8346
|
+
};
|
|
8347
|
+
csharpNamespace: {
|
|
8348
|
+
type: string;
|
|
8349
|
+
id: number;
|
|
8350
|
+
};
|
|
8351
|
+
swiftPrefix: {
|
|
8352
|
+
type: string;
|
|
8353
|
+
id: number;
|
|
8354
|
+
};
|
|
8355
|
+
phpClassPrefix: {
|
|
8356
|
+
type: string;
|
|
8357
|
+
id: number;
|
|
8358
|
+
};
|
|
8359
|
+
phpNamespace: {
|
|
8360
|
+
type: string;
|
|
8361
|
+
id: number;
|
|
8362
|
+
};
|
|
8363
|
+
phpMetadataNamespace: {
|
|
8130
8364
|
type: string;
|
|
8131
8365
|
id: number;
|
|
8132
8366
|
};
|
|
8133
|
-
|
|
8367
|
+
rubyPackage: {
|
|
8134
8368
|
type: string;
|
|
8135
8369
|
id: number;
|
|
8136
8370
|
};
|
|
8137
|
-
|
|
8371
|
+
features: {
|
|
8138
8372
|
type: string;
|
|
8139
8373
|
id: number;
|
|
8140
8374
|
};
|
|
8141
|
-
|
|
8375
|
+
uninterpretedOption: {
|
|
8142
8376
|
rule: string;
|
|
8143
8377
|
type: string;
|
|
8144
8378
|
id: number;
|
|
8145
8379
|
};
|
|
8146
8380
|
};
|
|
8147
8381
|
extensions: number[][];
|
|
8148
|
-
reserved: number[][];
|
|
8382
|
+
reserved: (string | number[])[];
|
|
8149
8383
|
nested: {
|
|
8150
8384
|
OptimizeMode: {
|
|
8151
8385
|
values: {
|
|
@@ -8157,12 +8391,13 @@ declare const _default: {
|
|
|
8157
8391
|
};
|
|
8158
8392
|
};
|
|
8159
8393
|
MessageOptions: {
|
|
8394
|
+
edition: string;
|
|
8160
8395
|
fields: {
|
|
8161
|
-
|
|
8396
|
+
messageSetWireFormat: {
|
|
8162
8397
|
type: string;
|
|
8163
8398
|
id: number;
|
|
8164
8399
|
};
|
|
8165
|
-
|
|
8400
|
+
noStandardDescriptorAccessor: {
|
|
8166
8401
|
type: string;
|
|
8167
8402
|
id: number;
|
|
8168
8403
|
};
|
|
@@ -8170,11 +8405,22 @@ declare const _default: {
|
|
|
8170
8405
|
type: string;
|
|
8171
8406
|
id: number;
|
|
8172
8407
|
};
|
|
8173
|
-
|
|
8408
|
+
mapEntry: {
|
|
8409
|
+
type: string;
|
|
8410
|
+
id: number;
|
|
8411
|
+
};
|
|
8412
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
8413
|
+
type: string;
|
|
8414
|
+
id: number;
|
|
8415
|
+
options: {
|
|
8416
|
+
deprecated: boolean;
|
|
8417
|
+
};
|
|
8418
|
+
};
|
|
8419
|
+
features: {
|
|
8174
8420
|
type: string;
|
|
8175
8421
|
id: number;
|
|
8176
8422
|
};
|
|
8177
|
-
|
|
8423
|
+
uninterpretedOption: {
|
|
8178
8424
|
rule: string;
|
|
8179
8425
|
type: string;
|
|
8180
8426
|
id: number;
|
|
@@ -8184,6 +8430,7 @@ declare const _default: {
|
|
|
8184
8430
|
reserved: number[][];
|
|
8185
8431
|
};
|
|
8186
8432
|
FieldOptions: {
|
|
8433
|
+
edition: string;
|
|
8187
8434
|
fields: {
|
|
8188
8435
|
ctype: {
|
|
8189
8436
|
type: string;
|
|
@@ -8207,6 +8454,10 @@ declare const _default: {
|
|
|
8207
8454
|
type: string;
|
|
8208
8455
|
id: number;
|
|
8209
8456
|
};
|
|
8457
|
+
unverifiedLazy: {
|
|
8458
|
+
type: string;
|
|
8459
|
+
id: number;
|
|
8460
|
+
};
|
|
8210
8461
|
deprecated: {
|
|
8211
8462
|
type: string;
|
|
8212
8463
|
id: number;
|
|
@@ -8214,8 +8465,37 @@ declare const _default: {
|
|
|
8214
8465
|
weak: {
|
|
8215
8466
|
type: string;
|
|
8216
8467
|
id: number;
|
|
8468
|
+
options: {
|
|
8469
|
+
deprecated: boolean;
|
|
8470
|
+
};
|
|
8471
|
+
};
|
|
8472
|
+
debugRedact: {
|
|
8473
|
+
type: string;
|
|
8474
|
+
id: number;
|
|
8475
|
+
};
|
|
8476
|
+
retention: {
|
|
8477
|
+
type: string;
|
|
8478
|
+
id: number;
|
|
8217
8479
|
};
|
|
8218
|
-
|
|
8480
|
+
targets: {
|
|
8481
|
+
rule: string;
|
|
8482
|
+
type: string;
|
|
8483
|
+
id: number;
|
|
8484
|
+
};
|
|
8485
|
+
editionDefaults: {
|
|
8486
|
+
rule: string;
|
|
8487
|
+
type: string;
|
|
8488
|
+
id: number;
|
|
8489
|
+
};
|
|
8490
|
+
features: {
|
|
8491
|
+
type: string;
|
|
8492
|
+
id: number;
|
|
8493
|
+
};
|
|
8494
|
+
featureSupport: {
|
|
8495
|
+
type: string;
|
|
8496
|
+
id: number;
|
|
8497
|
+
};
|
|
8498
|
+
uninterpretedOption: {
|
|
8219
8499
|
rule: string;
|
|
8220
8500
|
type: string;
|
|
8221
8501
|
id: number;
|
|
@@ -8238,11 +8518,69 @@ declare const _default: {
|
|
|
8238
8518
|
JS_NUMBER: number;
|
|
8239
8519
|
};
|
|
8240
8520
|
};
|
|
8521
|
+
OptionRetention: {
|
|
8522
|
+
values: {
|
|
8523
|
+
RETENTION_UNKNOWN: number;
|
|
8524
|
+
RETENTION_RUNTIME: number;
|
|
8525
|
+
RETENTION_SOURCE: number;
|
|
8526
|
+
};
|
|
8527
|
+
};
|
|
8528
|
+
OptionTargetType: {
|
|
8529
|
+
values: {
|
|
8530
|
+
TARGET_TYPE_UNKNOWN: number;
|
|
8531
|
+
TARGET_TYPE_FILE: number;
|
|
8532
|
+
TARGET_TYPE_EXTENSION_RANGE: number;
|
|
8533
|
+
TARGET_TYPE_MESSAGE: number;
|
|
8534
|
+
TARGET_TYPE_FIELD: number;
|
|
8535
|
+
TARGET_TYPE_ONEOF: number;
|
|
8536
|
+
TARGET_TYPE_ENUM: number;
|
|
8537
|
+
TARGET_TYPE_ENUM_ENTRY: number;
|
|
8538
|
+
TARGET_TYPE_SERVICE: number;
|
|
8539
|
+
TARGET_TYPE_METHOD: number;
|
|
8540
|
+
};
|
|
8541
|
+
};
|
|
8542
|
+
EditionDefault: {
|
|
8543
|
+
fields: {
|
|
8544
|
+
edition: {
|
|
8545
|
+
type: string;
|
|
8546
|
+
id: number;
|
|
8547
|
+
};
|
|
8548
|
+
value: {
|
|
8549
|
+
type: string;
|
|
8550
|
+
id: number;
|
|
8551
|
+
};
|
|
8552
|
+
};
|
|
8553
|
+
};
|
|
8554
|
+
FeatureSupport: {
|
|
8555
|
+
fields: {
|
|
8556
|
+
editionIntroduced: {
|
|
8557
|
+
type: string;
|
|
8558
|
+
id: number;
|
|
8559
|
+
};
|
|
8560
|
+
editionDeprecated: {
|
|
8561
|
+
type: string;
|
|
8562
|
+
id: number;
|
|
8563
|
+
};
|
|
8564
|
+
deprecationWarning: {
|
|
8565
|
+
type: string;
|
|
8566
|
+
id: number;
|
|
8567
|
+
};
|
|
8568
|
+
editionRemoved: {
|
|
8569
|
+
type: string;
|
|
8570
|
+
id: number;
|
|
8571
|
+
};
|
|
8572
|
+
};
|
|
8573
|
+
};
|
|
8241
8574
|
};
|
|
8242
8575
|
};
|
|
8243
8576
|
OneofOptions: {
|
|
8577
|
+
edition: string;
|
|
8244
8578
|
fields: {
|
|
8245
|
-
|
|
8579
|
+
features: {
|
|
8580
|
+
type: string;
|
|
8581
|
+
id: number;
|
|
8582
|
+
};
|
|
8583
|
+
uninterpretedOption: {
|
|
8246
8584
|
rule: string;
|
|
8247
8585
|
type: string;
|
|
8248
8586
|
id: number;
|
|
@@ -8251,8 +8589,9 @@ declare const _default: {
|
|
|
8251
8589
|
extensions: number[][];
|
|
8252
8590
|
};
|
|
8253
8591
|
EnumOptions: {
|
|
8592
|
+
edition: string;
|
|
8254
8593
|
fields: {
|
|
8255
|
-
|
|
8594
|
+
allowAlias: {
|
|
8256
8595
|
type: string;
|
|
8257
8596
|
id: number;
|
|
8258
8597
|
};
|
|
@@ -8260,21 +8599,46 @@ declare const _default: {
|
|
|
8260
8599
|
type: string;
|
|
8261
8600
|
id: number;
|
|
8262
8601
|
};
|
|
8263
|
-
|
|
8602
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
8603
|
+
type: string;
|
|
8604
|
+
id: number;
|
|
8605
|
+
options: {
|
|
8606
|
+
deprecated: boolean;
|
|
8607
|
+
};
|
|
8608
|
+
};
|
|
8609
|
+
features: {
|
|
8610
|
+
type: string;
|
|
8611
|
+
id: number;
|
|
8612
|
+
};
|
|
8613
|
+
uninterpretedOption: {
|
|
8264
8614
|
rule: string;
|
|
8265
8615
|
type: string;
|
|
8266
8616
|
id: number;
|
|
8267
8617
|
};
|
|
8268
8618
|
};
|
|
8269
8619
|
extensions: number[][];
|
|
8620
|
+
reserved: number[][];
|
|
8270
8621
|
};
|
|
8271
8622
|
EnumValueOptions: {
|
|
8623
|
+
edition: string;
|
|
8272
8624
|
fields: {
|
|
8273
8625
|
deprecated: {
|
|
8274
8626
|
type: string;
|
|
8275
8627
|
id: number;
|
|
8276
8628
|
};
|
|
8277
|
-
|
|
8629
|
+
features: {
|
|
8630
|
+
type: string;
|
|
8631
|
+
id: number;
|
|
8632
|
+
};
|
|
8633
|
+
debugRedact: {
|
|
8634
|
+
type: string;
|
|
8635
|
+
id: number;
|
|
8636
|
+
};
|
|
8637
|
+
featureSupport: {
|
|
8638
|
+
type: string;
|
|
8639
|
+
id: number;
|
|
8640
|
+
};
|
|
8641
|
+
uninterpretedOption: {
|
|
8278
8642
|
rule: string;
|
|
8279
8643
|
type: string;
|
|
8280
8644
|
id: number;
|
|
@@ -8283,12 +8647,17 @@ declare const _default: {
|
|
|
8283
8647
|
extensions: number[][];
|
|
8284
8648
|
};
|
|
8285
8649
|
ServiceOptions: {
|
|
8650
|
+
edition: string;
|
|
8286
8651
|
fields: {
|
|
8652
|
+
features: {
|
|
8653
|
+
type: string;
|
|
8654
|
+
id: number;
|
|
8655
|
+
};
|
|
8287
8656
|
deprecated: {
|
|
8288
8657
|
type: string;
|
|
8289
8658
|
id: number;
|
|
8290
8659
|
};
|
|
8291
|
-
|
|
8660
|
+
uninterpretedOption: {
|
|
8292
8661
|
rule: string;
|
|
8293
8662
|
type: string;
|
|
8294
8663
|
id: number;
|
|
@@ -8297,47 +8666,69 @@ declare const _default: {
|
|
|
8297
8666
|
extensions: number[][];
|
|
8298
8667
|
};
|
|
8299
8668
|
MethodOptions: {
|
|
8669
|
+
edition: string;
|
|
8300
8670
|
fields: {
|
|
8301
8671
|
deprecated: {
|
|
8302
8672
|
type: string;
|
|
8303
8673
|
id: number;
|
|
8304
8674
|
};
|
|
8305
|
-
|
|
8675
|
+
idempotencyLevel: {
|
|
8676
|
+
type: string;
|
|
8677
|
+
id: number;
|
|
8678
|
+
options: {
|
|
8679
|
+
default: string;
|
|
8680
|
+
};
|
|
8681
|
+
};
|
|
8682
|
+
features: {
|
|
8683
|
+
type: string;
|
|
8684
|
+
id: number;
|
|
8685
|
+
};
|
|
8686
|
+
uninterpretedOption: {
|
|
8306
8687
|
rule: string;
|
|
8307
8688
|
type: string;
|
|
8308
8689
|
id: number;
|
|
8309
8690
|
};
|
|
8310
8691
|
};
|
|
8311
8692
|
extensions: number[][];
|
|
8693
|
+
nested: {
|
|
8694
|
+
IdempotencyLevel: {
|
|
8695
|
+
values: {
|
|
8696
|
+
IDEMPOTENCY_UNKNOWN: number;
|
|
8697
|
+
NO_SIDE_EFFECTS: number;
|
|
8698
|
+
IDEMPOTENT: number;
|
|
8699
|
+
};
|
|
8700
|
+
};
|
|
8701
|
+
};
|
|
8312
8702
|
};
|
|
8313
8703
|
UninterpretedOption: {
|
|
8704
|
+
edition: string;
|
|
8314
8705
|
fields: {
|
|
8315
8706
|
name: {
|
|
8316
8707
|
rule: string;
|
|
8317
8708
|
type: string;
|
|
8318
8709
|
id: number;
|
|
8319
8710
|
};
|
|
8320
|
-
|
|
8711
|
+
identifierValue: {
|
|
8321
8712
|
type: string;
|
|
8322
8713
|
id: number;
|
|
8323
8714
|
};
|
|
8324
|
-
|
|
8715
|
+
positiveIntValue: {
|
|
8325
8716
|
type: string;
|
|
8326
8717
|
id: number;
|
|
8327
8718
|
};
|
|
8328
|
-
|
|
8719
|
+
negativeIntValue: {
|
|
8329
8720
|
type: string;
|
|
8330
8721
|
id: number;
|
|
8331
8722
|
};
|
|
8332
|
-
|
|
8723
|
+
doubleValue: {
|
|
8333
8724
|
type: string;
|
|
8334
8725
|
id: number;
|
|
8335
8726
|
};
|
|
8336
|
-
|
|
8727
|
+
stringValue: {
|
|
8337
8728
|
type: string;
|
|
8338
8729
|
id: number;
|
|
8339
8730
|
};
|
|
8340
|
-
|
|
8731
|
+
aggregateValue: {
|
|
8341
8732
|
type: string;
|
|
8342
8733
|
id: number;
|
|
8343
8734
|
};
|
|
@@ -8345,12 +8736,12 @@ declare const _default: {
|
|
|
8345
8736
|
nested: {
|
|
8346
8737
|
NamePart: {
|
|
8347
8738
|
fields: {
|
|
8348
|
-
|
|
8739
|
+
namePart: {
|
|
8349
8740
|
rule: string;
|
|
8350
8741
|
type: string;
|
|
8351
8742
|
id: number;
|
|
8352
8743
|
};
|
|
8353
|
-
|
|
8744
|
+
isExtension: {
|
|
8354
8745
|
rule: string;
|
|
8355
8746
|
type: string;
|
|
8356
8747
|
id: number;
|
|
@@ -8359,7 +8750,207 @@ declare const _default: {
|
|
|
8359
8750
|
};
|
|
8360
8751
|
};
|
|
8361
8752
|
};
|
|
8753
|
+
FeatureSet: {
|
|
8754
|
+
edition: string;
|
|
8755
|
+
fields: {
|
|
8756
|
+
fieldPresence: {
|
|
8757
|
+
type: string;
|
|
8758
|
+
id: number;
|
|
8759
|
+
options: {
|
|
8760
|
+
retention: string;
|
|
8761
|
+
targets: string;
|
|
8762
|
+
"feature_support.edition_introduced": string;
|
|
8763
|
+
"edition_defaults.edition": string;
|
|
8764
|
+
"edition_defaults.value": string;
|
|
8765
|
+
};
|
|
8766
|
+
};
|
|
8767
|
+
enumType: {
|
|
8768
|
+
type: string;
|
|
8769
|
+
id: number;
|
|
8770
|
+
options: {
|
|
8771
|
+
retention: string;
|
|
8772
|
+
targets: string;
|
|
8773
|
+
"feature_support.edition_introduced": string;
|
|
8774
|
+
"edition_defaults.edition": string;
|
|
8775
|
+
"edition_defaults.value": string;
|
|
8776
|
+
};
|
|
8777
|
+
};
|
|
8778
|
+
repeatedFieldEncoding: {
|
|
8779
|
+
type: string;
|
|
8780
|
+
id: number;
|
|
8781
|
+
options: {
|
|
8782
|
+
retention: string;
|
|
8783
|
+
targets: string;
|
|
8784
|
+
"feature_support.edition_introduced": string;
|
|
8785
|
+
"edition_defaults.edition": string;
|
|
8786
|
+
"edition_defaults.value": string;
|
|
8787
|
+
};
|
|
8788
|
+
};
|
|
8789
|
+
utf8Validation: {
|
|
8790
|
+
type: string;
|
|
8791
|
+
id: number;
|
|
8792
|
+
options: {
|
|
8793
|
+
retention: string;
|
|
8794
|
+
targets: string;
|
|
8795
|
+
"feature_support.edition_introduced": string;
|
|
8796
|
+
"edition_defaults.edition": string;
|
|
8797
|
+
"edition_defaults.value": string;
|
|
8798
|
+
};
|
|
8799
|
+
};
|
|
8800
|
+
messageEncoding: {
|
|
8801
|
+
type: string;
|
|
8802
|
+
id: number;
|
|
8803
|
+
options: {
|
|
8804
|
+
retention: string;
|
|
8805
|
+
targets: string;
|
|
8806
|
+
"feature_support.edition_introduced": string;
|
|
8807
|
+
"edition_defaults.edition": string;
|
|
8808
|
+
"edition_defaults.value": string;
|
|
8809
|
+
};
|
|
8810
|
+
};
|
|
8811
|
+
jsonFormat: {
|
|
8812
|
+
type: string;
|
|
8813
|
+
id: number;
|
|
8814
|
+
options: {
|
|
8815
|
+
retention: string;
|
|
8816
|
+
targets: string;
|
|
8817
|
+
"feature_support.edition_introduced": string;
|
|
8818
|
+
"edition_defaults.edition": string;
|
|
8819
|
+
"edition_defaults.value": string;
|
|
8820
|
+
};
|
|
8821
|
+
};
|
|
8822
|
+
enforceNamingStyle: {
|
|
8823
|
+
type: string;
|
|
8824
|
+
id: number;
|
|
8825
|
+
options: {
|
|
8826
|
+
retention: string;
|
|
8827
|
+
targets: string;
|
|
8828
|
+
"feature_support.edition_introduced": string;
|
|
8829
|
+
"edition_defaults.edition": string;
|
|
8830
|
+
"edition_defaults.value": string;
|
|
8831
|
+
};
|
|
8832
|
+
};
|
|
8833
|
+
defaultSymbolVisibility: {
|
|
8834
|
+
type: string;
|
|
8835
|
+
id: number;
|
|
8836
|
+
options: {
|
|
8837
|
+
retention: string;
|
|
8838
|
+
targets: string;
|
|
8839
|
+
"feature_support.edition_introduced": string;
|
|
8840
|
+
"edition_defaults.edition": string;
|
|
8841
|
+
"edition_defaults.value": string;
|
|
8842
|
+
};
|
|
8843
|
+
};
|
|
8844
|
+
};
|
|
8845
|
+
extensions: number[][];
|
|
8846
|
+
reserved: number[][];
|
|
8847
|
+
nested: {
|
|
8848
|
+
FieldPresence: {
|
|
8849
|
+
values: {
|
|
8850
|
+
FIELD_PRESENCE_UNKNOWN: number;
|
|
8851
|
+
EXPLICIT: number;
|
|
8852
|
+
IMPLICIT: number;
|
|
8853
|
+
LEGACY_REQUIRED: number;
|
|
8854
|
+
};
|
|
8855
|
+
};
|
|
8856
|
+
EnumType: {
|
|
8857
|
+
values: {
|
|
8858
|
+
ENUM_TYPE_UNKNOWN: number;
|
|
8859
|
+
OPEN: number;
|
|
8860
|
+
CLOSED: number;
|
|
8861
|
+
};
|
|
8862
|
+
};
|
|
8863
|
+
RepeatedFieldEncoding: {
|
|
8864
|
+
values: {
|
|
8865
|
+
REPEATED_FIELD_ENCODING_UNKNOWN: number;
|
|
8866
|
+
PACKED: number;
|
|
8867
|
+
EXPANDED: number;
|
|
8868
|
+
};
|
|
8869
|
+
};
|
|
8870
|
+
Utf8Validation: {
|
|
8871
|
+
values: {
|
|
8872
|
+
UTF8_VALIDATION_UNKNOWN: number;
|
|
8873
|
+
VERIFY: number;
|
|
8874
|
+
NONE: number;
|
|
8875
|
+
};
|
|
8876
|
+
};
|
|
8877
|
+
MessageEncoding: {
|
|
8878
|
+
values: {
|
|
8879
|
+
MESSAGE_ENCODING_UNKNOWN: number;
|
|
8880
|
+
LENGTH_PREFIXED: number;
|
|
8881
|
+
DELIMITED: number;
|
|
8882
|
+
};
|
|
8883
|
+
};
|
|
8884
|
+
JsonFormat: {
|
|
8885
|
+
values: {
|
|
8886
|
+
JSON_FORMAT_UNKNOWN: number;
|
|
8887
|
+
ALLOW: number;
|
|
8888
|
+
LEGACY_BEST_EFFORT: number;
|
|
8889
|
+
};
|
|
8890
|
+
};
|
|
8891
|
+
EnforceNamingStyle: {
|
|
8892
|
+
values: {
|
|
8893
|
+
ENFORCE_NAMING_STYLE_UNKNOWN: number;
|
|
8894
|
+
STYLE2024: number;
|
|
8895
|
+
STYLE_LEGACY: number;
|
|
8896
|
+
};
|
|
8897
|
+
};
|
|
8898
|
+
VisibilityFeature: {
|
|
8899
|
+
fields: {};
|
|
8900
|
+
reserved: number[][];
|
|
8901
|
+
nested: {
|
|
8902
|
+
DefaultSymbolVisibility: {
|
|
8903
|
+
values: {
|
|
8904
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN: number;
|
|
8905
|
+
EXPORT_ALL: number;
|
|
8906
|
+
EXPORT_TOP_LEVEL: number;
|
|
8907
|
+
LOCAL_ALL: number;
|
|
8908
|
+
STRICT: number;
|
|
8909
|
+
};
|
|
8910
|
+
};
|
|
8911
|
+
};
|
|
8912
|
+
};
|
|
8913
|
+
};
|
|
8914
|
+
};
|
|
8915
|
+
FeatureSetDefaults: {
|
|
8916
|
+
edition: string;
|
|
8917
|
+
fields: {
|
|
8918
|
+
defaults: {
|
|
8919
|
+
rule: string;
|
|
8920
|
+
type: string;
|
|
8921
|
+
id: number;
|
|
8922
|
+
};
|
|
8923
|
+
minimumEdition: {
|
|
8924
|
+
type: string;
|
|
8925
|
+
id: number;
|
|
8926
|
+
};
|
|
8927
|
+
maximumEdition: {
|
|
8928
|
+
type: string;
|
|
8929
|
+
id: number;
|
|
8930
|
+
};
|
|
8931
|
+
};
|
|
8932
|
+
nested: {
|
|
8933
|
+
FeatureSetEditionDefault: {
|
|
8934
|
+
fields: {
|
|
8935
|
+
edition: {
|
|
8936
|
+
type: string;
|
|
8937
|
+
id: number;
|
|
8938
|
+
};
|
|
8939
|
+
overridableFeatures: {
|
|
8940
|
+
type: string;
|
|
8941
|
+
id: number;
|
|
8942
|
+
};
|
|
8943
|
+
fixedFeatures: {
|
|
8944
|
+
type: string;
|
|
8945
|
+
id: number;
|
|
8946
|
+
};
|
|
8947
|
+
};
|
|
8948
|
+
reserved: (string | number[])[];
|
|
8949
|
+
};
|
|
8950
|
+
};
|
|
8951
|
+
};
|
|
8362
8952
|
SourceCodeInfo: {
|
|
8953
|
+
edition: string;
|
|
8363
8954
|
fields: {
|
|
8364
8955
|
location: {
|
|
8365
8956
|
rule: string;
|
|
@@ -8367,6 +8958,7 @@ declare const _default: {
|
|
|
8367
8958
|
id: number;
|
|
8368
8959
|
};
|
|
8369
8960
|
};
|
|
8961
|
+
extensions: number[][];
|
|
8370
8962
|
nested: {
|
|
8371
8963
|
Location: {
|
|
8372
8964
|
fields: {
|
|
@@ -8374,21 +8966,27 @@ declare const _default: {
|
|
|
8374
8966
|
rule: string;
|
|
8375
8967
|
type: string;
|
|
8376
8968
|
id: number;
|
|
8969
|
+
options: {
|
|
8970
|
+
packed: boolean;
|
|
8971
|
+
};
|
|
8377
8972
|
};
|
|
8378
8973
|
span: {
|
|
8379
8974
|
rule: string;
|
|
8380
8975
|
type: string;
|
|
8381
8976
|
id: number;
|
|
8977
|
+
options: {
|
|
8978
|
+
packed: boolean;
|
|
8979
|
+
};
|
|
8382
8980
|
};
|
|
8383
|
-
|
|
8981
|
+
leadingComments: {
|
|
8384
8982
|
type: string;
|
|
8385
8983
|
id: number;
|
|
8386
8984
|
};
|
|
8387
|
-
|
|
8985
|
+
trailingComments: {
|
|
8388
8986
|
type: string;
|
|
8389
8987
|
id: number;
|
|
8390
8988
|
};
|
|
8391
|
-
|
|
8989
|
+
leadingDetachedComments: {
|
|
8392
8990
|
rule: string;
|
|
8393
8991
|
type: string;
|
|
8394
8992
|
id: number;
|
|
@@ -8398,6 +8996,7 @@ declare const _default: {
|
|
|
8398
8996
|
};
|
|
8399
8997
|
};
|
|
8400
8998
|
GeneratedCodeInfo: {
|
|
8999
|
+
edition: string;
|
|
8401
9000
|
fields: {
|
|
8402
9001
|
annotation: {
|
|
8403
9002
|
rule: string;
|
|
@@ -8412,8 +9011,11 @@ declare const _default: {
|
|
|
8412
9011
|
rule: string;
|
|
8413
9012
|
type: string;
|
|
8414
9013
|
id: number;
|
|
9014
|
+
options: {
|
|
9015
|
+
packed: boolean;
|
|
9016
|
+
};
|
|
8415
9017
|
};
|
|
8416
|
-
|
|
9018
|
+
sourceFile: {
|
|
8417
9019
|
type: string;
|
|
8418
9020
|
id: number;
|
|
8419
9021
|
};
|
|
@@ -8425,10 +9027,31 @@ declare const _default: {
|
|
|
8425
9027
|
type: string;
|
|
8426
9028
|
id: number;
|
|
8427
9029
|
};
|
|
9030
|
+
semantic: {
|
|
9031
|
+
type: string;
|
|
9032
|
+
id: number;
|
|
9033
|
+
};
|
|
9034
|
+
};
|
|
9035
|
+
nested: {
|
|
9036
|
+
Semantic: {
|
|
9037
|
+
values: {
|
|
9038
|
+
NONE: number;
|
|
9039
|
+
SET: number;
|
|
9040
|
+
ALIAS: number;
|
|
9041
|
+
};
|
|
9042
|
+
};
|
|
8428
9043
|
};
|
|
8429
9044
|
};
|
|
8430
9045
|
};
|
|
8431
9046
|
};
|
|
9047
|
+
SymbolVisibility: {
|
|
9048
|
+
edition: string;
|
|
9049
|
+
values: {
|
|
9050
|
+
VISIBILITY_UNSET: number;
|
|
9051
|
+
VISIBILITY_LOCAL: number;
|
|
9052
|
+
VISIBILITY_EXPORT: number;
|
|
9053
|
+
};
|
|
9054
|
+
};
|
|
8432
9055
|
};
|
|
8433
9056
|
};
|
|
8434
9057
|
};
|