@zilliz/milvus2-sdk-node 2.6.13 → 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/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 +585 -8
- package/dist/milvus/proto-json/milvus.base.js +677 -17
- package/dist/milvus/proto-json/milvus.base.js.map +1 -1
- package/dist/milvus/proto-json/milvus.d.ts +641 -64
- package/dist/milvus/proto-json/milvus.js +733 -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
|
@@ -2060,6 +2060,11 @@ exports.default = {
|
|
|
2060
2060
|
"options": {
|
|
2061
2061
|
"proto3_optional": true
|
|
2062
2062
|
}
|
|
2063
|
+
},
|
|
2064
|
+
"field_ops": {
|
|
2065
|
+
"rule": "repeated",
|
|
2066
|
+
"type": "schema.FieldPartialUpdateOp",
|
|
2067
|
+
"id": 11
|
|
2063
2068
|
}
|
|
2064
2069
|
}
|
|
2065
2070
|
},
|
|
@@ -7072,6 +7077,27 @@ exports.default = {
|
|
|
7072
7077
|
}
|
|
7073
7078
|
}
|
|
7074
7079
|
},
|
|
7080
|
+
"FieldPartialUpdateOp": {
|
|
7081
|
+
"fields": {
|
|
7082
|
+
"field_name": {
|
|
7083
|
+
"type": "string",
|
|
7084
|
+
"id": 1
|
|
7085
|
+
},
|
|
7086
|
+
"op": {
|
|
7087
|
+
"type": "OpType",
|
|
7088
|
+
"id": 2
|
|
7089
|
+
}
|
|
7090
|
+
},
|
|
7091
|
+
"nested": {
|
|
7092
|
+
"OpType": {
|
|
7093
|
+
"values": {
|
|
7094
|
+
"REPLACE": 0,
|
|
7095
|
+
"ARRAY_APPEND": 1,
|
|
7096
|
+
"ARRAY_REMOVE": 2
|
|
7097
|
+
}
|
|
7098
|
+
}
|
|
7099
|
+
}
|
|
7100
|
+
},
|
|
7075
7101
|
"FieldData": {
|
|
7076
7102
|
"oneofs": {
|
|
7077
7103
|
"field": {
|
|
@@ -7895,15 +7921,40 @@ exports.default = {
|
|
|
7895
7921
|
"protobuf": {
|
|
7896
7922
|
"nested": {
|
|
7897
7923
|
"FileDescriptorSet": {
|
|
7924
|
+
"edition": "proto2",
|
|
7898
7925
|
"fields": {
|
|
7899
7926
|
"file": {
|
|
7900
7927
|
"rule": "repeated",
|
|
7901
7928
|
"type": "FileDescriptorProto",
|
|
7902
7929
|
"id": 1
|
|
7903
7930
|
}
|
|
7931
|
+
},
|
|
7932
|
+
"extensions": [
|
|
7933
|
+
[
|
|
7934
|
+
536000000,
|
|
7935
|
+
536000000
|
|
7936
|
+
]
|
|
7937
|
+
]
|
|
7938
|
+
},
|
|
7939
|
+
"Edition": {
|
|
7940
|
+
"edition": "proto2",
|
|
7941
|
+
"values": {
|
|
7942
|
+
"EDITION_UNKNOWN": 0,
|
|
7943
|
+
"EDITION_LEGACY": 900,
|
|
7944
|
+
"EDITION_PROTO2": 998,
|
|
7945
|
+
"EDITION_PROTO3": 999,
|
|
7946
|
+
"EDITION_2023": 1000,
|
|
7947
|
+
"EDITION_2024": 1001,
|
|
7948
|
+
"EDITION_1_TEST_ONLY": 1,
|
|
7949
|
+
"EDITION_2_TEST_ONLY": 2,
|
|
7950
|
+
"EDITION_99997_TEST_ONLY": 99997,
|
|
7951
|
+
"EDITION_99998_TEST_ONLY": 99998,
|
|
7952
|
+
"EDITION_99999_TEST_ONLY": 99999,
|
|
7953
|
+
"EDITION_MAX": 2147483647
|
|
7904
7954
|
}
|
|
7905
7955
|
},
|
|
7906
7956
|
"FileDescriptorProto": {
|
|
7957
|
+
"edition": "proto2",
|
|
7907
7958
|
"fields": {
|
|
7908
7959
|
"name": {
|
|
7909
7960
|
"type": "string",
|
|
@@ -7918,28 +7969,27 @@ exports.default = {
|
|
|
7918
7969
|
"type": "string",
|
|
7919
7970
|
"id": 3
|
|
7920
7971
|
},
|
|
7921
|
-
"
|
|
7972
|
+
"publicDependency": {
|
|
7922
7973
|
"rule": "repeated",
|
|
7923
7974
|
"type": "int32",
|
|
7924
|
-
"id": 10
|
|
7925
|
-
"options": {
|
|
7926
|
-
"packed": false
|
|
7927
|
-
}
|
|
7975
|
+
"id": 10
|
|
7928
7976
|
},
|
|
7929
|
-
"
|
|
7977
|
+
"weakDependency": {
|
|
7930
7978
|
"rule": "repeated",
|
|
7931
7979
|
"type": "int32",
|
|
7932
|
-
"id": 11
|
|
7933
|
-
|
|
7934
|
-
|
|
7935
|
-
|
|
7980
|
+
"id": 11
|
|
7981
|
+
},
|
|
7982
|
+
"optionDependency": {
|
|
7983
|
+
"rule": "repeated",
|
|
7984
|
+
"type": "string",
|
|
7985
|
+
"id": 15
|
|
7936
7986
|
},
|
|
7937
|
-
"
|
|
7987
|
+
"messageType": {
|
|
7938
7988
|
"rule": "repeated",
|
|
7939
7989
|
"type": "DescriptorProto",
|
|
7940
7990
|
"id": 4
|
|
7941
7991
|
},
|
|
7942
|
-
"
|
|
7992
|
+
"enumType": {
|
|
7943
7993
|
"rule": "repeated",
|
|
7944
7994
|
"type": "EnumDescriptorProto",
|
|
7945
7995
|
"id": 5
|
|
@@ -7958,17 +8008,22 @@ exports.default = {
|
|
|
7958
8008
|
"type": "FileOptions",
|
|
7959
8009
|
"id": 8
|
|
7960
8010
|
},
|
|
7961
|
-
"
|
|
8011
|
+
"sourceCodeInfo": {
|
|
7962
8012
|
"type": "SourceCodeInfo",
|
|
7963
8013
|
"id": 9
|
|
7964
8014
|
},
|
|
7965
8015
|
"syntax": {
|
|
7966
8016
|
"type": "string",
|
|
7967
8017
|
"id": 12
|
|
8018
|
+
},
|
|
8019
|
+
"edition": {
|
|
8020
|
+
"type": "Edition",
|
|
8021
|
+
"id": 14
|
|
7968
8022
|
}
|
|
7969
8023
|
}
|
|
7970
8024
|
},
|
|
7971
8025
|
"DescriptorProto": {
|
|
8026
|
+
"edition": "proto2",
|
|
7972
8027
|
"fields": {
|
|
7973
8028
|
"name": {
|
|
7974
8029
|
"type": "string",
|
|
@@ -7984,22 +8039,22 @@ exports.default = {
|
|
|
7984
8039
|
"type": "FieldDescriptorProto",
|
|
7985
8040
|
"id": 6
|
|
7986
8041
|
},
|
|
7987
|
-
"
|
|
8042
|
+
"nestedType": {
|
|
7988
8043
|
"rule": "repeated",
|
|
7989
8044
|
"type": "DescriptorProto",
|
|
7990
8045
|
"id": 3
|
|
7991
8046
|
},
|
|
7992
|
-
"
|
|
8047
|
+
"enumType": {
|
|
7993
8048
|
"rule": "repeated",
|
|
7994
8049
|
"type": "EnumDescriptorProto",
|
|
7995
8050
|
"id": 4
|
|
7996
8051
|
},
|
|
7997
|
-
"
|
|
8052
|
+
"extensionRange": {
|
|
7998
8053
|
"rule": "repeated",
|
|
7999
8054
|
"type": "ExtensionRange",
|
|
8000
8055
|
"id": 5
|
|
8001
8056
|
},
|
|
8002
|
-
"
|
|
8057
|
+
"oneofDecl": {
|
|
8003
8058
|
"rule": "repeated",
|
|
8004
8059
|
"type": "OneofDescriptorProto",
|
|
8005
8060
|
"id": 8
|
|
@@ -8008,15 +8063,19 @@ exports.default = {
|
|
|
8008
8063
|
"type": "MessageOptions",
|
|
8009
8064
|
"id": 7
|
|
8010
8065
|
},
|
|
8011
|
-
"
|
|
8066
|
+
"reservedRange": {
|
|
8012
8067
|
"rule": "repeated",
|
|
8013
8068
|
"type": "ReservedRange",
|
|
8014
8069
|
"id": 9
|
|
8015
8070
|
},
|
|
8016
|
-
"
|
|
8071
|
+
"reservedName": {
|
|
8017
8072
|
"rule": "repeated",
|
|
8018
8073
|
"type": "string",
|
|
8019
8074
|
"id": 10
|
|
8075
|
+
},
|
|
8076
|
+
"visibility": {
|
|
8077
|
+
"type": "SymbolVisibility",
|
|
8078
|
+
"id": 11
|
|
8020
8079
|
}
|
|
8021
8080
|
},
|
|
8022
8081
|
"nested": {
|
|
@@ -8029,6 +8088,10 @@ exports.default = {
|
|
|
8029
8088
|
"end": {
|
|
8030
8089
|
"type": "int32",
|
|
8031
8090
|
"id": 2
|
|
8091
|
+
},
|
|
8092
|
+
"options": {
|
|
8093
|
+
"type": "ExtensionRangeOptions",
|
|
8094
|
+
"id": 3
|
|
8032
8095
|
}
|
|
8033
8096
|
}
|
|
8034
8097
|
},
|
|
@@ -8046,7 +8109,82 @@ exports.default = {
|
|
|
8046
8109
|
}
|
|
8047
8110
|
}
|
|
8048
8111
|
},
|
|
8112
|
+
"ExtensionRangeOptions": {
|
|
8113
|
+
"edition": "proto2",
|
|
8114
|
+
"fields": {
|
|
8115
|
+
"uninterpretedOption": {
|
|
8116
|
+
"rule": "repeated",
|
|
8117
|
+
"type": "UninterpretedOption",
|
|
8118
|
+
"id": 999
|
|
8119
|
+
},
|
|
8120
|
+
"declaration": {
|
|
8121
|
+
"rule": "repeated",
|
|
8122
|
+
"type": "Declaration",
|
|
8123
|
+
"id": 2,
|
|
8124
|
+
"options": {
|
|
8125
|
+
"retention": "RETENTION_SOURCE"
|
|
8126
|
+
}
|
|
8127
|
+
},
|
|
8128
|
+
"features": {
|
|
8129
|
+
"type": "FeatureSet",
|
|
8130
|
+
"id": 50
|
|
8131
|
+
},
|
|
8132
|
+
"verification": {
|
|
8133
|
+
"type": "VerificationState",
|
|
8134
|
+
"id": 3,
|
|
8135
|
+
"options": {
|
|
8136
|
+
"default": "UNVERIFIED",
|
|
8137
|
+
"retention": "RETENTION_SOURCE"
|
|
8138
|
+
}
|
|
8139
|
+
}
|
|
8140
|
+
},
|
|
8141
|
+
"extensions": [
|
|
8142
|
+
[
|
|
8143
|
+
1000,
|
|
8144
|
+
536870911
|
|
8145
|
+
]
|
|
8146
|
+
],
|
|
8147
|
+
"nested": {
|
|
8148
|
+
"Declaration": {
|
|
8149
|
+
"fields": {
|
|
8150
|
+
"number": {
|
|
8151
|
+
"type": "int32",
|
|
8152
|
+
"id": 1
|
|
8153
|
+
},
|
|
8154
|
+
"fullName": {
|
|
8155
|
+
"type": "string",
|
|
8156
|
+
"id": 2
|
|
8157
|
+
},
|
|
8158
|
+
"type": {
|
|
8159
|
+
"type": "string",
|
|
8160
|
+
"id": 3
|
|
8161
|
+
},
|
|
8162
|
+
"reserved": {
|
|
8163
|
+
"type": "bool",
|
|
8164
|
+
"id": 5
|
|
8165
|
+
},
|
|
8166
|
+
"repeated": {
|
|
8167
|
+
"type": "bool",
|
|
8168
|
+
"id": 6
|
|
8169
|
+
}
|
|
8170
|
+
},
|
|
8171
|
+
"reserved": [
|
|
8172
|
+
[
|
|
8173
|
+
4,
|
|
8174
|
+
4
|
|
8175
|
+
]
|
|
8176
|
+
]
|
|
8177
|
+
},
|
|
8178
|
+
"VerificationState": {
|
|
8179
|
+
"values": {
|
|
8180
|
+
"DECLARATION": 0,
|
|
8181
|
+
"UNVERIFIED": 1
|
|
8182
|
+
}
|
|
8183
|
+
}
|
|
8184
|
+
}
|
|
8185
|
+
},
|
|
8049
8186
|
"FieldDescriptorProto": {
|
|
8187
|
+
"edition": "proto2",
|
|
8050
8188
|
"fields": {
|
|
8051
8189
|
"name": {
|
|
8052
8190
|
"type": "string",
|
|
@@ -8064,7 +8202,7 @@ exports.default = {
|
|
|
8064
8202
|
"type": "Type",
|
|
8065
8203
|
"id": 5
|
|
8066
8204
|
},
|
|
8067
|
-
"
|
|
8205
|
+
"typeName": {
|
|
8068
8206
|
"type": "string",
|
|
8069
8207
|
"id": 6
|
|
8070
8208
|
},
|
|
@@ -8072,21 +8210,25 @@ exports.default = {
|
|
|
8072
8210
|
"type": "string",
|
|
8073
8211
|
"id": 2
|
|
8074
8212
|
},
|
|
8075
|
-
"
|
|
8213
|
+
"defaultValue": {
|
|
8076
8214
|
"type": "string",
|
|
8077
8215
|
"id": 7
|
|
8078
8216
|
},
|
|
8079
|
-
"
|
|
8217
|
+
"oneofIndex": {
|
|
8080
8218
|
"type": "int32",
|
|
8081
8219
|
"id": 9
|
|
8082
8220
|
},
|
|
8083
|
-
"
|
|
8221
|
+
"jsonName": {
|
|
8084
8222
|
"type": "string",
|
|
8085
8223
|
"id": 10
|
|
8086
8224
|
},
|
|
8087
8225
|
"options": {
|
|
8088
8226
|
"type": "FieldOptions",
|
|
8089
8227
|
"id": 8
|
|
8228
|
+
},
|
|
8229
|
+
"proto3Optional": {
|
|
8230
|
+
"type": "bool",
|
|
8231
|
+
"id": 17
|
|
8090
8232
|
}
|
|
8091
8233
|
},
|
|
8092
8234
|
"nested": {
|
|
@@ -8115,13 +8257,14 @@ exports.default = {
|
|
|
8115
8257
|
"Label": {
|
|
8116
8258
|
"values": {
|
|
8117
8259
|
"LABEL_OPTIONAL": 1,
|
|
8118
|
-
"
|
|
8119
|
-
"
|
|
8260
|
+
"LABEL_REPEATED": 3,
|
|
8261
|
+
"LABEL_REQUIRED": 2
|
|
8120
8262
|
}
|
|
8121
8263
|
}
|
|
8122
8264
|
}
|
|
8123
8265
|
},
|
|
8124
8266
|
"OneofDescriptorProto": {
|
|
8267
|
+
"edition": "proto2",
|
|
8125
8268
|
"fields": {
|
|
8126
8269
|
"name": {
|
|
8127
8270
|
"type": "string",
|
|
@@ -8134,6 +8277,7 @@ exports.default = {
|
|
|
8134
8277
|
}
|
|
8135
8278
|
},
|
|
8136
8279
|
"EnumDescriptorProto": {
|
|
8280
|
+
"edition": "proto2",
|
|
8137
8281
|
"fields": {
|
|
8138
8282
|
"name": {
|
|
8139
8283
|
"type": "string",
|
|
@@ -8147,10 +8291,39 @@ exports.default = {
|
|
|
8147
8291
|
"options": {
|
|
8148
8292
|
"type": "EnumOptions",
|
|
8149
8293
|
"id": 3
|
|
8294
|
+
},
|
|
8295
|
+
"reservedRange": {
|
|
8296
|
+
"rule": "repeated",
|
|
8297
|
+
"type": "EnumReservedRange",
|
|
8298
|
+
"id": 4
|
|
8299
|
+
},
|
|
8300
|
+
"reservedName": {
|
|
8301
|
+
"rule": "repeated",
|
|
8302
|
+
"type": "string",
|
|
8303
|
+
"id": 5
|
|
8304
|
+
},
|
|
8305
|
+
"visibility": {
|
|
8306
|
+
"type": "SymbolVisibility",
|
|
8307
|
+
"id": 6
|
|
8308
|
+
}
|
|
8309
|
+
},
|
|
8310
|
+
"nested": {
|
|
8311
|
+
"EnumReservedRange": {
|
|
8312
|
+
"fields": {
|
|
8313
|
+
"start": {
|
|
8314
|
+
"type": "int32",
|
|
8315
|
+
"id": 1
|
|
8316
|
+
},
|
|
8317
|
+
"end": {
|
|
8318
|
+
"type": "int32",
|
|
8319
|
+
"id": 2
|
|
8320
|
+
}
|
|
8321
|
+
}
|
|
8150
8322
|
}
|
|
8151
8323
|
}
|
|
8152
8324
|
},
|
|
8153
8325
|
"EnumValueDescriptorProto": {
|
|
8326
|
+
"edition": "proto2",
|
|
8154
8327
|
"fields": {
|
|
8155
8328
|
"name": {
|
|
8156
8329
|
"type": "string",
|
|
@@ -8167,6 +8340,7 @@ exports.default = {
|
|
|
8167
8340
|
}
|
|
8168
8341
|
},
|
|
8169
8342
|
"ServiceDescriptorProto": {
|
|
8343
|
+
"edition": "proto2",
|
|
8170
8344
|
"fields": {
|
|
8171
8345
|
"name": {
|
|
8172
8346
|
"type": "string",
|
|
@@ -8184,16 +8358,17 @@ exports.default = {
|
|
|
8184
8358
|
}
|
|
8185
8359
|
},
|
|
8186
8360
|
"MethodDescriptorProto": {
|
|
8361
|
+
"edition": "proto2",
|
|
8187
8362
|
"fields": {
|
|
8188
8363
|
"name": {
|
|
8189
8364
|
"type": "string",
|
|
8190
8365
|
"id": 1
|
|
8191
8366
|
},
|
|
8192
|
-
"
|
|
8367
|
+
"inputType": {
|
|
8193
8368
|
"type": "string",
|
|
8194
8369
|
"id": 2
|
|
8195
8370
|
},
|
|
8196
|
-
"
|
|
8371
|
+
"outputType": {
|
|
8197
8372
|
"type": "string",
|
|
8198
8373
|
"id": 3
|
|
8199
8374
|
},
|
|
@@ -8201,61 +8376,62 @@ exports.default = {
|
|
|
8201
8376
|
"type": "MethodOptions",
|
|
8202
8377
|
"id": 4
|
|
8203
8378
|
},
|
|
8204
|
-
"
|
|
8379
|
+
"clientStreaming": {
|
|
8205
8380
|
"type": "bool",
|
|
8206
8381
|
"id": 5
|
|
8207
8382
|
},
|
|
8208
|
-
"
|
|
8383
|
+
"serverStreaming": {
|
|
8209
8384
|
"type": "bool",
|
|
8210
8385
|
"id": 6
|
|
8211
8386
|
}
|
|
8212
8387
|
}
|
|
8213
8388
|
},
|
|
8214
8389
|
"FileOptions": {
|
|
8390
|
+
"edition": "proto2",
|
|
8215
8391
|
"fields": {
|
|
8216
|
-
"
|
|
8392
|
+
"javaPackage": {
|
|
8217
8393
|
"type": "string",
|
|
8218
8394
|
"id": 1
|
|
8219
8395
|
},
|
|
8220
|
-
"
|
|
8396
|
+
"javaOuterClassname": {
|
|
8221
8397
|
"type": "string",
|
|
8222
8398
|
"id": 8
|
|
8223
8399
|
},
|
|
8224
|
-
"
|
|
8400
|
+
"javaMultipleFiles": {
|
|
8225
8401
|
"type": "bool",
|
|
8226
8402
|
"id": 10
|
|
8227
8403
|
},
|
|
8228
|
-
"
|
|
8404
|
+
"javaGenerateEqualsAndHash": {
|
|
8229
8405
|
"type": "bool",
|
|
8230
8406
|
"id": 20,
|
|
8231
8407
|
"options": {
|
|
8232
8408
|
"deprecated": true
|
|
8233
8409
|
}
|
|
8234
8410
|
},
|
|
8235
|
-
"
|
|
8411
|
+
"javaStringCheckUtf8": {
|
|
8236
8412
|
"type": "bool",
|
|
8237
8413
|
"id": 27
|
|
8238
8414
|
},
|
|
8239
|
-
"
|
|
8415
|
+
"optimizeFor": {
|
|
8240
8416
|
"type": "OptimizeMode",
|
|
8241
8417
|
"id": 9,
|
|
8242
8418
|
"options": {
|
|
8243
8419
|
"default": "SPEED"
|
|
8244
8420
|
}
|
|
8245
8421
|
},
|
|
8246
|
-
"
|
|
8422
|
+
"goPackage": {
|
|
8247
8423
|
"type": "string",
|
|
8248
8424
|
"id": 11
|
|
8249
8425
|
},
|
|
8250
|
-
"
|
|
8426
|
+
"ccGenericServices": {
|
|
8251
8427
|
"type": "bool",
|
|
8252
8428
|
"id": 16
|
|
8253
8429
|
},
|
|
8254
|
-
"
|
|
8430
|
+
"javaGenericServices": {
|
|
8255
8431
|
"type": "bool",
|
|
8256
8432
|
"id": 17
|
|
8257
8433
|
},
|
|
8258
|
-
"
|
|
8434
|
+
"pyGenericServices": {
|
|
8259
8435
|
"type": "bool",
|
|
8260
8436
|
"id": 18
|
|
8261
8437
|
},
|
|
@@ -8263,19 +8439,46 @@ exports.default = {
|
|
|
8263
8439
|
"type": "bool",
|
|
8264
8440
|
"id": 23
|
|
8265
8441
|
},
|
|
8266
|
-
"
|
|
8442
|
+
"ccEnableArenas": {
|
|
8267
8443
|
"type": "bool",
|
|
8268
|
-
"id": 31
|
|
8444
|
+
"id": 31,
|
|
8445
|
+
"options": {
|
|
8446
|
+
"default": true
|
|
8447
|
+
}
|
|
8269
8448
|
},
|
|
8270
|
-
"
|
|
8449
|
+
"objcClassPrefix": {
|
|
8271
8450
|
"type": "string",
|
|
8272
8451
|
"id": 36
|
|
8273
8452
|
},
|
|
8274
|
-
"
|
|
8453
|
+
"csharpNamespace": {
|
|
8275
8454
|
"type": "string",
|
|
8276
8455
|
"id": 37
|
|
8277
8456
|
},
|
|
8278
|
-
"
|
|
8457
|
+
"swiftPrefix": {
|
|
8458
|
+
"type": "string",
|
|
8459
|
+
"id": 39
|
|
8460
|
+
},
|
|
8461
|
+
"phpClassPrefix": {
|
|
8462
|
+
"type": "string",
|
|
8463
|
+
"id": 40
|
|
8464
|
+
},
|
|
8465
|
+
"phpNamespace": {
|
|
8466
|
+
"type": "string",
|
|
8467
|
+
"id": 41
|
|
8468
|
+
},
|
|
8469
|
+
"phpMetadataNamespace": {
|
|
8470
|
+
"type": "string",
|
|
8471
|
+
"id": 44
|
|
8472
|
+
},
|
|
8473
|
+
"rubyPackage": {
|
|
8474
|
+
"type": "string",
|
|
8475
|
+
"id": 45
|
|
8476
|
+
},
|
|
8477
|
+
"features": {
|
|
8478
|
+
"type": "FeatureSet",
|
|
8479
|
+
"id": 50
|
|
8480
|
+
},
|
|
8481
|
+
"uninterpretedOption": {
|
|
8279
8482
|
"rule": "repeated",
|
|
8280
8483
|
"type": "UninterpretedOption",
|
|
8281
8484
|
"id": 999
|
|
@@ -8288,10 +8491,15 @@ exports.default = {
|
|
|
8288
8491
|
]
|
|
8289
8492
|
],
|
|
8290
8493
|
"reserved": [
|
|
8494
|
+
[
|
|
8495
|
+
42,
|
|
8496
|
+
42
|
|
8497
|
+
],
|
|
8291
8498
|
[
|
|
8292
8499
|
38,
|
|
8293
8500
|
38
|
|
8294
|
-
]
|
|
8501
|
+
],
|
|
8502
|
+
"php_generic_services"
|
|
8295
8503
|
],
|
|
8296
8504
|
"nested": {
|
|
8297
8505
|
"OptimizeMode": {
|
|
@@ -8304,12 +8512,13 @@ exports.default = {
|
|
|
8304
8512
|
}
|
|
8305
8513
|
},
|
|
8306
8514
|
"MessageOptions": {
|
|
8515
|
+
"edition": "proto2",
|
|
8307
8516
|
"fields": {
|
|
8308
|
-
"
|
|
8517
|
+
"messageSetWireFormat": {
|
|
8309
8518
|
"type": "bool",
|
|
8310
8519
|
"id": 1
|
|
8311
8520
|
},
|
|
8312
|
-
"
|
|
8521
|
+
"noStandardDescriptorAccessor": {
|
|
8313
8522
|
"type": "bool",
|
|
8314
8523
|
"id": 2
|
|
8315
8524
|
},
|
|
@@ -8317,11 +8526,22 @@ exports.default = {
|
|
|
8317
8526
|
"type": "bool",
|
|
8318
8527
|
"id": 3
|
|
8319
8528
|
},
|
|
8320
|
-
"
|
|
8529
|
+
"mapEntry": {
|
|
8321
8530
|
"type": "bool",
|
|
8322
8531
|
"id": 7
|
|
8323
8532
|
},
|
|
8324
|
-
"
|
|
8533
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
8534
|
+
"type": "bool",
|
|
8535
|
+
"id": 11,
|
|
8536
|
+
"options": {
|
|
8537
|
+
"deprecated": true
|
|
8538
|
+
}
|
|
8539
|
+
},
|
|
8540
|
+
"features": {
|
|
8541
|
+
"type": "FeatureSet",
|
|
8542
|
+
"id": 12
|
|
8543
|
+
},
|
|
8544
|
+
"uninterpretedOption": {
|
|
8325
8545
|
"rule": "repeated",
|
|
8326
8546
|
"type": "UninterpretedOption",
|
|
8327
8547
|
"id": 999
|
|
@@ -8334,13 +8554,30 @@ exports.default = {
|
|
|
8334
8554
|
]
|
|
8335
8555
|
],
|
|
8336
8556
|
"reserved": [
|
|
8557
|
+
[
|
|
8558
|
+
4,
|
|
8559
|
+
4
|
|
8560
|
+
],
|
|
8561
|
+
[
|
|
8562
|
+
5,
|
|
8563
|
+
5
|
|
8564
|
+
],
|
|
8565
|
+
[
|
|
8566
|
+
6,
|
|
8567
|
+
6
|
|
8568
|
+
],
|
|
8337
8569
|
[
|
|
8338
8570
|
8,
|
|
8339
8571
|
8
|
|
8572
|
+
],
|
|
8573
|
+
[
|
|
8574
|
+
9,
|
|
8575
|
+
9
|
|
8340
8576
|
]
|
|
8341
8577
|
]
|
|
8342
8578
|
},
|
|
8343
8579
|
"FieldOptions": {
|
|
8580
|
+
"edition": "proto2",
|
|
8344
8581
|
"fields": {
|
|
8345
8582
|
"ctype": {
|
|
8346
8583
|
"type": "CType",
|
|
@@ -8364,15 +8601,48 @@ exports.default = {
|
|
|
8364
8601
|
"type": "bool",
|
|
8365
8602
|
"id": 5
|
|
8366
8603
|
},
|
|
8604
|
+
"unverifiedLazy": {
|
|
8605
|
+
"type": "bool",
|
|
8606
|
+
"id": 15
|
|
8607
|
+
},
|
|
8367
8608
|
"deprecated": {
|
|
8368
8609
|
"type": "bool",
|
|
8369
8610
|
"id": 3
|
|
8370
8611
|
},
|
|
8371
8612
|
"weak": {
|
|
8372
8613
|
"type": "bool",
|
|
8373
|
-
"id": 10
|
|
8614
|
+
"id": 10,
|
|
8615
|
+
"options": {
|
|
8616
|
+
"deprecated": true
|
|
8617
|
+
}
|
|
8618
|
+
},
|
|
8619
|
+
"debugRedact": {
|
|
8620
|
+
"type": "bool",
|
|
8621
|
+
"id": 16
|
|
8622
|
+
},
|
|
8623
|
+
"retention": {
|
|
8624
|
+
"type": "OptionRetention",
|
|
8625
|
+
"id": 17
|
|
8626
|
+
},
|
|
8627
|
+
"targets": {
|
|
8628
|
+
"rule": "repeated",
|
|
8629
|
+
"type": "OptionTargetType",
|
|
8630
|
+
"id": 19
|
|
8631
|
+
},
|
|
8632
|
+
"editionDefaults": {
|
|
8633
|
+
"rule": "repeated",
|
|
8634
|
+
"type": "EditionDefault",
|
|
8635
|
+
"id": 20
|
|
8374
8636
|
},
|
|
8375
|
-
"
|
|
8637
|
+
"features": {
|
|
8638
|
+
"type": "FeatureSet",
|
|
8639
|
+
"id": 21
|
|
8640
|
+
},
|
|
8641
|
+
"featureSupport": {
|
|
8642
|
+
"type": "FeatureSupport",
|
|
8643
|
+
"id": 22
|
|
8644
|
+
},
|
|
8645
|
+
"uninterpretedOption": {
|
|
8376
8646
|
"rule": "repeated",
|
|
8377
8647
|
"type": "UninterpretedOption",
|
|
8378
8648
|
"id": 999
|
|
@@ -8388,6 +8658,10 @@ exports.default = {
|
|
|
8388
8658
|
[
|
|
8389
8659
|
4,
|
|
8390
8660
|
4
|
|
8661
|
+
],
|
|
8662
|
+
[
|
|
8663
|
+
18,
|
|
8664
|
+
18
|
|
8391
8665
|
]
|
|
8392
8666
|
],
|
|
8393
8667
|
"nested": {
|
|
@@ -8404,12 +8678,70 @@ exports.default = {
|
|
|
8404
8678
|
"JS_STRING": 1,
|
|
8405
8679
|
"JS_NUMBER": 2
|
|
8406
8680
|
}
|
|
8681
|
+
},
|
|
8682
|
+
"OptionRetention": {
|
|
8683
|
+
"values": {
|
|
8684
|
+
"RETENTION_UNKNOWN": 0,
|
|
8685
|
+
"RETENTION_RUNTIME": 1,
|
|
8686
|
+
"RETENTION_SOURCE": 2
|
|
8687
|
+
}
|
|
8688
|
+
},
|
|
8689
|
+
"OptionTargetType": {
|
|
8690
|
+
"values": {
|
|
8691
|
+
"TARGET_TYPE_UNKNOWN": 0,
|
|
8692
|
+
"TARGET_TYPE_FILE": 1,
|
|
8693
|
+
"TARGET_TYPE_EXTENSION_RANGE": 2,
|
|
8694
|
+
"TARGET_TYPE_MESSAGE": 3,
|
|
8695
|
+
"TARGET_TYPE_FIELD": 4,
|
|
8696
|
+
"TARGET_TYPE_ONEOF": 5,
|
|
8697
|
+
"TARGET_TYPE_ENUM": 6,
|
|
8698
|
+
"TARGET_TYPE_ENUM_ENTRY": 7,
|
|
8699
|
+
"TARGET_TYPE_SERVICE": 8,
|
|
8700
|
+
"TARGET_TYPE_METHOD": 9
|
|
8701
|
+
}
|
|
8702
|
+
},
|
|
8703
|
+
"EditionDefault": {
|
|
8704
|
+
"fields": {
|
|
8705
|
+
"edition": {
|
|
8706
|
+
"type": "Edition",
|
|
8707
|
+
"id": 3
|
|
8708
|
+
},
|
|
8709
|
+
"value": {
|
|
8710
|
+
"type": "string",
|
|
8711
|
+
"id": 2
|
|
8712
|
+
}
|
|
8713
|
+
}
|
|
8714
|
+
},
|
|
8715
|
+
"FeatureSupport": {
|
|
8716
|
+
"fields": {
|
|
8717
|
+
"editionIntroduced": {
|
|
8718
|
+
"type": "Edition",
|
|
8719
|
+
"id": 1
|
|
8720
|
+
},
|
|
8721
|
+
"editionDeprecated": {
|
|
8722
|
+
"type": "Edition",
|
|
8723
|
+
"id": 2
|
|
8724
|
+
},
|
|
8725
|
+
"deprecationWarning": {
|
|
8726
|
+
"type": "string",
|
|
8727
|
+
"id": 3
|
|
8728
|
+
},
|
|
8729
|
+
"editionRemoved": {
|
|
8730
|
+
"type": "Edition",
|
|
8731
|
+
"id": 4
|
|
8732
|
+
}
|
|
8733
|
+
}
|
|
8407
8734
|
}
|
|
8408
8735
|
}
|
|
8409
8736
|
},
|
|
8410
8737
|
"OneofOptions": {
|
|
8738
|
+
"edition": "proto2",
|
|
8411
8739
|
"fields": {
|
|
8412
|
-
"
|
|
8740
|
+
"features": {
|
|
8741
|
+
"type": "FeatureSet",
|
|
8742
|
+
"id": 1
|
|
8743
|
+
},
|
|
8744
|
+
"uninterpretedOption": {
|
|
8413
8745
|
"rule": "repeated",
|
|
8414
8746
|
"type": "UninterpretedOption",
|
|
8415
8747
|
"id": 999
|
|
@@ -8423,8 +8755,9 @@ exports.default = {
|
|
|
8423
8755
|
]
|
|
8424
8756
|
},
|
|
8425
8757
|
"EnumOptions": {
|
|
8758
|
+
"edition": "proto2",
|
|
8426
8759
|
"fields": {
|
|
8427
|
-
"
|
|
8760
|
+
"allowAlias": {
|
|
8428
8761
|
"type": "bool",
|
|
8429
8762
|
"id": 2
|
|
8430
8763
|
},
|
|
@@ -8432,7 +8765,18 @@ exports.default = {
|
|
|
8432
8765
|
"type": "bool",
|
|
8433
8766
|
"id": 3
|
|
8434
8767
|
},
|
|
8435
|
-
"
|
|
8768
|
+
"deprecatedLegacyJsonFieldConflicts": {
|
|
8769
|
+
"type": "bool",
|
|
8770
|
+
"id": 6,
|
|
8771
|
+
"options": {
|
|
8772
|
+
"deprecated": true
|
|
8773
|
+
}
|
|
8774
|
+
},
|
|
8775
|
+
"features": {
|
|
8776
|
+
"type": "FeatureSet",
|
|
8777
|
+
"id": 7
|
|
8778
|
+
},
|
|
8779
|
+
"uninterpretedOption": {
|
|
8436
8780
|
"rule": "repeated",
|
|
8437
8781
|
"type": "UninterpretedOption",
|
|
8438
8782
|
"id": 999
|
|
@@ -8443,15 +8787,34 @@ exports.default = {
|
|
|
8443
8787
|
1000,
|
|
8444
8788
|
536870911
|
|
8445
8789
|
]
|
|
8790
|
+
],
|
|
8791
|
+
"reserved": [
|
|
8792
|
+
[
|
|
8793
|
+
5,
|
|
8794
|
+
5
|
|
8795
|
+
]
|
|
8446
8796
|
]
|
|
8447
8797
|
},
|
|
8448
8798
|
"EnumValueOptions": {
|
|
8799
|
+
"edition": "proto2",
|
|
8449
8800
|
"fields": {
|
|
8450
8801
|
"deprecated": {
|
|
8451
8802
|
"type": "bool",
|
|
8452
8803
|
"id": 1
|
|
8453
8804
|
},
|
|
8454
|
-
"
|
|
8805
|
+
"features": {
|
|
8806
|
+
"type": "FeatureSet",
|
|
8807
|
+
"id": 2
|
|
8808
|
+
},
|
|
8809
|
+
"debugRedact": {
|
|
8810
|
+
"type": "bool",
|
|
8811
|
+
"id": 3
|
|
8812
|
+
},
|
|
8813
|
+
"featureSupport": {
|
|
8814
|
+
"type": "FieldOptions.FeatureSupport",
|
|
8815
|
+
"id": 4
|
|
8816
|
+
},
|
|
8817
|
+
"uninterpretedOption": {
|
|
8455
8818
|
"rule": "repeated",
|
|
8456
8819
|
"type": "UninterpretedOption",
|
|
8457
8820
|
"id": 999
|
|
@@ -8465,12 +8828,17 @@ exports.default = {
|
|
|
8465
8828
|
]
|
|
8466
8829
|
},
|
|
8467
8830
|
"ServiceOptions": {
|
|
8831
|
+
"edition": "proto2",
|
|
8468
8832
|
"fields": {
|
|
8833
|
+
"features": {
|
|
8834
|
+
"type": "FeatureSet",
|
|
8835
|
+
"id": 34
|
|
8836
|
+
},
|
|
8469
8837
|
"deprecated": {
|
|
8470
8838
|
"type": "bool",
|
|
8471
8839
|
"id": 33
|
|
8472
8840
|
},
|
|
8473
|
-
"
|
|
8841
|
+
"uninterpretedOption": {
|
|
8474
8842
|
"rule": "repeated",
|
|
8475
8843
|
"type": "UninterpretedOption",
|
|
8476
8844
|
"id": 999
|
|
@@ -8484,12 +8852,24 @@ exports.default = {
|
|
|
8484
8852
|
]
|
|
8485
8853
|
},
|
|
8486
8854
|
"MethodOptions": {
|
|
8855
|
+
"edition": "proto2",
|
|
8487
8856
|
"fields": {
|
|
8488
8857
|
"deprecated": {
|
|
8489
8858
|
"type": "bool",
|
|
8490
8859
|
"id": 33
|
|
8491
8860
|
},
|
|
8492
|
-
"
|
|
8861
|
+
"idempotencyLevel": {
|
|
8862
|
+
"type": "IdempotencyLevel",
|
|
8863
|
+
"id": 34,
|
|
8864
|
+
"options": {
|
|
8865
|
+
"default": "IDEMPOTENCY_UNKNOWN"
|
|
8866
|
+
}
|
|
8867
|
+
},
|
|
8868
|
+
"features": {
|
|
8869
|
+
"type": "FeatureSet",
|
|
8870
|
+
"id": 35
|
|
8871
|
+
},
|
|
8872
|
+
"uninterpretedOption": {
|
|
8493
8873
|
"rule": "repeated",
|
|
8494
8874
|
"type": "UninterpretedOption",
|
|
8495
8875
|
"id": 999
|
|
@@ -8500,36 +8880,46 @@ exports.default = {
|
|
|
8500
8880
|
1000,
|
|
8501
8881
|
536870911
|
|
8502
8882
|
]
|
|
8503
|
-
]
|
|
8883
|
+
],
|
|
8884
|
+
"nested": {
|
|
8885
|
+
"IdempotencyLevel": {
|
|
8886
|
+
"values": {
|
|
8887
|
+
"IDEMPOTENCY_UNKNOWN": 0,
|
|
8888
|
+
"NO_SIDE_EFFECTS": 1,
|
|
8889
|
+
"IDEMPOTENT": 2
|
|
8890
|
+
}
|
|
8891
|
+
}
|
|
8892
|
+
}
|
|
8504
8893
|
},
|
|
8505
8894
|
"UninterpretedOption": {
|
|
8895
|
+
"edition": "proto2",
|
|
8506
8896
|
"fields": {
|
|
8507
8897
|
"name": {
|
|
8508
8898
|
"rule": "repeated",
|
|
8509
8899
|
"type": "NamePart",
|
|
8510
8900
|
"id": 2
|
|
8511
8901
|
},
|
|
8512
|
-
"
|
|
8902
|
+
"identifierValue": {
|
|
8513
8903
|
"type": "string",
|
|
8514
8904
|
"id": 3
|
|
8515
8905
|
},
|
|
8516
|
-
"
|
|
8906
|
+
"positiveIntValue": {
|
|
8517
8907
|
"type": "uint64",
|
|
8518
8908
|
"id": 4
|
|
8519
8909
|
},
|
|
8520
|
-
"
|
|
8910
|
+
"negativeIntValue": {
|
|
8521
8911
|
"type": "int64",
|
|
8522
8912
|
"id": 5
|
|
8523
8913
|
},
|
|
8524
|
-
"
|
|
8914
|
+
"doubleValue": {
|
|
8525
8915
|
"type": "double",
|
|
8526
8916
|
"id": 6
|
|
8527
8917
|
},
|
|
8528
|
-
"
|
|
8918
|
+
"stringValue": {
|
|
8529
8919
|
"type": "bytes",
|
|
8530
8920
|
"id": 7
|
|
8531
8921
|
},
|
|
8532
|
-
"
|
|
8922
|
+
"aggregateValue": {
|
|
8533
8923
|
"type": "string",
|
|
8534
8924
|
"id": 8
|
|
8535
8925
|
}
|
|
@@ -8537,12 +8927,12 @@ exports.default = {
|
|
|
8537
8927
|
"nested": {
|
|
8538
8928
|
"NamePart": {
|
|
8539
8929
|
"fields": {
|
|
8540
|
-
"
|
|
8930
|
+
"namePart": {
|
|
8541
8931
|
"rule": "required",
|
|
8542
8932
|
"type": "string",
|
|
8543
8933
|
"id": 1
|
|
8544
8934
|
},
|
|
8545
|
-
"
|
|
8935
|
+
"isExtension": {
|
|
8546
8936
|
"rule": "required",
|
|
8547
8937
|
"type": "bool",
|
|
8548
8938
|
"id": 2
|
|
@@ -8551,7 +8941,240 @@ exports.default = {
|
|
|
8551
8941
|
}
|
|
8552
8942
|
}
|
|
8553
8943
|
},
|
|
8944
|
+
"FeatureSet": {
|
|
8945
|
+
"edition": "proto2",
|
|
8946
|
+
"fields": {
|
|
8947
|
+
"fieldPresence": {
|
|
8948
|
+
"type": "FieldPresence",
|
|
8949
|
+
"id": 1,
|
|
8950
|
+
"options": {
|
|
8951
|
+
"retention": "RETENTION_RUNTIME",
|
|
8952
|
+
"targets": "TARGET_TYPE_FILE",
|
|
8953
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
8954
|
+
"edition_defaults.edition": "EDITION_2023",
|
|
8955
|
+
"edition_defaults.value": "EXPLICIT"
|
|
8956
|
+
}
|
|
8957
|
+
},
|
|
8958
|
+
"enumType": {
|
|
8959
|
+
"type": "EnumType",
|
|
8960
|
+
"id": 2,
|
|
8961
|
+
"options": {
|
|
8962
|
+
"retention": "RETENTION_RUNTIME",
|
|
8963
|
+
"targets": "TARGET_TYPE_FILE",
|
|
8964
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
8965
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
8966
|
+
"edition_defaults.value": "OPEN"
|
|
8967
|
+
}
|
|
8968
|
+
},
|
|
8969
|
+
"repeatedFieldEncoding": {
|
|
8970
|
+
"type": "RepeatedFieldEncoding",
|
|
8971
|
+
"id": 3,
|
|
8972
|
+
"options": {
|
|
8973
|
+
"retention": "RETENTION_RUNTIME",
|
|
8974
|
+
"targets": "TARGET_TYPE_FILE",
|
|
8975
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
8976
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
8977
|
+
"edition_defaults.value": "PACKED"
|
|
8978
|
+
}
|
|
8979
|
+
},
|
|
8980
|
+
"utf8Validation": {
|
|
8981
|
+
"type": "Utf8Validation",
|
|
8982
|
+
"id": 4,
|
|
8983
|
+
"options": {
|
|
8984
|
+
"retention": "RETENTION_RUNTIME",
|
|
8985
|
+
"targets": "TARGET_TYPE_FILE",
|
|
8986
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
8987
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
8988
|
+
"edition_defaults.value": "VERIFY"
|
|
8989
|
+
}
|
|
8990
|
+
},
|
|
8991
|
+
"messageEncoding": {
|
|
8992
|
+
"type": "MessageEncoding",
|
|
8993
|
+
"id": 5,
|
|
8994
|
+
"options": {
|
|
8995
|
+
"retention": "RETENTION_RUNTIME",
|
|
8996
|
+
"targets": "TARGET_TYPE_FILE",
|
|
8997
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
8998
|
+
"edition_defaults.edition": "EDITION_LEGACY",
|
|
8999
|
+
"edition_defaults.value": "LENGTH_PREFIXED"
|
|
9000
|
+
}
|
|
9001
|
+
},
|
|
9002
|
+
"jsonFormat": {
|
|
9003
|
+
"type": "JsonFormat",
|
|
9004
|
+
"id": 6,
|
|
9005
|
+
"options": {
|
|
9006
|
+
"retention": "RETENTION_RUNTIME",
|
|
9007
|
+
"targets": "TARGET_TYPE_FILE",
|
|
9008
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
9009
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
9010
|
+
"edition_defaults.value": "ALLOW"
|
|
9011
|
+
}
|
|
9012
|
+
},
|
|
9013
|
+
"enforceNamingStyle": {
|
|
9014
|
+
"type": "EnforceNamingStyle",
|
|
9015
|
+
"id": 7,
|
|
9016
|
+
"options": {
|
|
9017
|
+
"retention": "RETENTION_SOURCE",
|
|
9018
|
+
"targets": "TARGET_TYPE_METHOD",
|
|
9019
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
9020
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
9021
|
+
"edition_defaults.value": "STYLE2024"
|
|
9022
|
+
}
|
|
9023
|
+
},
|
|
9024
|
+
"defaultSymbolVisibility": {
|
|
9025
|
+
"type": "VisibilityFeature.DefaultSymbolVisibility",
|
|
9026
|
+
"id": 8,
|
|
9027
|
+
"options": {
|
|
9028
|
+
"retention": "RETENTION_SOURCE",
|
|
9029
|
+
"targets": "TARGET_TYPE_FILE",
|
|
9030
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
9031
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
9032
|
+
"edition_defaults.value": "EXPORT_TOP_LEVEL"
|
|
9033
|
+
}
|
|
9034
|
+
}
|
|
9035
|
+
},
|
|
9036
|
+
"extensions": [
|
|
9037
|
+
[
|
|
9038
|
+
1000,
|
|
9039
|
+
9994
|
|
9040
|
+
],
|
|
9041
|
+
[
|
|
9042
|
+
9995,
|
|
9043
|
+
9999
|
|
9044
|
+
],
|
|
9045
|
+
[
|
|
9046
|
+
10000,
|
|
9047
|
+
10000
|
|
9048
|
+
]
|
|
9049
|
+
],
|
|
9050
|
+
"reserved": [
|
|
9051
|
+
[
|
|
9052
|
+
999,
|
|
9053
|
+
999
|
|
9054
|
+
]
|
|
9055
|
+
],
|
|
9056
|
+
"nested": {
|
|
9057
|
+
"FieldPresence": {
|
|
9058
|
+
"values": {
|
|
9059
|
+
"FIELD_PRESENCE_UNKNOWN": 0,
|
|
9060
|
+
"EXPLICIT": 1,
|
|
9061
|
+
"IMPLICIT": 2,
|
|
9062
|
+
"LEGACY_REQUIRED": 3
|
|
9063
|
+
}
|
|
9064
|
+
},
|
|
9065
|
+
"EnumType": {
|
|
9066
|
+
"values": {
|
|
9067
|
+
"ENUM_TYPE_UNKNOWN": 0,
|
|
9068
|
+
"OPEN": 1,
|
|
9069
|
+
"CLOSED": 2
|
|
9070
|
+
}
|
|
9071
|
+
},
|
|
9072
|
+
"RepeatedFieldEncoding": {
|
|
9073
|
+
"values": {
|
|
9074
|
+
"REPEATED_FIELD_ENCODING_UNKNOWN": 0,
|
|
9075
|
+
"PACKED": 1,
|
|
9076
|
+
"EXPANDED": 2
|
|
9077
|
+
}
|
|
9078
|
+
},
|
|
9079
|
+
"Utf8Validation": {
|
|
9080
|
+
"values": {
|
|
9081
|
+
"UTF8_VALIDATION_UNKNOWN": 0,
|
|
9082
|
+
"VERIFY": 2,
|
|
9083
|
+
"NONE": 3
|
|
9084
|
+
}
|
|
9085
|
+
},
|
|
9086
|
+
"MessageEncoding": {
|
|
9087
|
+
"values": {
|
|
9088
|
+
"MESSAGE_ENCODING_UNKNOWN": 0,
|
|
9089
|
+
"LENGTH_PREFIXED": 1,
|
|
9090
|
+
"DELIMITED": 2
|
|
9091
|
+
}
|
|
9092
|
+
},
|
|
9093
|
+
"JsonFormat": {
|
|
9094
|
+
"values": {
|
|
9095
|
+
"JSON_FORMAT_UNKNOWN": 0,
|
|
9096
|
+
"ALLOW": 1,
|
|
9097
|
+
"LEGACY_BEST_EFFORT": 2
|
|
9098
|
+
}
|
|
9099
|
+
},
|
|
9100
|
+
"EnforceNamingStyle": {
|
|
9101
|
+
"values": {
|
|
9102
|
+
"ENFORCE_NAMING_STYLE_UNKNOWN": 0,
|
|
9103
|
+
"STYLE2024": 1,
|
|
9104
|
+
"STYLE_LEGACY": 2
|
|
9105
|
+
}
|
|
9106
|
+
},
|
|
9107
|
+
"VisibilityFeature": {
|
|
9108
|
+
"fields": {},
|
|
9109
|
+
"reserved": [
|
|
9110
|
+
[
|
|
9111
|
+
1,
|
|
9112
|
+
536870911
|
|
9113
|
+
]
|
|
9114
|
+
],
|
|
9115
|
+
"nested": {
|
|
9116
|
+
"DefaultSymbolVisibility": {
|
|
9117
|
+
"values": {
|
|
9118
|
+
"DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
|
|
9119
|
+
"EXPORT_ALL": 1,
|
|
9120
|
+
"EXPORT_TOP_LEVEL": 2,
|
|
9121
|
+
"LOCAL_ALL": 3,
|
|
9122
|
+
"STRICT": 4
|
|
9123
|
+
}
|
|
9124
|
+
}
|
|
9125
|
+
}
|
|
9126
|
+
}
|
|
9127
|
+
}
|
|
9128
|
+
},
|
|
9129
|
+
"FeatureSetDefaults": {
|
|
9130
|
+
"edition": "proto2",
|
|
9131
|
+
"fields": {
|
|
9132
|
+
"defaults": {
|
|
9133
|
+
"rule": "repeated",
|
|
9134
|
+
"type": "FeatureSetEditionDefault",
|
|
9135
|
+
"id": 1
|
|
9136
|
+
},
|
|
9137
|
+
"minimumEdition": {
|
|
9138
|
+
"type": "Edition",
|
|
9139
|
+
"id": 4
|
|
9140
|
+
},
|
|
9141
|
+
"maximumEdition": {
|
|
9142
|
+
"type": "Edition",
|
|
9143
|
+
"id": 5
|
|
9144
|
+
}
|
|
9145
|
+
},
|
|
9146
|
+
"nested": {
|
|
9147
|
+
"FeatureSetEditionDefault": {
|
|
9148
|
+
"fields": {
|
|
9149
|
+
"edition": {
|
|
9150
|
+
"type": "Edition",
|
|
9151
|
+
"id": 3
|
|
9152
|
+
},
|
|
9153
|
+
"overridableFeatures": {
|
|
9154
|
+
"type": "FeatureSet",
|
|
9155
|
+
"id": 4
|
|
9156
|
+
},
|
|
9157
|
+
"fixedFeatures": {
|
|
9158
|
+
"type": "FeatureSet",
|
|
9159
|
+
"id": 5
|
|
9160
|
+
}
|
|
9161
|
+
},
|
|
9162
|
+
"reserved": [
|
|
9163
|
+
[
|
|
9164
|
+
1,
|
|
9165
|
+
1
|
|
9166
|
+
],
|
|
9167
|
+
[
|
|
9168
|
+
2,
|
|
9169
|
+
2
|
|
9170
|
+
],
|
|
9171
|
+
"features"
|
|
9172
|
+
]
|
|
9173
|
+
}
|
|
9174
|
+
}
|
|
9175
|
+
},
|
|
8554
9176
|
"SourceCodeInfo": {
|
|
9177
|
+
"edition": "proto2",
|
|
8555
9178
|
"fields": {
|
|
8556
9179
|
"location": {
|
|
8557
9180
|
"rule": "repeated",
|
|
@@ -8559,28 +9182,40 @@ exports.default = {
|
|
|
8559
9182
|
"id": 1
|
|
8560
9183
|
}
|
|
8561
9184
|
},
|
|
9185
|
+
"extensions": [
|
|
9186
|
+
[
|
|
9187
|
+
536000000,
|
|
9188
|
+
536000000
|
|
9189
|
+
]
|
|
9190
|
+
],
|
|
8562
9191
|
"nested": {
|
|
8563
9192
|
"Location": {
|
|
8564
9193
|
"fields": {
|
|
8565
9194
|
"path": {
|
|
8566
9195
|
"rule": "repeated",
|
|
8567
9196
|
"type": "int32",
|
|
8568
|
-
"id": 1
|
|
9197
|
+
"id": 1,
|
|
9198
|
+
"options": {
|
|
9199
|
+
"packed": true
|
|
9200
|
+
}
|
|
8569
9201
|
},
|
|
8570
9202
|
"span": {
|
|
8571
9203
|
"rule": "repeated",
|
|
8572
9204
|
"type": "int32",
|
|
8573
|
-
"id": 2
|
|
9205
|
+
"id": 2,
|
|
9206
|
+
"options": {
|
|
9207
|
+
"packed": true
|
|
9208
|
+
}
|
|
8574
9209
|
},
|
|
8575
|
-
"
|
|
9210
|
+
"leadingComments": {
|
|
8576
9211
|
"type": "string",
|
|
8577
9212
|
"id": 3
|
|
8578
9213
|
},
|
|
8579
|
-
"
|
|
9214
|
+
"trailingComments": {
|
|
8580
9215
|
"type": "string",
|
|
8581
9216
|
"id": 4
|
|
8582
9217
|
},
|
|
8583
|
-
"
|
|
9218
|
+
"leadingDetachedComments": {
|
|
8584
9219
|
"rule": "repeated",
|
|
8585
9220
|
"type": "string",
|
|
8586
9221
|
"id": 6
|
|
@@ -8590,6 +9225,7 @@ exports.default = {
|
|
|
8590
9225
|
}
|
|
8591
9226
|
},
|
|
8592
9227
|
"GeneratedCodeInfo": {
|
|
9228
|
+
"edition": "proto2",
|
|
8593
9229
|
"fields": {
|
|
8594
9230
|
"annotation": {
|
|
8595
9231
|
"rule": "repeated",
|
|
@@ -8603,9 +9239,12 @@ exports.default = {
|
|
|
8603
9239
|
"path": {
|
|
8604
9240
|
"rule": "repeated",
|
|
8605
9241
|
"type": "int32",
|
|
8606
|
-
"id": 1
|
|
9242
|
+
"id": 1,
|
|
9243
|
+
"options": {
|
|
9244
|
+
"packed": true
|
|
9245
|
+
}
|
|
8607
9246
|
},
|
|
8608
|
-
"
|
|
9247
|
+
"sourceFile": {
|
|
8609
9248
|
"type": "string",
|
|
8610
9249
|
"id": 2
|
|
8611
9250
|
},
|
|
@@ -8616,10 +9255,31 @@ exports.default = {
|
|
|
8616
9255
|
"end": {
|
|
8617
9256
|
"type": "int32",
|
|
8618
9257
|
"id": 4
|
|
9258
|
+
},
|
|
9259
|
+
"semantic": {
|
|
9260
|
+
"type": "Semantic",
|
|
9261
|
+
"id": 5
|
|
9262
|
+
}
|
|
9263
|
+
},
|
|
9264
|
+
"nested": {
|
|
9265
|
+
"Semantic": {
|
|
9266
|
+
"values": {
|
|
9267
|
+
"NONE": 0,
|
|
9268
|
+
"SET": 1,
|
|
9269
|
+
"ALIAS": 2
|
|
9270
|
+
}
|
|
8619
9271
|
}
|
|
8620
9272
|
}
|
|
8621
9273
|
}
|
|
8622
9274
|
}
|
|
9275
|
+
},
|
|
9276
|
+
"SymbolVisibility": {
|
|
9277
|
+
"edition": "proto2",
|
|
9278
|
+
"values": {
|
|
9279
|
+
"VISIBILITY_UNSET": 0,
|
|
9280
|
+
"VISIBILITY_LOCAL": 1,
|
|
9281
|
+
"VISIBILITY_EXPORT": 2
|
|
9282
|
+
}
|
|
8623
9283
|
}
|
|
8624
9284
|
}
|
|
8625
9285
|
}
|