@zilliz/milvus2-sdk-node 2.6.13 → 2.6.15
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/const/milvus.d.ts +5 -0
- package/dist/milvus/const/milvus.js +8 -1
- package/dist/milvus/const/milvus.js.map +1 -1
- package/dist/milvus/grpc/Data.d.ts +1 -0
- package/dist/milvus/grpc/Data.js +28 -5
- 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/proto-json/milvus.base.d.ts +593 -8
- package/dist/milvus/proto-json/milvus.base.js +685 -17
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +649 -64
- package/dist/milvus/proto-json/milvus.js +741 -73
- package/dist/milvus/proto-json/milvus.js.map +1 -1
- package/dist/milvus/proto-json/schema.base.d.ts +588 -8
- package/dist/milvus/proto-json/schema.base.js +680 -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/milvus/types/Insert.d.ts +8 -1
- package/dist/milvus/types/Insert.js.map +1 -1
- package/dist/sdk.json +1 -1
- package/package.json +6 -3
|
@@ -2051,6 +2051,11 @@ declare const _default: {
|
|
|
2051
2051
|
proto3_optional: boolean;
|
|
2052
2052
|
};
|
|
2053
2053
|
};
|
|
2054
|
+
field_ops: {
|
|
2055
|
+
rule: string;
|
|
2056
|
+
type: string;
|
|
2057
|
+
id: number;
|
|
2058
|
+
};
|
|
2054
2059
|
};
|
|
2055
2060
|
};
|
|
2056
2061
|
MutationResult: {
|
|
@@ -5752,6 +5757,10 @@ declare const _default: {
|
|
|
5752
5757
|
type: string;
|
|
5753
5758
|
id: number;
|
|
5754
5759
|
};
|
|
5760
|
+
element_level: {
|
|
5761
|
+
type: string;
|
|
5762
|
+
id: number;
|
|
5763
|
+
};
|
|
5755
5764
|
};
|
|
5756
5765
|
};
|
|
5757
5766
|
PlaceholderGroup: {
|
|
@@ -7005,6 +7014,27 @@ declare const _default: {
|
|
|
7005
7014
|
};
|
|
7006
7015
|
};
|
|
7007
7016
|
};
|
|
7017
|
+
FieldPartialUpdateOp: {
|
|
7018
|
+
fields: {
|
|
7019
|
+
field_name: {
|
|
7020
|
+
type: string;
|
|
7021
|
+
id: number;
|
|
7022
|
+
};
|
|
7023
|
+
op: {
|
|
7024
|
+
type: string;
|
|
7025
|
+
id: number;
|
|
7026
|
+
};
|
|
7027
|
+
};
|
|
7028
|
+
nested: {
|
|
7029
|
+
OpType: {
|
|
7030
|
+
values: {
|
|
7031
|
+
REPLACE: number;
|
|
7032
|
+
ARRAY_APPEND: number;
|
|
7033
|
+
ARRAY_REMOVE: number;
|
|
7034
|
+
};
|
|
7035
|
+
};
|
|
7036
|
+
};
|
|
7037
|
+
};
|
|
7008
7038
|
FieldData: {
|
|
7009
7039
|
oneofs: {
|
|
7010
7040
|
field: {
|
|
@@ -7149,6 +7179,10 @@ declare const _default: {
|
|
|
7149
7179
|
type: string;
|
|
7150
7180
|
id: number;
|
|
7151
7181
|
};
|
|
7182
|
+
element_indices: {
|
|
7183
|
+
type: string;
|
|
7184
|
+
id: number;
|
|
7185
|
+
};
|
|
7152
7186
|
};
|
|
7153
7187
|
};
|
|
7154
7188
|
VectorClusteringInfo: {
|
|
@@ -7804,6 +7838,7 @@ declare const _default: {
|
|
|
7804
7838
|
protobuf: {
|
|
7805
7839
|
nested: {
|
|
7806
7840
|
FileDescriptorSet: {
|
|
7841
|
+
edition: string;
|
|
7807
7842
|
fields: {
|
|
7808
7843
|
file: {
|
|
7809
7844
|
rule: string;
|
|
@@ -7811,8 +7846,27 @@ declare const _default: {
|
|
|
7811
7846
|
id: number;
|
|
7812
7847
|
};
|
|
7813
7848
|
};
|
|
7849
|
+
extensions: number[][];
|
|
7850
|
+
};
|
|
7851
|
+
Edition: {
|
|
7852
|
+
edition: string;
|
|
7853
|
+
values: {
|
|
7854
|
+
EDITION_UNKNOWN: number;
|
|
7855
|
+
EDITION_LEGACY: number;
|
|
7856
|
+
EDITION_PROTO2: number;
|
|
7857
|
+
EDITION_PROTO3: number;
|
|
7858
|
+
EDITION_2023: number;
|
|
7859
|
+
EDITION_2024: number;
|
|
7860
|
+
EDITION_1_TEST_ONLY: number;
|
|
7861
|
+
EDITION_2_TEST_ONLY: number;
|
|
7862
|
+
EDITION_99997_TEST_ONLY: number;
|
|
7863
|
+
EDITION_99998_TEST_ONLY: number;
|
|
7864
|
+
EDITION_99999_TEST_ONLY: number;
|
|
7865
|
+
EDITION_MAX: number;
|
|
7866
|
+
};
|
|
7814
7867
|
};
|
|
7815
7868
|
FileDescriptorProto: {
|
|
7869
|
+
edition: string;
|
|
7816
7870
|
fields: {
|
|
7817
7871
|
name: {
|
|
7818
7872
|
type: string;
|
|
@@ -7827,28 +7881,27 @@ declare const _default: {
|
|
|
7827
7881
|
type: string;
|
|
7828
7882
|
id: number;
|
|
7829
7883
|
};
|
|
7830
|
-
|
|
7884
|
+
publicDependency: {
|
|
7831
7885
|
rule: string;
|
|
7832
7886
|
type: string;
|
|
7833
7887
|
id: number;
|
|
7834
|
-
options: {
|
|
7835
|
-
packed: boolean;
|
|
7836
|
-
};
|
|
7837
7888
|
};
|
|
7838
|
-
|
|
7889
|
+
weakDependency: {
|
|
7890
|
+
rule: string;
|
|
7891
|
+
type: string;
|
|
7892
|
+
id: number;
|
|
7893
|
+
};
|
|
7894
|
+
optionDependency: {
|
|
7839
7895
|
rule: string;
|
|
7840
7896
|
type: string;
|
|
7841
7897
|
id: number;
|
|
7842
|
-
options: {
|
|
7843
|
-
packed: boolean;
|
|
7844
|
-
};
|
|
7845
7898
|
};
|
|
7846
|
-
|
|
7899
|
+
messageType: {
|
|
7847
7900
|
rule: string;
|
|
7848
7901
|
type: string;
|
|
7849
7902
|
id: number;
|
|
7850
7903
|
};
|
|
7851
|
-
|
|
7904
|
+
enumType: {
|
|
7852
7905
|
rule: string;
|
|
7853
7906
|
type: string;
|
|
7854
7907
|
id: number;
|
|
@@ -7867,7 +7920,7 @@ declare const _default: {
|
|
|
7867
7920
|
type: string;
|
|
7868
7921
|
id: number;
|
|
7869
7922
|
};
|
|
7870
|
-
|
|
7923
|
+
sourceCodeInfo: {
|
|
7871
7924
|
type: string;
|
|
7872
7925
|
id: number;
|
|
7873
7926
|
};
|
|
@@ -7875,9 +7928,14 @@ declare const _default: {
|
|
|
7875
7928
|
type: string;
|
|
7876
7929
|
id: number;
|
|
7877
7930
|
};
|
|
7931
|
+
edition: {
|
|
7932
|
+
type: string;
|
|
7933
|
+
id: number;
|
|
7934
|
+
};
|
|
7878
7935
|
};
|
|
7879
7936
|
};
|
|
7880
7937
|
DescriptorProto: {
|
|
7938
|
+
edition: string;
|
|
7881
7939
|
fields: {
|
|
7882
7940
|
name: {
|
|
7883
7941
|
type: string;
|
|
@@ -7893,22 +7951,22 @@ declare const _default: {
|
|
|
7893
7951
|
type: string;
|
|
7894
7952
|
id: number;
|
|
7895
7953
|
};
|
|
7896
|
-
|
|
7954
|
+
nestedType: {
|
|
7897
7955
|
rule: string;
|
|
7898
7956
|
type: string;
|
|
7899
7957
|
id: number;
|
|
7900
7958
|
};
|
|
7901
|
-
|
|
7959
|
+
enumType: {
|
|
7902
7960
|
rule: string;
|
|
7903
7961
|
type: string;
|
|
7904
7962
|
id: number;
|
|
7905
7963
|
};
|
|
7906
|
-
|
|
7964
|
+
extensionRange: {
|
|
7907
7965
|
rule: string;
|
|
7908
7966
|
type: string;
|
|
7909
7967
|
id: number;
|
|
7910
7968
|
};
|
|
7911
|
-
|
|
7969
|
+
oneofDecl: {
|
|
7912
7970
|
rule: string;
|
|
7913
7971
|
type: string;
|
|
7914
7972
|
id: number;
|
|
@@ -7917,16 +7975,20 @@ declare const _default: {
|
|
|
7917
7975
|
type: string;
|
|
7918
7976
|
id: number;
|
|
7919
7977
|
};
|
|
7920
|
-
|
|
7978
|
+
reservedRange: {
|
|
7921
7979
|
rule: string;
|
|
7922
7980
|
type: string;
|
|
7923
7981
|
id: number;
|
|
7924
7982
|
};
|
|
7925
|
-
|
|
7983
|
+
reservedName: {
|
|
7926
7984
|
rule: string;
|
|
7927
7985
|
type: string;
|
|
7928
7986
|
id: number;
|
|
7929
7987
|
};
|
|
7988
|
+
visibility: {
|
|
7989
|
+
type: string;
|
|
7990
|
+
id: number;
|
|
7991
|
+
};
|
|
7930
7992
|
};
|
|
7931
7993
|
nested: {
|
|
7932
7994
|
ExtensionRange: {
|
|
@@ -7939,6 +8001,10 @@ declare const _default: {
|
|
|
7939
8001
|
type: string;
|
|
7940
8002
|
id: number;
|
|
7941
8003
|
};
|
|
8004
|
+
options: {
|
|
8005
|
+
type: string;
|
|
8006
|
+
id: number;
|
|
8007
|
+
};
|
|
7942
8008
|
};
|
|
7943
8009
|
};
|
|
7944
8010
|
ReservedRange: {
|
|
@@ -7955,7 +8021,72 @@ declare const _default: {
|
|
|
7955
8021
|
};
|
|
7956
8022
|
};
|
|
7957
8023
|
};
|
|
8024
|
+
ExtensionRangeOptions: {
|
|
8025
|
+
edition: string;
|
|
8026
|
+
fields: {
|
|
8027
|
+
uninterpretedOption: {
|
|
8028
|
+
rule: string;
|
|
8029
|
+
type: string;
|
|
8030
|
+
id: number;
|
|
8031
|
+
};
|
|
8032
|
+
declaration: {
|
|
8033
|
+
rule: string;
|
|
8034
|
+
type: string;
|
|
8035
|
+
id: number;
|
|
8036
|
+
options: {
|
|
8037
|
+
retention: string;
|
|
8038
|
+
};
|
|
8039
|
+
};
|
|
8040
|
+
features: {
|
|
8041
|
+
type: string;
|
|
8042
|
+
id: number;
|
|
8043
|
+
};
|
|
8044
|
+
verification: {
|
|
8045
|
+
type: string;
|
|
8046
|
+
id: number;
|
|
8047
|
+
options: {
|
|
8048
|
+
default: string;
|
|
8049
|
+
retention: string;
|
|
8050
|
+
};
|
|
8051
|
+
};
|
|
8052
|
+
};
|
|
8053
|
+
extensions: number[][];
|
|
8054
|
+
nested: {
|
|
8055
|
+
Declaration: {
|
|
8056
|
+
fields: {
|
|
8057
|
+
number: {
|
|
8058
|
+
type: string;
|
|
8059
|
+
id: number;
|
|
8060
|
+
};
|
|
8061
|
+
fullName: {
|
|
8062
|
+
type: string;
|
|
8063
|
+
id: number;
|
|
8064
|
+
};
|
|
8065
|
+
type: {
|
|
8066
|
+
type: string;
|
|
8067
|
+
id: number;
|
|
8068
|
+
};
|
|
8069
|
+
reserved: {
|
|
8070
|
+
type: string;
|
|
8071
|
+
id: number;
|
|
8072
|
+
};
|
|
8073
|
+
repeated: {
|
|
8074
|
+
type: string;
|
|
8075
|
+
id: number;
|
|
8076
|
+
};
|
|
8077
|
+
};
|
|
8078
|
+
reserved: number[][];
|
|
8079
|
+
};
|
|
8080
|
+
VerificationState: {
|
|
8081
|
+
values: {
|
|
8082
|
+
DECLARATION: number;
|
|
8083
|
+
UNVERIFIED: number;
|
|
8084
|
+
};
|
|
8085
|
+
};
|
|
8086
|
+
};
|
|
8087
|
+
};
|
|
7958
8088
|
FieldDescriptorProto: {
|
|
8089
|
+
edition: string;
|
|
7959
8090
|
fields: {
|
|
7960
8091
|
name: {
|
|
7961
8092
|
type: string;
|
|
@@ -7973,7 +8104,7 @@ declare const _default: {
|
|
|
7973
8104
|
type: string;
|
|
7974
8105
|
id: number;
|
|
7975
8106
|
};
|
|
7976
|
-
|
|
8107
|
+
typeName: {
|
|
7977
8108
|
type: string;
|
|
7978
8109
|
id: number;
|
|
7979
8110
|
};
|
|
@@ -7981,15 +8112,15 @@ declare const _default: {
|
|
|
7981
8112
|
type: string;
|
|
7982
8113
|
id: number;
|
|
7983
8114
|
};
|
|
7984
|
-
|
|
8115
|
+
defaultValue: {
|
|
7985
8116
|
type: string;
|
|
7986
8117
|
id: number;
|
|
7987
8118
|
};
|
|
7988
|
-
|
|
8119
|
+
oneofIndex: {
|
|
7989
8120
|
type: string;
|
|
7990
8121
|
id: number;
|
|
7991
8122
|
};
|
|
7992
|
-
|
|
8123
|
+
jsonName: {
|
|
7993
8124
|
type: string;
|
|
7994
8125
|
id: number;
|
|
7995
8126
|
};
|
|
@@ -7997,6 +8128,10 @@ declare const _default: {
|
|
|
7997
8128
|
type: string;
|
|
7998
8129
|
id: number;
|
|
7999
8130
|
};
|
|
8131
|
+
proto3Optional: {
|
|
8132
|
+
type: string;
|
|
8133
|
+
id: number;
|
|
8134
|
+
};
|
|
8000
8135
|
};
|
|
8001
8136
|
nested: {
|
|
8002
8137
|
Type: {
|
|
@@ -8024,13 +8159,14 @@ declare const _default: {
|
|
|
8024
8159
|
Label: {
|
|
8025
8160
|
values: {
|
|
8026
8161
|
LABEL_OPTIONAL: number;
|
|
8027
|
-
LABEL_REQUIRED: number;
|
|
8028
8162
|
LABEL_REPEATED: number;
|
|
8163
|
+
LABEL_REQUIRED: number;
|
|
8029
8164
|
};
|
|
8030
8165
|
};
|
|
8031
8166
|
};
|
|
8032
8167
|
};
|
|
8033
8168
|
OneofDescriptorProto: {
|
|
8169
|
+
edition: string;
|
|
8034
8170
|
fields: {
|
|
8035
8171
|
name: {
|
|
8036
8172
|
type: string;
|
|
@@ -8043,6 +8179,7 @@ declare const _default: {
|
|
|
8043
8179
|
};
|
|
8044
8180
|
};
|
|
8045
8181
|
EnumDescriptorProto: {
|
|
8182
|
+
edition: string;
|
|
8046
8183
|
fields: {
|
|
8047
8184
|
name: {
|
|
8048
8185
|
type: string;
|
|
@@ -8057,9 +8194,38 @@ declare const _default: {
|
|
|
8057
8194
|
type: string;
|
|
8058
8195
|
id: number;
|
|
8059
8196
|
};
|
|
8197
|
+
reservedRange: {
|
|
8198
|
+
rule: string;
|
|
8199
|
+
type: string;
|
|
8200
|
+
id: number;
|
|
8201
|
+
};
|
|
8202
|
+
reservedName: {
|
|
8203
|
+
rule: string;
|
|
8204
|
+
type: string;
|
|
8205
|
+
id: number;
|
|
8206
|
+
};
|
|
8207
|
+
visibility: {
|
|
8208
|
+
type: string;
|
|
8209
|
+
id: number;
|
|
8210
|
+
};
|
|
8211
|
+
};
|
|
8212
|
+
nested: {
|
|
8213
|
+
EnumReservedRange: {
|
|
8214
|
+
fields: {
|
|
8215
|
+
start: {
|
|
8216
|
+
type: string;
|
|
8217
|
+
id: number;
|
|
8218
|
+
};
|
|
8219
|
+
end: {
|
|
8220
|
+
type: string;
|
|
8221
|
+
id: number;
|
|
8222
|
+
};
|
|
8223
|
+
};
|
|
8224
|
+
};
|
|
8060
8225
|
};
|
|
8061
8226
|
};
|
|
8062
8227
|
EnumValueDescriptorProto: {
|
|
8228
|
+
edition: string;
|
|
8063
8229
|
fields: {
|
|
8064
8230
|
name: {
|
|
8065
8231
|
type: string;
|
|
@@ -8076,6 +8242,7 @@ declare const _default: {
|
|
|
8076
8242
|
};
|
|
8077
8243
|
};
|
|
8078
8244
|
ServiceDescriptorProto: {
|
|
8245
|
+
edition: string;
|
|
8079
8246
|
fields: {
|
|
8080
8247
|
name: {
|
|
8081
8248
|
type: string;
|
|
@@ -8093,16 +8260,17 @@ declare const _default: {
|
|
|
8093
8260
|
};
|
|
8094
8261
|
};
|
|
8095
8262
|
MethodDescriptorProto: {
|
|
8263
|
+
edition: string;
|
|
8096
8264
|
fields: {
|
|
8097
8265
|
name: {
|
|
8098
8266
|
type: string;
|
|
8099
8267
|
id: number;
|
|
8100
8268
|
};
|
|
8101
|
-
|
|
8269
|
+
inputType: {
|
|
8102
8270
|
type: string;
|
|
8103
8271
|
id: number;
|
|
8104
8272
|
};
|
|
8105
|
-
|
|
8273
|
+
outputType: {
|
|
8106
8274
|
type: string;
|
|
8107
8275
|
id: number;
|
|
8108
8276
|
};
|
|
@@ -8110,61 +8278,62 @@ declare const _default: {
|
|
|
8110
8278
|
type: string;
|
|
8111
8279
|
id: number;
|
|
8112
8280
|
};
|
|
8113
|
-
|
|
8281
|
+
clientStreaming: {
|
|
8114
8282
|
type: string;
|
|
8115
8283
|
id: number;
|
|
8116
8284
|
};
|
|
8117
|
-
|
|
8285
|
+
serverStreaming: {
|
|
8118
8286
|
type: string;
|
|
8119
8287
|
id: number;
|
|
8120
8288
|
};
|
|
8121
8289
|
};
|
|
8122
8290
|
};
|
|
8123
8291
|
FileOptions: {
|
|
8292
|
+
edition: string;
|
|
8124
8293
|
fields: {
|
|
8125
|
-
|
|
8294
|
+
javaPackage: {
|
|
8126
8295
|
type: string;
|
|
8127
8296
|
id: number;
|
|
8128
8297
|
};
|
|
8129
|
-
|
|
8298
|
+
javaOuterClassname: {
|
|
8130
8299
|
type: string;
|
|
8131
8300
|
id: number;
|
|
8132
8301
|
};
|
|
8133
|
-
|
|
8302
|
+
javaMultipleFiles: {
|
|
8134
8303
|
type: string;
|
|
8135
8304
|
id: number;
|
|
8136
8305
|
};
|
|
8137
|
-
|
|
8306
|
+
javaGenerateEqualsAndHash: {
|
|
8138
8307
|
type: string;
|
|
8139
8308
|
id: number;
|
|
8140
8309
|
options: {
|
|
8141
8310
|
deprecated: boolean;
|
|
8142
8311
|
};
|
|
8143
8312
|
};
|
|
8144
|
-
|
|
8313
|
+
javaStringCheckUtf8: {
|
|
8145
8314
|
type: string;
|
|
8146
8315
|
id: number;
|
|
8147
8316
|
};
|
|
8148
|
-
|
|
8317
|
+
optimizeFor: {
|
|
8149
8318
|
type: string;
|
|
8150
8319
|
id: number;
|
|
8151
8320
|
options: {
|
|
8152
8321
|
default: string;
|
|
8153
8322
|
};
|
|
8154
8323
|
};
|
|
8155
|
-
|
|
8324
|
+
goPackage: {
|
|
8156
8325
|
type: string;
|
|
8157
8326
|
id: number;
|
|
8158
8327
|
};
|
|
8159
|
-
|
|
8328
|
+
ccGenericServices: {
|
|
8160
8329
|
type: string;
|
|
8161
8330
|
id: number;
|
|
8162
8331
|
};
|
|
8163
|
-
|
|
8332
|
+
javaGenericServices: {
|
|
8164
8333
|
type: string;
|
|
8165
8334
|
id: number;
|
|
8166
8335
|
};
|
|
8167
|
-
|
|
8336
|
+
pyGenericServices: {
|
|
8168
8337
|
type: string;
|
|
8169
8338
|
id: number;
|
|
8170
8339
|
};
|
|
@@ -8172,26 +8341,53 @@ declare const _default: {
|
|
|
8172
8341
|
type: string;
|
|
8173
8342
|
id: number;
|
|
8174
8343
|
};
|
|
8175
|
-
|
|
8344
|
+
ccEnableArenas: {
|
|
8345
|
+
type: string;
|
|
8346
|
+
id: number;
|
|
8347
|
+
options: {
|
|
8348
|
+
default: boolean;
|
|
8349
|
+
};
|
|
8350
|
+
};
|
|
8351
|
+
objcClassPrefix: {
|
|
8352
|
+
type: string;
|
|
8353
|
+
id: number;
|
|
8354
|
+
};
|
|
8355
|
+
csharpNamespace: {
|
|
8356
|
+
type: string;
|
|
8357
|
+
id: number;
|
|
8358
|
+
};
|
|
8359
|
+
swiftPrefix: {
|
|
8360
|
+
type: string;
|
|
8361
|
+
id: number;
|
|
8362
|
+
};
|
|
8363
|
+
phpClassPrefix: {
|
|
8364
|
+
type: string;
|
|
8365
|
+
id: number;
|
|
8366
|
+
};
|
|
8367
|
+
phpNamespace: {
|
|
8368
|
+
type: string;
|
|
8369
|
+
id: number;
|
|
8370
|
+
};
|
|
8371
|
+
phpMetadataNamespace: {
|
|
8176
8372
|
type: string;
|
|
8177
8373
|
id: number;
|
|
8178
8374
|
};
|
|
8179
|
-
|
|
8375
|
+
rubyPackage: {
|
|
8180
8376
|
type: string;
|
|
8181
8377
|
id: number;
|
|
8182
8378
|
};
|
|
8183
|
-
|
|
8379
|
+
features: {
|
|
8184
8380
|
type: string;
|
|
8185
8381
|
id: number;
|
|
8186
8382
|
};
|
|
8187
|
-
|
|
8383
|
+
uninterpretedOption: {
|
|
8188
8384
|
rule: string;
|
|
8189
8385
|
type: string;
|
|
8190
8386
|
id: number;
|
|
8191
8387
|
};
|
|
8192
8388
|
};
|
|
8193
8389
|
extensions: number[][];
|
|
8194
|
-
reserved: number[][];
|
|
8390
|
+
reserved: (string | number[])[];
|
|
8195
8391
|
nested: {
|
|
8196
8392
|
OptimizeMode: {
|
|
8197
8393
|
values: {
|
|
@@ -8203,12 +8399,13 @@ declare const _default: {
|
|
|
8203
8399
|
};
|
|
8204
8400
|
};
|
|
8205
8401
|
MessageOptions: {
|
|
8402
|
+
edition: string;
|
|
8206
8403
|
fields: {
|
|
8207
|
-
|
|
8404
|
+
messageSetWireFormat: {
|
|
8208
8405
|
type: string;
|
|
8209
8406
|
id: number;
|
|
8210
8407
|
};
|
|
8211
|
-
|
|
8408
|
+
noStandardDescriptorAccessor: {
|
|
8212
8409
|
type: string;
|
|
8213
8410
|
id: number;
|
|
8214
8411
|
};
|
|
@@ -8216,11 +8413,22 @@ declare const _default: {
|
|
|
8216
8413
|
type: string;
|
|
8217
8414
|
id: number;
|
|
8218
8415
|
};
|
|
8219
|
-
|
|
8416
|
+
mapEntry: {
|
|
8220
8417
|
type: string;
|
|
8221
8418
|
id: number;
|
|
8222
8419
|
};
|
|
8223
|
-
|
|
8420
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
8421
|
+
type: string;
|
|
8422
|
+
id: number;
|
|
8423
|
+
options: {
|
|
8424
|
+
deprecated: boolean;
|
|
8425
|
+
};
|
|
8426
|
+
};
|
|
8427
|
+
features: {
|
|
8428
|
+
type: string;
|
|
8429
|
+
id: number;
|
|
8430
|
+
};
|
|
8431
|
+
uninterpretedOption: {
|
|
8224
8432
|
rule: string;
|
|
8225
8433
|
type: string;
|
|
8226
8434
|
id: number;
|
|
@@ -8230,6 +8438,7 @@ declare const _default: {
|
|
|
8230
8438
|
reserved: number[][];
|
|
8231
8439
|
};
|
|
8232
8440
|
FieldOptions: {
|
|
8441
|
+
edition: string;
|
|
8233
8442
|
fields: {
|
|
8234
8443
|
ctype: {
|
|
8235
8444
|
type: string;
|
|
@@ -8253,6 +8462,10 @@ declare const _default: {
|
|
|
8253
8462
|
type: string;
|
|
8254
8463
|
id: number;
|
|
8255
8464
|
};
|
|
8465
|
+
unverifiedLazy: {
|
|
8466
|
+
type: string;
|
|
8467
|
+
id: number;
|
|
8468
|
+
};
|
|
8256
8469
|
deprecated: {
|
|
8257
8470
|
type: string;
|
|
8258
8471
|
id: number;
|
|
@@ -8260,8 +8473,37 @@ declare const _default: {
|
|
|
8260
8473
|
weak: {
|
|
8261
8474
|
type: string;
|
|
8262
8475
|
id: number;
|
|
8476
|
+
options: {
|
|
8477
|
+
deprecated: boolean;
|
|
8478
|
+
};
|
|
8263
8479
|
};
|
|
8264
|
-
|
|
8480
|
+
debugRedact: {
|
|
8481
|
+
type: string;
|
|
8482
|
+
id: number;
|
|
8483
|
+
};
|
|
8484
|
+
retention: {
|
|
8485
|
+
type: string;
|
|
8486
|
+
id: number;
|
|
8487
|
+
};
|
|
8488
|
+
targets: {
|
|
8489
|
+
rule: string;
|
|
8490
|
+
type: string;
|
|
8491
|
+
id: number;
|
|
8492
|
+
};
|
|
8493
|
+
editionDefaults: {
|
|
8494
|
+
rule: string;
|
|
8495
|
+
type: string;
|
|
8496
|
+
id: number;
|
|
8497
|
+
};
|
|
8498
|
+
features: {
|
|
8499
|
+
type: string;
|
|
8500
|
+
id: number;
|
|
8501
|
+
};
|
|
8502
|
+
featureSupport: {
|
|
8503
|
+
type: string;
|
|
8504
|
+
id: number;
|
|
8505
|
+
};
|
|
8506
|
+
uninterpretedOption: {
|
|
8265
8507
|
rule: string;
|
|
8266
8508
|
type: string;
|
|
8267
8509
|
id: number;
|
|
@@ -8284,11 +8526,69 @@ declare const _default: {
|
|
|
8284
8526
|
JS_NUMBER: number;
|
|
8285
8527
|
};
|
|
8286
8528
|
};
|
|
8529
|
+
OptionRetention: {
|
|
8530
|
+
values: {
|
|
8531
|
+
RETENTION_UNKNOWN: number;
|
|
8532
|
+
RETENTION_RUNTIME: number;
|
|
8533
|
+
RETENTION_SOURCE: number;
|
|
8534
|
+
};
|
|
8535
|
+
};
|
|
8536
|
+
OptionTargetType: {
|
|
8537
|
+
values: {
|
|
8538
|
+
TARGET_TYPE_UNKNOWN: number;
|
|
8539
|
+
TARGET_TYPE_FILE: number;
|
|
8540
|
+
TARGET_TYPE_EXTENSION_RANGE: number;
|
|
8541
|
+
TARGET_TYPE_MESSAGE: number;
|
|
8542
|
+
TARGET_TYPE_FIELD: number;
|
|
8543
|
+
TARGET_TYPE_ONEOF: number;
|
|
8544
|
+
TARGET_TYPE_ENUM: number;
|
|
8545
|
+
TARGET_TYPE_ENUM_ENTRY: number;
|
|
8546
|
+
TARGET_TYPE_SERVICE: number;
|
|
8547
|
+
TARGET_TYPE_METHOD: number;
|
|
8548
|
+
};
|
|
8549
|
+
};
|
|
8550
|
+
EditionDefault: {
|
|
8551
|
+
fields: {
|
|
8552
|
+
edition: {
|
|
8553
|
+
type: string;
|
|
8554
|
+
id: number;
|
|
8555
|
+
};
|
|
8556
|
+
value: {
|
|
8557
|
+
type: string;
|
|
8558
|
+
id: number;
|
|
8559
|
+
};
|
|
8560
|
+
};
|
|
8561
|
+
};
|
|
8562
|
+
FeatureSupport: {
|
|
8563
|
+
fields: {
|
|
8564
|
+
editionIntroduced: {
|
|
8565
|
+
type: string;
|
|
8566
|
+
id: number;
|
|
8567
|
+
};
|
|
8568
|
+
editionDeprecated: {
|
|
8569
|
+
type: string;
|
|
8570
|
+
id: number;
|
|
8571
|
+
};
|
|
8572
|
+
deprecationWarning: {
|
|
8573
|
+
type: string;
|
|
8574
|
+
id: number;
|
|
8575
|
+
};
|
|
8576
|
+
editionRemoved: {
|
|
8577
|
+
type: string;
|
|
8578
|
+
id: number;
|
|
8579
|
+
};
|
|
8580
|
+
};
|
|
8581
|
+
};
|
|
8287
8582
|
};
|
|
8288
8583
|
};
|
|
8289
8584
|
OneofOptions: {
|
|
8585
|
+
edition: string;
|
|
8290
8586
|
fields: {
|
|
8291
|
-
|
|
8587
|
+
features: {
|
|
8588
|
+
type: string;
|
|
8589
|
+
id: number;
|
|
8590
|
+
};
|
|
8591
|
+
uninterpretedOption: {
|
|
8292
8592
|
rule: string;
|
|
8293
8593
|
type: string;
|
|
8294
8594
|
id: number;
|
|
@@ -8297,8 +8597,9 @@ declare const _default: {
|
|
|
8297
8597
|
extensions: number[][];
|
|
8298
8598
|
};
|
|
8299
8599
|
EnumOptions: {
|
|
8600
|
+
edition: string;
|
|
8300
8601
|
fields: {
|
|
8301
|
-
|
|
8602
|
+
allowAlias: {
|
|
8302
8603
|
type: string;
|
|
8303
8604
|
id: number;
|
|
8304
8605
|
};
|
|
@@ -8306,21 +8607,46 @@ declare const _default: {
|
|
|
8306
8607
|
type: string;
|
|
8307
8608
|
id: number;
|
|
8308
8609
|
};
|
|
8309
|
-
|
|
8610
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
8611
|
+
type: string;
|
|
8612
|
+
id: number;
|
|
8613
|
+
options: {
|
|
8614
|
+
deprecated: boolean;
|
|
8615
|
+
};
|
|
8616
|
+
};
|
|
8617
|
+
features: {
|
|
8618
|
+
type: string;
|
|
8619
|
+
id: number;
|
|
8620
|
+
};
|
|
8621
|
+
uninterpretedOption: {
|
|
8310
8622
|
rule: string;
|
|
8311
8623
|
type: string;
|
|
8312
8624
|
id: number;
|
|
8313
8625
|
};
|
|
8314
8626
|
};
|
|
8315
8627
|
extensions: number[][];
|
|
8628
|
+
reserved: number[][];
|
|
8316
8629
|
};
|
|
8317
8630
|
EnumValueOptions: {
|
|
8631
|
+
edition: string;
|
|
8318
8632
|
fields: {
|
|
8319
8633
|
deprecated: {
|
|
8320
8634
|
type: string;
|
|
8321
8635
|
id: number;
|
|
8322
8636
|
};
|
|
8323
|
-
|
|
8637
|
+
features: {
|
|
8638
|
+
type: string;
|
|
8639
|
+
id: number;
|
|
8640
|
+
};
|
|
8641
|
+
debugRedact: {
|
|
8642
|
+
type: string;
|
|
8643
|
+
id: number;
|
|
8644
|
+
};
|
|
8645
|
+
featureSupport: {
|
|
8646
|
+
type: string;
|
|
8647
|
+
id: number;
|
|
8648
|
+
};
|
|
8649
|
+
uninterpretedOption: {
|
|
8324
8650
|
rule: string;
|
|
8325
8651
|
type: string;
|
|
8326
8652
|
id: number;
|
|
@@ -8329,12 +8655,17 @@ declare const _default: {
|
|
|
8329
8655
|
extensions: number[][];
|
|
8330
8656
|
};
|
|
8331
8657
|
ServiceOptions: {
|
|
8658
|
+
edition: string;
|
|
8332
8659
|
fields: {
|
|
8660
|
+
features: {
|
|
8661
|
+
type: string;
|
|
8662
|
+
id: number;
|
|
8663
|
+
};
|
|
8333
8664
|
deprecated: {
|
|
8334
8665
|
type: string;
|
|
8335
8666
|
id: number;
|
|
8336
8667
|
};
|
|
8337
|
-
|
|
8668
|
+
uninterpretedOption: {
|
|
8338
8669
|
rule: string;
|
|
8339
8670
|
type: string;
|
|
8340
8671
|
id: number;
|
|
@@ -8343,47 +8674,69 @@ declare const _default: {
|
|
|
8343
8674
|
extensions: number[][];
|
|
8344
8675
|
};
|
|
8345
8676
|
MethodOptions: {
|
|
8677
|
+
edition: string;
|
|
8346
8678
|
fields: {
|
|
8347
8679
|
deprecated: {
|
|
8348
8680
|
type: string;
|
|
8349
8681
|
id: number;
|
|
8350
8682
|
};
|
|
8351
|
-
|
|
8683
|
+
idempotencyLevel: {
|
|
8684
|
+
type: string;
|
|
8685
|
+
id: number;
|
|
8686
|
+
options: {
|
|
8687
|
+
default: string;
|
|
8688
|
+
};
|
|
8689
|
+
};
|
|
8690
|
+
features: {
|
|
8691
|
+
type: string;
|
|
8692
|
+
id: number;
|
|
8693
|
+
};
|
|
8694
|
+
uninterpretedOption: {
|
|
8352
8695
|
rule: string;
|
|
8353
8696
|
type: string;
|
|
8354
8697
|
id: number;
|
|
8355
8698
|
};
|
|
8356
8699
|
};
|
|
8357
8700
|
extensions: number[][];
|
|
8701
|
+
nested: {
|
|
8702
|
+
IdempotencyLevel: {
|
|
8703
|
+
values: {
|
|
8704
|
+
IDEMPOTENCY_UNKNOWN: number;
|
|
8705
|
+
NO_SIDE_EFFECTS: number;
|
|
8706
|
+
IDEMPOTENT: number;
|
|
8707
|
+
};
|
|
8708
|
+
};
|
|
8709
|
+
};
|
|
8358
8710
|
};
|
|
8359
8711
|
UninterpretedOption: {
|
|
8712
|
+
edition: string;
|
|
8360
8713
|
fields: {
|
|
8361
8714
|
name: {
|
|
8362
8715
|
rule: string;
|
|
8363
8716
|
type: string;
|
|
8364
8717
|
id: number;
|
|
8365
8718
|
};
|
|
8366
|
-
|
|
8719
|
+
identifierValue: {
|
|
8367
8720
|
type: string;
|
|
8368
8721
|
id: number;
|
|
8369
8722
|
};
|
|
8370
|
-
|
|
8723
|
+
positiveIntValue: {
|
|
8371
8724
|
type: string;
|
|
8372
8725
|
id: number;
|
|
8373
8726
|
};
|
|
8374
|
-
|
|
8727
|
+
negativeIntValue: {
|
|
8375
8728
|
type: string;
|
|
8376
8729
|
id: number;
|
|
8377
8730
|
};
|
|
8378
|
-
|
|
8731
|
+
doubleValue: {
|
|
8379
8732
|
type: string;
|
|
8380
8733
|
id: number;
|
|
8381
8734
|
};
|
|
8382
|
-
|
|
8735
|
+
stringValue: {
|
|
8383
8736
|
type: string;
|
|
8384
8737
|
id: number;
|
|
8385
8738
|
};
|
|
8386
|
-
|
|
8739
|
+
aggregateValue: {
|
|
8387
8740
|
type: string;
|
|
8388
8741
|
id: number;
|
|
8389
8742
|
};
|
|
@@ -8391,12 +8744,12 @@ declare const _default: {
|
|
|
8391
8744
|
nested: {
|
|
8392
8745
|
NamePart: {
|
|
8393
8746
|
fields: {
|
|
8394
|
-
|
|
8747
|
+
namePart: {
|
|
8395
8748
|
rule: string;
|
|
8396
8749
|
type: string;
|
|
8397
8750
|
id: number;
|
|
8398
8751
|
};
|
|
8399
|
-
|
|
8752
|
+
isExtension: {
|
|
8400
8753
|
rule: string;
|
|
8401
8754
|
type: string;
|
|
8402
8755
|
id: number;
|
|
@@ -8405,7 +8758,207 @@ declare const _default: {
|
|
|
8405
8758
|
};
|
|
8406
8759
|
};
|
|
8407
8760
|
};
|
|
8761
|
+
FeatureSet: {
|
|
8762
|
+
edition: string;
|
|
8763
|
+
fields: {
|
|
8764
|
+
fieldPresence: {
|
|
8765
|
+
type: string;
|
|
8766
|
+
id: number;
|
|
8767
|
+
options: {
|
|
8768
|
+
retention: string;
|
|
8769
|
+
targets: string;
|
|
8770
|
+
"feature_support.edition_introduced": string;
|
|
8771
|
+
"edition_defaults.edition": string;
|
|
8772
|
+
"edition_defaults.value": string;
|
|
8773
|
+
};
|
|
8774
|
+
};
|
|
8775
|
+
enumType: {
|
|
8776
|
+
type: string;
|
|
8777
|
+
id: number;
|
|
8778
|
+
options: {
|
|
8779
|
+
retention: string;
|
|
8780
|
+
targets: string;
|
|
8781
|
+
"feature_support.edition_introduced": string;
|
|
8782
|
+
"edition_defaults.edition": string;
|
|
8783
|
+
"edition_defaults.value": string;
|
|
8784
|
+
};
|
|
8785
|
+
};
|
|
8786
|
+
repeatedFieldEncoding: {
|
|
8787
|
+
type: string;
|
|
8788
|
+
id: number;
|
|
8789
|
+
options: {
|
|
8790
|
+
retention: string;
|
|
8791
|
+
targets: string;
|
|
8792
|
+
"feature_support.edition_introduced": string;
|
|
8793
|
+
"edition_defaults.edition": string;
|
|
8794
|
+
"edition_defaults.value": string;
|
|
8795
|
+
};
|
|
8796
|
+
};
|
|
8797
|
+
utf8Validation: {
|
|
8798
|
+
type: string;
|
|
8799
|
+
id: number;
|
|
8800
|
+
options: {
|
|
8801
|
+
retention: string;
|
|
8802
|
+
targets: string;
|
|
8803
|
+
"feature_support.edition_introduced": string;
|
|
8804
|
+
"edition_defaults.edition": string;
|
|
8805
|
+
"edition_defaults.value": string;
|
|
8806
|
+
};
|
|
8807
|
+
};
|
|
8808
|
+
messageEncoding: {
|
|
8809
|
+
type: string;
|
|
8810
|
+
id: number;
|
|
8811
|
+
options: {
|
|
8812
|
+
retention: string;
|
|
8813
|
+
targets: string;
|
|
8814
|
+
"feature_support.edition_introduced": string;
|
|
8815
|
+
"edition_defaults.edition": string;
|
|
8816
|
+
"edition_defaults.value": string;
|
|
8817
|
+
};
|
|
8818
|
+
};
|
|
8819
|
+
jsonFormat: {
|
|
8820
|
+
type: string;
|
|
8821
|
+
id: number;
|
|
8822
|
+
options: {
|
|
8823
|
+
retention: string;
|
|
8824
|
+
targets: string;
|
|
8825
|
+
"feature_support.edition_introduced": string;
|
|
8826
|
+
"edition_defaults.edition": string;
|
|
8827
|
+
"edition_defaults.value": string;
|
|
8828
|
+
};
|
|
8829
|
+
};
|
|
8830
|
+
enforceNamingStyle: {
|
|
8831
|
+
type: string;
|
|
8832
|
+
id: number;
|
|
8833
|
+
options: {
|
|
8834
|
+
retention: string;
|
|
8835
|
+
targets: string;
|
|
8836
|
+
"feature_support.edition_introduced": string;
|
|
8837
|
+
"edition_defaults.edition": string;
|
|
8838
|
+
"edition_defaults.value": string;
|
|
8839
|
+
};
|
|
8840
|
+
};
|
|
8841
|
+
defaultSymbolVisibility: {
|
|
8842
|
+
type: string;
|
|
8843
|
+
id: number;
|
|
8844
|
+
options: {
|
|
8845
|
+
retention: string;
|
|
8846
|
+
targets: string;
|
|
8847
|
+
"feature_support.edition_introduced": string;
|
|
8848
|
+
"edition_defaults.edition": string;
|
|
8849
|
+
"edition_defaults.value": string;
|
|
8850
|
+
};
|
|
8851
|
+
};
|
|
8852
|
+
};
|
|
8853
|
+
extensions: number[][];
|
|
8854
|
+
reserved: number[][];
|
|
8855
|
+
nested: {
|
|
8856
|
+
FieldPresence: {
|
|
8857
|
+
values: {
|
|
8858
|
+
FIELD_PRESENCE_UNKNOWN: number;
|
|
8859
|
+
EXPLICIT: number;
|
|
8860
|
+
IMPLICIT: number;
|
|
8861
|
+
LEGACY_REQUIRED: number;
|
|
8862
|
+
};
|
|
8863
|
+
};
|
|
8864
|
+
EnumType: {
|
|
8865
|
+
values: {
|
|
8866
|
+
ENUM_TYPE_UNKNOWN: number;
|
|
8867
|
+
OPEN: number;
|
|
8868
|
+
CLOSED: number;
|
|
8869
|
+
};
|
|
8870
|
+
};
|
|
8871
|
+
RepeatedFieldEncoding: {
|
|
8872
|
+
values: {
|
|
8873
|
+
REPEATED_FIELD_ENCODING_UNKNOWN: number;
|
|
8874
|
+
PACKED: number;
|
|
8875
|
+
EXPANDED: number;
|
|
8876
|
+
};
|
|
8877
|
+
};
|
|
8878
|
+
Utf8Validation: {
|
|
8879
|
+
values: {
|
|
8880
|
+
UTF8_VALIDATION_UNKNOWN: number;
|
|
8881
|
+
VERIFY: number;
|
|
8882
|
+
NONE: number;
|
|
8883
|
+
};
|
|
8884
|
+
};
|
|
8885
|
+
MessageEncoding: {
|
|
8886
|
+
values: {
|
|
8887
|
+
MESSAGE_ENCODING_UNKNOWN: number;
|
|
8888
|
+
LENGTH_PREFIXED: number;
|
|
8889
|
+
DELIMITED: number;
|
|
8890
|
+
};
|
|
8891
|
+
};
|
|
8892
|
+
JsonFormat: {
|
|
8893
|
+
values: {
|
|
8894
|
+
JSON_FORMAT_UNKNOWN: number;
|
|
8895
|
+
ALLOW: number;
|
|
8896
|
+
LEGACY_BEST_EFFORT: number;
|
|
8897
|
+
};
|
|
8898
|
+
};
|
|
8899
|
+
EnforceNamingStyle: {
|
|
8900
|
+
values: {
|
|
8901
|
+
ENFORCE_NAMING_STYLE_UNKNOWN: number;
|
|
8902
|
+
STYLE2024: number;
|
|
8903
|
+
STYLE_LEGACY: number;
|
|
8904
|
+
};
|
|
8905
|
+
};
|
|
8906
|
+
VisibilityFeature: {
|
|
8907
|
+
fields: {};
|
|
8908
|
+
reserved: number[][];
|
|
8909
|
+
nested: {
|
|
8910
|
+
DefaultSymbolVisibility: {
|
|
8911
|
+
values: {
|
|
8912
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN: number;
|
|
8913
|
+
EXPORT_ALL: number;
|
|
8914
|
+
EXPORT_TOP_LEVEL: number;
|
|
8915
|
+
LOCAL_ALL: number;
|
|
8916
|
+
STRICT: number;
|
|
8917
|
+
};
|
|
8918
|
+
};
|
|
8919
|
+
};
|
|
8920
|
+
};
|
|
8921
|
+
};
|
|
8922
|
+
};
|
|
8923
|
+
FeatureSetDefaults: {
|
|
8924
|
+
edition: string;
|
|
8925
|
+
fields: {
|
|
8926
|
+
defaults: {
|
|
8927
|
+
rule: string;
|
|
8928
|
+
type: string;
|
|
8929
|
+
id: number;
|
|
8930
|
+
};
|
|
8931
|
+
minimumEdition: {
|
|
8932
|
+
type: string;
|
|
8933
|
+
id: number;
|
|
8934
|
+
};
|
|
8935
|
+
maximumEdition: {
|
|
8936
|
+
type: string;
|
|
8937
|
+
id: number;
|
|
8938
|
+
};
|
|
8939
|
+
};
|
|
8940
|
+
nested: {
|
|
8941
|
+
FeatureSetEditionDefault: {
|
|
8942
|
+
fields: {
|
|
8943
|
+
edition: {
|
|
8944
|
+
type: string;
|
|
8945
|
+
id: number;
|
|
8946
|
+
};
|
|
8947
|
+
overridableFeatures: {
|
|
8948
|
+
type: string;
|
|
8949
|
+
id: number;
|
|
8950
|
+
};
|
|
8951
|
+
fixedFeatures: {
|
|
8952
|
+
type: string;
|
|
8953
|
+
id: number;
|
|
8954
|
+
};
|
|
8955
|
+
};
|
|
8956
|
+
reserved: (string | number[])[];
|
|
8957
|
+
};
|
|
8958
|
+
};
|
|
8959
|
+
};
|
|
8408
8960
|
SourceCodeInfo: {
|
|
8961
|
+
edition: string;
|
|
8409
8962
|
fields: {
|
|
8410
8963
|
location: {
|
|
8411
8964
|
rule: string;
|
|
@@ -8413,6 +8966,7 @@ declare const _default: {
|
|
|
8413
8966
|
id: number;
|
|
8414
8967
|
};
|
|
8415
8968
|
};
|
|
8969
|
+
extensions: number[][];
|
|
8416
8970
|
nested: {
|
|
8417
8971
|
Location: {
|
|
8418
8972
|
fields: {
|
|
@@ -8420,21 +8974,27 @@ declare const _default: {
|
|
|
8420
8974
|
rule: string;
|
|
8421
8975
|
type: string;
|
|
8422
8976
|
id: number;
|
|
8977
|
+
options: {
|
|
8978
|
+
packed: boolean;
|
|
8979
|
+
};
|
|
8423
8980
|
};
|
|
8424
8981
|
span: {
|
|
8425
8982
|
rule: string;
|
|
8426
8983
|
type: string;
|
|
8427
8984
|
id: number;
|
|
8985
|
+
options: {
|
|
8986
|
+
packed: boolean;
|
|
8987
|
+
};
|
|
8428
8988
|
};
|
|
8429
|
-
|
|
8989
|
+
leadingComments: {
|
|
8430
8990
|
type: string;
|
|
8431
8991
|
id: number;
|
|
8432
8992
|
};
|
|
8433
|
-
|
|
8993
|
+
trailingComments: {
|
|
8434
8994
|
type: string;
|
|
8435
8995
|
id: number;
|
|
8436
8996
|
};
|
|
8437
|
-
|
|
8997
|
+
leadingDetachedComments: {
|
|
8438
8998
|
rule: string;
|
|
8439
8999
|
type: string;
|
|
8440
9000
|
id: number;
|
|
@@ -8444,6 +9004,7 @@ declare const _default: {
|
|
|
8444
9004
|
};
|
|
8445
9005
|
};
|
|
8446
9006
|
GeneratedCodeInfo: {
|
|
9007
|
+
edition: string;
|
|
8447
9008
|
fields: {
|
|
8448
9009
|
annotation: {
|
|
8449
9010
|
rule: string;
|
|
@@ -8458,8 +9019,11 @@ declare const _default: {
|
|
|
8458
9019
|
rule: string;
|
|
8459
9020
|
type: string;
|
|
8460
9021
|
id: number;
|
|
9022
|
+
options: {
|
|
9023
|
+
packed: boolean;
|
|
9024
|
+
};
|
|
8461
9025
|
};
|
|
8462
|
-
|
|
9026
|
+
sourceFile: {
|
|
8463
9027
|
type: string;
|
|
8464
9028
|
id: number;
|
|
8465
9029
|
};
|
|
@@ -8471,10 +9035,31 @@ declare const _default: {
|
|
|
8471
9035
|
type: string;
|
|
8472
9036
|
id: number;
|
|
8473
9037
|
};
|
|
9038
|
+
semantic: {
|
|
9039
|
+
type: string;
|
|
9040
|
+
id: number;
|
|
9041
|
+
};
|
|
9042
|
+
};
|
|
9043
|
+
nested: {
|
|
9044
|
+
Semantic: {
|
|
9045
|
+
values: {
|
|
9046
|
+
NONE: number;
|
|
9047
|
+
SET: number;
|
|
9048
|
+
ALIAS: number;
|
|
9049
|
+
};
|
|
9050
|
+
};
|
|
8474
9051
|
};
|
|
8475
9052
|
};
|
|
8476
9053
|
};
|
|
8477
9054
|
};
|
|
9055
|
+
SymbolVisibility: {
|
|
9056
|
+
edition: string;
|
|
9057
|
+
values: {
|
|
9058
|
+
VISIBILITY_UNSET: number;
|
|
9059
|
+
VISIBILITY_LOCAL: number;
|
|
9060
|
+
VISIBILITY_EXPORT: number;
|
|
9061
|
+
};
|
|
9062
|
+
};
|
|
8478
9063
|
};
|
|
8479
9064
|
};
|
|
8480
9065
|
};
|