@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
|
@@ -558,6 +558,27 @@ declare const _default: {
|
|
|
558
558
|
};
|
|
559
559
|
};
|
|
560
560
|
};
|
|
561
|
+
FieldPartialUpdateOp: {
|
|
562
|
+
fields: {
|
|
563
|
+
fieldName: {
|
|
564
|
+
type: string;
|
|
565
|
+
id: number;
|
|
566
|
+
};
|
|
567
|
+
op: {
|
|
568
|
+
type: string;
|
|
569
|
+
id: number;
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
nested: {
|
|
573
|
+
OpType: {
|
|
574
|
+
values: {
|
|
575
|
+
REPLACE: number;
|
|
576
|
+
ARRAY_APPEND: number;
|
|
577
|
+
ARRAY_REMOVE: number;
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
561
582
|
FieldData: {
|
|
562
583
|
oneofs: {
|
|
563
584
|
field: {
|
|
@@ -1665,6 +1686,7 @@ declare const _default: {
|
|
|
1665
1686
|
protobuf: {
|
|
1666
1687
|
nested: {
|
|
1667
1688
|
FileDescriptorSet: {
|
|
1689
|
+
edition: string;
|
|
1668
1690
|
fields: {
|
|
1669
1691
|
file: {
|
|
1670
1692
|
rule: string;
|
|
@@ -1672,8 +1694,27 @@ declare const _default: {
|
|
|
1672
1694
|
id: number;
|
|
1673
1695
|
};
|
|
1674
1696
|
};
|
|
1697
|
+
extensions: number[][];
|
|
1698
|
+
};
|
|
1699
|
+
Edition: {
|
|
1700
|
+
edition: string;
|
|
1701
|
+
values: {
|
|
1702
|
+
EDITION_UNKNOWN: number;
|
|
1703
|
+
EDITION_LEGACY: number;
|
|
1704
|
+
EDITION_PROTO2: number;
|
|
1705
|
+
EDITION_PROTO3: number;
|
|
1706
|
+
EDITION_2023: number;
|
|
1707
|
+
EDITION_2024: number;
|
|
1708
|
+
EDITION_1_TEST_ONLY: number;
|
|
1709
|
+
EDITION_2_TEST_ONLY: number;
|
|
1710
|
+
EDITION_99997_TEST_ONLY: number;
|
|
1711
|
+
EDITION_99998_TEST_ONLY: number;
|
|
1712
|
+
EDITION_99999_TEST_ONLY: number;
|
|
1713
|
+
EDITION_MAX: number;
|
|
1714
|
+
};
|
|
1675
1715
|
};
|
|
1676
1716
|
FileDescriptorProto: {
|
|
1717
|
+
edition: string;
|
|
1677
1718
|
fields: {
|
|
1678
1719
|
name: {
|
|
1679
1720
|
type: string;
|
|
@@ -1692,17 +1733,16 @@ declare const _default: {
|
|
|
1692
1733
|
rule: string;
|
|
1693
1734
|
type: string;
|
|
1694
1735
|
id: number;
|
|
1695
|
-
options: {
|
|
1696
|
-
packed: boolean;
|
|
1697
|
-
};
|
|
1698
1736
|
};
|
|
1699
1737
|
weakDependency: {
|
|
1700
1738
|
rule: string;
|
|
1701
1739
|
type: string;
|
|
1702
1740
|
id: number;
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1741
|
+
};
|
|
1742
|
+
optionDependency: {
|
|
1743
|
+
rule: string;
|
|
1744
|
+
type: string;
|
|
1745
|
+
id: number;
|
|
1706
1746
|
};
|
|
1707
1747
|
messageType: {
|
|
1708
1748
|
rule: string;
|
|
@@ -1736,9 +1776,14 @@ declare const _default: {
|
|
|
1736
1776
|
type: string;
|
|
1737
1777
|
id: number;
|
|
1738
1778
|
};
|
|
1779
|
+
edition: {
|
|
1780
|
+
type: string;
|
|
1781
|
+
id: number;
|
|
1782
|
+
};
|
|
1739
1783
|
};
|
|
1740
1784
|
};
|
|
1741
1785
|
DescriptorProto: {
|
|
1786
|
+
edition: string;
|
|
1742
1787
|
fields: {
|
|
1743
1788
|
name: {
|
|
1744
1789
|
type: string;
|
|
@@ -1788,6 +1833,10 @@ declare const _default: {
|
|
|
1788
1833
|
type: string;
|
|
1789
1834
|
id: number;
|
|
1790
1835
|
};
|
|
1836
|
+
visibility: {
|
|
1837
|
+
type: string;
|
|
1838
|
+
id: number;
|
|
1839
|
+
};
|
|
1791
1840
|
};
|
|
1792
1841
|
nested: {
|
|
1793
1842
|
ExtensionRange: {
|
|
@@ -1800,6 +1849,10 @@ declare const _default: {
|
|
|
1800
1849
|
type: string;
|
|
1801
1850
|
id: number;
|
|
1802
1851
|
};
|
|
1852
|
+
options: {
|
|
1853
|
+
type: string;
|
|
1854
|
+
id: number;
|
|
1855
|
+
};
|
|
1803
1856
|
};
|
|
1804
1857
|
};
|
|
1805
1858
|
ReservedRange: {
|
|
@@ -1816,7 +1869,72 @@ declare const _default: {
|
|
|
1816
1869
|
};
|
|
1817
1870
|
};
|
|
1818
1871
|
};
|
|
1872
|
+
ExtensionRangeOptions: {
|
|
1873
|
+
edition: string;
|
|
1874
|
+
fields: {
|
|
1875
|
+
uninterpretedOption: {
|
|
1876
|
+
rule: string;
|
|
1877
|
+
type: string;
|
|
1878
|
+
id: number;
|
|
1879
|
+
};
|
|
1880
|
+
declaration: {
|
|
1881
|
+
rule: string;
|
|
1882
|
+
type: string;
|
|
1883
|
+
id: number;
|
|
1884
|
+
options: {
|
|
1885
|
+
retention: string;
|
|
1886
|
+
};
|
|
1887
|
+
};
|
|
1888
|
+
features: {
|
|
1889
|
+
type: string;
|
|
1890
|
+
id: number;
|
|
1891
|
+
};
|
|
1892
|
+
verification: {
|
|
1893
|
+
type: string;
|
|
1894
|
+
id: number;
|
|
1895
|
+
options: {
|
|
1896
|
+
default: string;
|
|
1897
|
+
retention: string;
|
|
1898
|
+
};
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
extensions: number[][];
|
|
1902
|
+
nested: {
|
|
1903
|
+
Declaration: {
|
|
1904
|
+
fields: {
|
|
1905
|
+
number: {
|
|
1906
|
+
type: string;
|
|
1907
|
+
id: number;
|
|
1908
|
+
};
|
|
1909
|
+
fullName: {
|
|
1910
|
+
type: string;
|
|
1911
|
+
id: number;
|
|
1912
|
+
};
|
|
1913
|
+
type: {
|
|
1914
|
+
type: string;
|
|
1915
|
+
id: number;
|
|
1916
|
+
};
|
|
1917
|
+
reserved: {
|
|
1918
|
+
type: string;
|
|
1919
|
+
id: number;
|
|
1920
|
+
};
|
|
1921
|
+
repeated: {
|
|
1922
|
+
type: string;
|
|
1923
|
+
id: number;
|
|
1924
|
+
};
|
|
1925
|
+
};
|
|
1926
|
+
reserved: number[][];
|
|
1927
|
+
};
|
|
1928
|
+
VerificationState: {
|
|
1929
|
+
values: {
|
|
1930
|
+
DECLARATION: number;
|
|
1931
|
+
UNVERIFIED: number;
|
|
1932
|
+
};
|
|
1933
|
+
};
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1819
1936
|
FieldDescriptorProto: {
|
|
1937
|
+
edition: string;
|
|
1820
1938
|
fields: {
|
|
1821
1939
|
name: {
|
|
1822
1940
|
type: string;
|
|
@@ -1858,6 +1976,10 @@ declare const _default: {
|
|
|
1858
1976
|
type: string;
|
|
1859
1977
|
id: number;
|
|
1860
1978
|
};
|
|
1979
|
+
proto3Optional: {
|
|
1980
|
+
type: string;
|
|
1981
|
+
id: number;
|
|
1982
|
+
};
|
|
1861
1983
|
};
|
|
1862
1984
|
nested: {
|
|
1863
1985
|
Type: {
|
|
@@ -1885,13 +2007,14 @@ declare const _default: {
|
|
|
1885
2007
|
Label: {
|
|
1886
2008
|
values: {
|
|
1887
2009
|
LABEL_OPTIONAL: number;
|
|
1888
|
-
LABEL_REQUIRED: number;
|
|
1889
2010
|
LABEL_REPEATED: number;
|
|
2011
|
+
LABEL_REQUIRED: number;
|
|
1890
2012
|
};
|
|
1891
2013
|
};
|
|
1892
2014
|
};
|
|
1893
2015
|
};
|
|
1894
2016
|
OneofDescriptorProto: {
|
|
2017
|
+
edition: string;
|
|
1895
2018
|
fields: {
|
|
1896
2019
|
name: {
|
|
1897
2020
|
type: string;
|
|
@@ -1904,6 +2027,7 @@ declare const _default: {
|
|
|
1904
2027
|
};
|
|
1905
2028
|
};
|
|
1906
2029
|
EnumDescriptorProto: {
|
|
2030
|
+
edition: string;
|
|
1907
2031
|
fields: {
|
|
1908
2032
|
name: {
|
|
1909
2033
|
type: string;
|
|
@@ -1918,9 +2042,38 @@ declare const _default: {
|
|
|
1918
2042
|
type: string;
|
|
1919
2043
|
id: number;
|
|
1920
2044
|
};
|
|
2045
|
+
reservedRange: {
|
|
2046
|
+
rule: string;
|
|
2047
|
+
type: string;
|
|
2048
|
+
id: number;
|
|
2049
|
+
};
|
|
2050
|
+
reservedName: {
|
|
2051
|
+
rule: string;
|
|
2052
|
+
type: string;
|
|
2053
|
+
id: number;
|
|
2054
|
+
};
|
|
2055
|
+
visibility: {
|
|
2056
|
+
type: string;
|
|
2057
|
+
id: number;
|
|
2058
|
+
};
|
|
2059
|
+
};
|
|
2060
|
+
nested: {
|
|
2061
|
+
EnumReservedRange: {
|
|
2062
|
+
fields: {
|
|
2063
|
+
start: {
|
|
2064
|
+
type: string;
|
|
2065
|
+
id: number;
|
|
2066
|
+
};
|
|
2067
|
+
end: {
|
|
2068
|
+
type: string;
|
|
2069
|
+
id: number;
|
|
2070
|
+
};
|
|
2071
|
+
};
|
|
2072
|
+
};
|
|
1921
2073
|
};
|
|
1922
2074
|
};
|
|
1923
2075
|
EnumValueDescriptorProto: {
|
|
2076
|
+
edition: string;
|
|
1924
2077
|
fields: {
|
|
1925
2078
|
name: {
|
|
1926
2079
|
type: string;
|
|
@@ -1937,6 +2090,7 @@ declare const _default: {
|
|
|
1937
2090
|
};
|
|
1938
2091
|
};
|
|
1939
2092
|
ServiceDescriptorProto: {
|
|
2093
|
+
edition: string;
|
|
1940
2094
|
fields: {
|
|
1941
2095
|
name: {
|
|
1942
2096
|
type: string;
|
|
@@ -1954,6 +2108,7 @@ declare const _default: {
|
|
|
1954
2108
|
};
|
|
1955
2109
|
};
|
|
1956
2110
|
MethodDescriptorProto: {
|
|
2111
|
+
edition: string;
|
|
1957
2112
|
fields: {
|
|
1958
2113
|
name: {
|
|
1959
2114
|
type: string;
|
|
@@ -1982,6 +2137,7 @@ declare const _default: {
|
|
|
1982
2137
|
};
|
|
1983
2138
|
};
|
|
1984
2139
|
FileOptions: {
|
|
2140
|
+
edition: string;
|
|
1985
2141
|
fields: {
|
|
1986
2142
|
javaPackage: {
|
|
1987
2143
|
type: string;
|
|
@@ -2036,6 +2192,9 @@ declare const _default: {
|
|
|
2036
2192
|
ccEnableArenas: {
|
|
2037
2193
|
type: string;
|
|
2038
2194
|
id: number;
|
|
2195
|
+
options: {
|
|
2196
|
+
default: boolean;
|
|
2197
|
+
};
|
|
2039
2198
|
};
|
|
2040
2199
|
objcClassPrefix: {
|
|
2041
2200
|
type: string;
|
|
@@ -2045,6 +2204,30 @@ declare const _default: {
|
|
|
2045
2204
|
type: string;
|
|
2046
2205
|
id: number;
|
|
2047
2206
|
};
|
|
2207
|
+
swiftPrefix: {
|
|
2208
|
+
type: string;
|
|
2209
|
+
id: number;
|
|
2210
|
+
};
|
|
2211
|
+
phpClassPrefix: {
|
|
2212
|
+
type: string;
|
|
2213
|
+
id: number;
|
|
2214
|
+
};
|
|
2215
|
+
phpNamespace: {
|
|
2216
|
+
type: string;
|
|
2217
|
+
id: number;
|
|
2218
|
+
};
|
|
2219
|
+
phpMetadataNamespace: {
|
|
2220
|
+
type: string;
|
|
2221
|
+
id: number;
|
|
2222
|
+
};
|
|
2223
|
+
rubyPackage: {
|
|
2224
|
+
type: string;
|
|
2225
|
+
id: number;
|
|
2226
|
+
};
|
|
2227
|
+
features: {
|
|
2228
|
+
type: string;
|
|
2229
|
+
id: number;
|
|
2230
|
+
};
|
|
2048
2231
|
uninterpretedOption: {
|
|
2049
2232
|
rule: string;
|
|
2050
2233
|
type: string;
|
|
@@ -2052,7 +2235,7 @@ declare const _default: {
|
|
|
2052
2235
|
};
|
|
2053
2236
|
};
|
|
2054
2237
|
extensions: number[][];
|
|
2055
|
-
reserved: number[][];
|
|
2238
|
+
reserved: (string | number[])[];
|
|
2056
2239
|
nested: {
|
|
2057
2240
|
OptimizeMode: {
|
|
2058
2241
|
values: {
|
|
@@ -2064,6 +2247,7 @@ declare const _default: {
|
|
|
2064
2247
|
};
|
|
2065
2248
|
};
|
|
2066
2249
|
MessageOptions: {
|
|
2250
|
+
edition: string;
|
|
2067
2251
|
fields: {
|
|
2068
2252
|
messageSetWireFormat: {
|
|
2069
2253
|
type: string;
|
|
@@ -2081,6 +2265,17 @@ declare const _default: {
|
|
|
2081
2265
|
type: string;
|
|
2082
2266
|
id: number;
|
|
2083
2267
|
};
|
|
2268
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
2269
|
+
type: string;
|
|
2270
|
+
id: number;
|
|
2271
|
+
options: {
|
|
2272
|
+
deprecated: boolean;
|
|
2273
|
+
};
|
|
2274
|
+
};
|
|
2275
|
+
features: {
|
|
2276
|
+
type: string;
|
|
2277
|
+
id: number;
|
|
2278
|
+
};
|
|
2084
2279
|
uninterpretedOption: {
|
|
2085
2280
|
rule: string;
|
|
2086
2281
|
type: string;
|
|
@@ -2091,6 +2286,7 @@ declare const _default: {
|
|
|
2091
2286
|
reserved: number[][];
|
|
2092
2287
|
};
|
|
2093
2288
|
FieldOptions: {
|
|
2289
|
+
edition: string;
|
|
2094
2290
|
fields: {
|
|
2095
2291
|
ctype: {
|
|
2096
2292
|
type: string;
|
|
@@ -2114,6 +2310,10 @@ declare const _default: {
|
|
|
2114
2310
|
type: string;
|
|
2115
2311
|
id: number;
|
|
2116
2312
|
};
|
|
2313
|
+
unverifiedLazy: {
|
|
2314
|
+
type: string;
|
|
2315
|
+
id: number;
|
|
2316
|
+
};
|
|
2117
2317
|
deprecated: {
|
|
2118
2318
|
type: string;
|
|
2119
2319
|
id: number;
|
|
@@ -2121,6 +2321,35 @@ declare const _default: {
|
|
|
2121
2321
|
weak: {
|
|
2122
2322
|
type: string;
|
|
2123
2323
|
id: number;
|
|
2324
|
+
options: {
|
|
2325
|
+
deprecated: boolean;
|
|
2326
|
+
};
|
|
2327
|
+
};
|
|
2328
|
+
debugRedact: {
|
|
2329
|
+
type: string;
|
|
2330
|
+
id: number;
|
|
2331
|
+
};
|
|
2332
|
+
retention: {
|
|
2333
|
+
type: string;
|
|
2334
|
+
id: number;
|
|
2335
|
+
};
|
|
2336
|
+
targets: {
|
|
2337
|
+
rule: string;
|
|
2338
|
+
type: string;
|
|
2339
|
+
id: number;
|
|
2340
|
+
};
|
|
2341
|
+
editionDefaults: {
|
|
2342
|
+
rule: string;
|
|
2343
|
+
type: string;
|
|
2344
|
+
id: number;
|
|
2345
|
+
};
|
|
2346
|
+
features: {
|
|
2347
|
+
type: string;
|
|
2348
|
+
id: number;
|
|
2349
|
+
};
|
|
2350
|
+
featureSupport: {
|
|
2351
|
+
type: string;
|
|
2352
|
+
id: number;
|
|
2124
2353
|
};
|
|
2125
2354
|
uninterpretedOption: {
|
|
2126
2355
|
rule: string;
|
|
@@ -2145,10 +2374,68 @@ declare const _default: {
|
|
|
2145
2374
|
JS_NUMBER: number;
|
|
2146
2375
|
};
|
|
2147
2376
|
};
|
|
2377
|
+
OptionRetention: {
|
|
2378
|
+
values: {
|
|
2379
|
+
RETENTION_UNKNOWN: number;
|
|
2380
|
+
RETENTION_RUNTIME: number;
|
|
2381
|
+
RETENTION_SOURCE: number;
|
|
2382
|
+
};
|
|
2383
|
+
};
|
|
2384
|
+
OptionTargetType: {
|
|
2385
|
+
values: {
|
|
2386
|
+
TARGET_TYPE_UNKNOWN: number;
|
|
2387
|
+
TARGET_TYPE_FILE: number;
|
|
2388
|
+
TARGET_TYPE_EXTENSION_RANGE: number;
|
|
2389
|
+
TARGET_TYPE_MESSAGE: number;
|
|
2390
|
+
TARGET_TYPE_FIELD: number;
|
|
2391
|
+
TARGET_TYPE_ONEOF: number;
|
|
2392
|
+
TARGET_TYPE_ENUM: number;
|
|
2393
|
+
TARGET_TYPE_ENUM_ENTRY: number;
|
|
2394
|
+
TARGET_TYPE_SERVICE: number;
|
|
2395
|
+
TARGET_TYPE_METHOD: number;
|
|
2396
|
+
};
|
|
2397
|
+
};
|
|
2398
|
+
EditionDefault: {
|
|
2399
|
+
fields: {
|
|
2400
|
+
edition: {
|
|
2401
|
+
type: string;
|
|
2402
|
+
id: number;
|
|
2403
|
+
};
|
|
2404
|
+
value: {
|
|
2405
|
+
type: string;
|
|
2406
|
+
id: number;
|
|
2407
|
+
};
|
|
2408
|
+
};
|
|
2409
|
+
};
|
|
2410
|
+
FeatureSupport: {
|
|
2411
|
+
fields: {
|
|
2412
|
+
editionIntroduced: {
|
|
2413
|
+
type: string;
|
|
2414
|
+
id: number;
|
|
2415
|
+
};
|
|
2416
|
+
editionDeprecated: {
|
|
2417
|
+
type: string;
|
|
2418
|
+
id: number;
|
|
2419
|
+
};
|
|
2420
|
+
deprecationWarning: {
|
|
2421
|
+
type: string;
|
|
2422
|
+
id: number;
|
|
2423
|
+
};
|
|
2424
|
+
editionRemoved: {
|
|
2425
|
+
type: string;
|
|
2426
|
+
id: number;
|
|
2427
|
+
};
|
|
2428
|
+
};
|
|
2429
|
+
};
|
|
2148
2430
|
};
|
|
2149
2431
|
};
|
|
2150
2432
|
OneofOptions: {
|
|
2433
|
+
edition: string;
|
|
2151
2434
|
fields: {
|
|
2435
|
+
features: {
|
|
2436
|
+
type: string;
|
|
2437
|
+
id: number;
|
|
2438
|
+
};
|
|
2152
2439
|
uninterpretedOption: {
|
|
2153
2440
|
rule: string;
|
|
2154
2441
|
type: string;
|
|
@@ -2158,6 +2445,7 @@ declare const _default: {
|
|
|
2158
2445
|
extensions: number[][];
|
|
2159
2446
|
};
|
|
2160
2447
|
EnumOptions: {
|
|
2448
|
+
edition: string;
|
|
2161
2449
|
fields: {
|
|
2162
2450
|
allowAlias: {
|
|
2163
2451
|
type: string;
|
|
@@ -2167,6 +2455,17 @@ declare const _default: {
|
|
|
2167
2455
|
type: string;
|
|
2168
2456
|
id: number;
|
|
2169
2457
|
};
|
|
2458
|
+
deprecatedLegacyJsonFieldConflicts: {
|
|
2459
|
+
type: string;
|
|
2460
|
+
id: number;
|
|
2461
|
+
options: {
|
|
2462
|
+
deprecated: boolean;
|
|
2463
|
+
};
|
|
2464
|
+
};
|
|
2465
|
+
features: {
|
|
2466
|
+
type: string;
|
|
2467
|
+
id: number;
|
|
2468
|
+
};
|
|
2170
2469
|
uninterpretedOption: {
|
|
2171
2470
|
rule: string;
|
|
2172
2471
|
type: string;
|
|
@@ -2174,13 +2473,27 @@ declare const _default: {
|
|
|
2174
2473
|
};
|
|
2175
2474
|
};
|
|
2176
2475
|
extensions: number[][];
|
|
2476
|
+
reserved: number[][];
|
|
2177
2477
|
};
|
|
2178
2478
|
EnumValueOptions: {
|
|
2479
|
+
edition: string;
|
|
2179
2480
|
fields: {
|
|
2180
2481
|
deprecated: {
|
|
2181
2482
|
type: string;
|
|
2182
2483
|
id: number;
|
|
2183
2484
|
};
|
|
2485
|
+
features: {
|
|
2486
|
+
type: string;
|
|
2487
|
+
id: number;
|
|
2488
|
+
};
|
|
2489
|
+
debugRedact: {
|
|
2490
|
+
type: string;
|
|
2491
|
+
id: number;
|
|
2492
|
+
};
|
|
2493
|
+
featureSupport: {
|
|
2494
|
+
type: string;
|
|
2495
|
+
id: number;
|
|
2496
|
+
};
|
|
2184
2497
|
uninterpretedOption: {
|
|
2185
2498
|
rule: string;
|
|
2186
2499
|
type: string;
|
|
@@ -2190,7 +2503,12 @@ declare const _default: {
|
|
|
2190
2503
|
extensions: number[][];
|
|
2191
2504
|
};
|
|
2192
2505
|
ServiceOptions: {
|
|
2506
|
+
edition: string;
|
|
2193
2507
|
fields: {
|
|
2508
|
+
features: {
|
|
2509
|
+
type: string;
|
|
2510
|
+
id: number;
|
|
2511
|
+
};
|
|
2194
2512
|
deprecated: {
|
|
2195
2513
|
type: string;
|
|
2196
2514
|
id: number;
|
|
@@ -2204,11 +2522,23 @@ declare const _default: {
|
|
|
2204
2522
|
extensions: number[][];
|
|
2205
2523
|
};
|
|
2206
2524
|
MethodOptions: {
|
|
2525
|
+
edition: string;
|
|
2207
2526
|
fields: {
|
|
2208
2527
|
deprecated: {
|
|
2209
2528
|
type: string;
|
|
2210
2529
|
id: number;
|
|
2211
2530
|
};
|
|
2531
|
+
idempotencyLevel: {
|
|
2532
|
+
type: string;
|
|
2533
|
+
id: number;
|
|
2534
|
+
options: {
|
|
2535
|
+
default: string;
|
|
2536
|
+
};
|
|
2537
|
+
};
|
|
2538
|
+
features: {
|
|
2539
|
+
type: string;
|
|
2540
|
+
id: number;
|
|
2541
|
+
};
|
|
2212
2542
|
uninterpretedOption: {
|
|
2213
2543
|
rule: string;
|
|
2214
2544
|
type: string;
|
|
@@ -2216,8 +2546,18 @@ declare const _default: {
|
|
|
2216
2546
|
};
|
|
2217
2547
|
};
|
|
2218
2548
|
extensions: number[][];
|
|
2549
|
+
nested: {
|
|
2550
|
+
IdempotencyLevel: {
|
|
2551
|
+
values: {
|
|
2552
|
+
IDEMPOTENCY_UNKNOWN: number;
|
|
2553
|
+
NO_SIDE_EFFECTS: number;
|
|
2554
|
+
IDEMPOTENT: number;
|
|
2555
|
+
};
|
|
2556
|
+
};
|
|
2557
|
+
};
|
|
2219
2558
|
};
|
|
2220
2559
|
UninterpretedOption: {
|
|
2560
|
+
edition: string;
|
|
2221
2561
|
fields: {
|
|
2222
2562
|
name: {
|
|
2223
2563
|
rule: string;
|
|
@@ -2266,7 +2606,207 @@ declare const _default: {
|
|
|
2266
2606
|
};
|
|
2267
2607
|
};
|
|
2268
2608
|
};
|
|
2609
|
+
FeatureSet: {
|
|
2610
|
+
edition: string;
|
|
2611
|
+
fields: {
|
|
2612
|
+
fieldPresence: {
|
|
2613
|
+
type: string;
|
|
2614
|
+
id: number;
|
|
2615
|
+
options: {
|
|
2616
|
+
retention: string;
|
|
2617
|
+
targets: string;
|
|
2618
|
+
"feature_support.edition_introduced": string;
|
|
2619
|
+
"edition_defaults.edition": string;
|
|
2620
|
+
"edition_defaults.value": string;
|
|
2621
|
+
};
|
|
2622
|
+
};
|
|
2623
|
+
enumType: {
|
|
2624
|
+
type: string;
|
|
2625
|
+
id: number;
|
|
2626
|
+
options: {
|
|
2627
|
+
retention: string;
|
|
2628
|
+
targets: string;
|
|
2629
|
+
"feature_support.edition_introduced": string;
|
|
2630
|
+
"edition_defaults.edition": string;
|
|
2631
|
+
"edition_defaults.value": string;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2634
|
+
repeatedFieldEncoding: {
|
|
2635
|
+
type: string;
|
|
2636
|
+
id: number;
|
|
2637
|
+
options: {
|
|
2638
|
+
retention: string;
|
|
2639
|
+
targets: string;
|
|
2640
|
+
"feature_support.edition_introduced": string;
|
|
2641
|
+
"edition_defaults.edition": string;
|
|
2642
|
+
"edition_defaults.value": string;
|
|
2643
|
+
};
|
|
2644
|
+
};
|
|
2645
|
+
utf8Validation: {
|
|
2646
|
+
type: string;
|
|
2647
|
+
id: number;
|
|
2648
|
+
options: {
|
|
2649
|
+
retention: string;
|
|
2650
|
+
targets: string;
|
|
2651
|
+
"feature_support.edition_introduced": string;
|
|
2652
|
+
"edition_defaults.edition": string;
|
|
2653
|
+
"edition_defaults.value": string;
|
|
2654
|
+
};
|
|
2655
|
+
};
|
|
2656
|
+
messageEncoding: {
|
|
2657
|
+
type: string;
|
|
2658
|
+
id: number;
|
|
2659
|
+
options: {
|
|
2660
|
+
retention: string;
|
|
2661
|
+
targets: string;
|
|
2662
|
+
"feature_support.edition_introduced": string;
|
|
2663
|
+
"edition_defaults.edition": string;
|
|
2664
|
+
"edition_defaults.value": string;
|
|
2665
|
+
};
|
|
2666
|
+
};
|
|
2667
|
+
jsonFormat: {
|
|
2668
|
+
type: string;
|
|
2669
|
+
id: number;
|
|
2670
|
+
options: {
|
|
2671
|
+
retention: string;
|
|
2672
|
+
targets: string;
|
|
2673
|
+
"feature_support.edition_introduced": string;
|
|
2674
|
+
"edition_defaults.edition": string;
|
|
2675
|
+
"edition_defaults.value": string;
|
|
2676
|
+
};
|
|
2677
|
+
};
|
|
2678
|
+
enforceNamingStyle: {
|
|
2679
|
+
type: string;
|
|
2680
|
+
id: number;
|
|
2681
|
+
options: {
|
|
2682
|
+
retention: string;
|
|
2683
|
+
targets: string;
|
|
2684
|
+
"feature_support.edition_introduced": string;
|
|
2685
|
+
"edition_defaults.edition": string;
|
|
2686
|
+
"edition_defaults.value": string;
|
|
2687
|
+
};
|
|
2688
|
+
};
|
|
2689
|
+
defaultSymbolVisibility: {
|
|
2690
|
+
type: string;
|
|
2691
|
+
id: number;
|
|
2692
|
+
options: {
|
|
2693
|
+
retention: string;
|
|
2694
|
+
targets: string;
|
|
2695
|
+
"feature_support.edition_introduced": string;
|
|
2696
|
+
"edition_defaults.edition": string;
|
|
2697
|
+
"edition_defaults.value": string;
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
};
|
|
2701
|
+
extensions: number[][];
|
|
2702
|
+
reserved: number[][];
|
|
2703
|
+
nested: {
|
|
2704
|
+
FieldPresence: {
|
|
2705
|
+
values: {
|
|
2706
|
+
FIELD_PRESENCE_UNKNOWN: number;
|
|
2707
|
+
EXPLICIT: number;
|
|
2708
|
+
IMPLICIT: number;
|
|
2709
|
+
LEGACY_REQUIRED: number;
|
|
2710
|
+
};
|
|
2711
|
+
};
|
|
2712
|
+
EnumType: {
|
|
2713
|
+
values: {
|
|
2714
|
+
ENUM_TYPE_UNKNOWN: number;
|
|
2715
|
+
OPEN: number;
|
|
2716
|
+
CLOSED: number;
|
|
2717
|
+
};
|
|
2718
|
+
};
|
|
2719
|
+
RepeatedFieldEncoding: {
|
|
2720
|
+
values: {
|
|
2721
|
+
REPEATED_FIELD_ENCODING_UNKNOWN: number;
|
|
2722
|
+
PACKED: number;
|
|
2723
|
+
EXPANDED: number;
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2726
|
+
Utf8Validation: {
|
|
2727
|
+
values: {
|
|
2728
|
+
UTF8_VALIDATION_UNKNOWN: number;
|
|
2729
|
+
VERIFY: number;
|
|
2730
|
+
NONE: number;
|
|
2731
|
+
};
|
|
2732
|
+
};
|
|
2733
|
+
MessageEncoding: {
|
|
2734
|
+
values: {
|
|
2735
|
+
MESSAGE_ENCODING_UNKNOWN: number;
|
|
2736
|
+
LENGTH_PREFIXED: number;
|
|
2737
|
+
DELIMITED: number;
|
|
2738
|
+
};
|
|
2739
|
+
};
|
|
2740
|
+
JsonFormat: {
|
|
2741
|
+
values: {
|
|
2742
|
+
JSON_FORMAT_UNKNOWN: number;
|
|
2743
|
+
ALLOW: number;
|
|
2744
|
+
LEGACY_BEST_EFFORT: number;
|
|
2745
|
+
};
|
|
2746
|
+
};
|
|
2747
|
+
EnforceNamingStyle: {
|
|
2748
|
+
values: {
|
|
2749
|
+
ENFORCE_NAMING_STYLE_UNKNOWN: number;
|
|
2750
|
+
STYLE2024: number;
|
|
2751
|
+
STYLE_LEGACY: number;
|
|
2752
|
+
};
|
|
2753
|
+
};
|
|
2754
|
+
VisibilityFeature: {
|
|
2755
|
+
fields: {};
|
|
2756
|
+
reserved: number[][];
|
|
2757
|
+
nested: {
|
|
2758
|
+
DefaultSymbolVisibility: {
|
|
2759
|
+
values: {
|
|
2760
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN: number;
|
|
2761
|
+
EXPORT_ALL: number;
|
|
2762
|
+
EXPORT_TOP_LEVEL: number;
|
|
2763
|
+
LOCAL_ALL: number;
|
|
2764
|
+
STRICT: number;
|
|
2765
|
+
};
|
|
2766
|
+
};
|
|
2767
|
+
};
|
|
2768
|
+
};
|
|
2769
|
+
};
|
|
2770
|
+
};
|
|
2771
|
+
FeatureSetDefaults: {
|
|
2772
|
+
edition: string;
|
|
2773
|
+
fields: {
|
|
2774
|
+
defaults: {
|
|
2775
|
+
rule: string;
|
|
2776
|
+
type: string;
|
|
2777
|
+
id: number;
|
|
2778
|
+
};
|
|
2779
|
+
minimumEdition: {
|
|
2780
|
+
type: string;
|
|
2781
|
+
id: number;
|
|
2782
|
+
};
|
|
2783
|
+
maximumEdition: {
|
|
2784
|
+
type: string;
|
|
2785
|
+
id: number;
|
|
2786
|
+
};
|
|
2787
|
+
};
|
|
2788
|
+
nested: {
|
|
2789
|
+
FeatureSetEditionDefault: {
|
|
2790
|
+
fields: {
|
|
2791
|
+
edition: {
|
|
2792
|
+
type: string;
|
|
2793
|
+
id: number;
|
|
2794
|
+
};
|
|
2795
|
+
overridableFeatures: {
|
|
2796
|
+
type: string;
|
|
2797
|
+
id: number;
|
|
2798
|
+
};
|
|
2799
|
+
fixedFeatures: {
|
|
2800
|
+
type: string;
|
|
2801
|
+
id: number;
|
|
2802
|
+
};
|
|
2803
|
+
};
|
|
2804
|
+
reserved: (string | number[])[];
|
|
2805
|
+
};
|
|
2806
|
+
};
|
|
2807
|
+
};
|
|
2269
2808
|
SourceCodeInfo: {
|
|
2809
|
+
edition: string;
|
|
2270
2810
|
fields: {
|
|
2271
2811
|
location: {
|
|
2272
2812
|
rule: string;
|
|
@@ -2274,6 +2814,7 @@ declare const _default: {
|
|
|
2274
2814
|
id: number;
|
|
2275
2815
|
};
|
|
2276
2816
|
};
|
|
2817
|
+
extensions: number[][];
|
|
2277
2818
|
nested: {
|
|
2278
2819
|
Location: {
|
|
2279
2820
|
fields: {
|
|
@@ -2281,11 +2822,17 @@ declare const _default: {
|
|
|
2281
2822
|
rule: string;
|
|
2282
2823
|
type: string;
|
|
2283
2824
|
id: number;
|
|
2825
|
+
options: {
|
|
2826
|
+
packed: boolean;
|
|
2827
|
+
};
|
|
2284
2828
|
};
|
|
2285
2829
|
span: {
|
|
2286
2830
|
rule: string;
|
|
2287
2831
|
type: string;
|
|
2288
2832
|
id: number;
|
|
2833
|
+
options: {
|
|
2834
|
+
packed: boolean;
|
|
2835
|
+
};
|
|
2289
2836
|
};
|
|
2290
2837
|
leadingComments: {
|
|
2291
2838
|
type: string;
|
|
@@ -2305,6 +2852,7 @@ declare const _default: {
|
|
|
2305
2852
|
};
|
|
2306
2853
|
};
|
|
2307
2854
|
GeneratedCodeInfo: {
|
|
2855
|
+
edition: string;
|
|
2308
2856
|
fields: {
|
|
2309
2857
|
annotation: {
|
|
2310
2858
|
rule: string;
|
|
@@ -2319,6 +2867,9 @@ declare const _default: {
|
|
|
2319
2867
|
rule: string;
|
|
2320
2868
|
type: string;
|
|
2321
2869
|
id: number;
|
|
2870
|
+
options: {
|
|
2871
|
+
packed: boolean;
|
|
2872
|
+
};
|
|
2322
2873
|
};
|
|
2323
2874
|
sourceFile: {
|
|
2324
2875
|
type: string;
|
|
@@ -2332,10 +2883,31 @@ declare const _default: {
|
|
|
2332
2883
|
type: string;
|
|
2333
2884
|
id: number;
|
|
2334
2885
|
};
|
|
2886
|
+
semantic: {
|
|
2887
|
+
type: string;
|
|
2888
|
+
id: number;
|
|
2889
|
+
};
|
|
2890
|
+
};
|
|
2891
|
+
nested: {
|
|
2892
|
+
Semantic: {
|
|
2893
|
+
values: {
|
|
2894
|
+
NONE: number;
|
|
2895
|
+
SET: number;
|
|
2896
|
+
ALIAS: number;
|
|
2897
|
+
};
|
|
2898
|
+
};
|
|
2335
2899
|
};
|
|
2336
2900
|
};
|
|
2337
2901
|
};
|
|
2338
2902
|
};
|
|
2903
|
+
SymbolVisibility: {
|
|
2904
|
+
edition: string;
|
|
2905
|
+
values: {
|
|
2906
|
+
VISIBILITY_UNSET: number;
|
|
2907
|
+
VISIBILITY_LOCAL: number;
|
|
2908
|
+
VISIBILITY_EXPORT: number;
|
|
2909
|
+
};
|
|
2910
|
+
};
|
|
2339
2911
|
};
|
|
2340
2912
|
};
|
|
2341
2913
|
};
|