@zilliz/milvus2-sdk-node 2.2.3 → 2.2.4
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/Client.d.ts +0 -8
- package/dist/milvus/Client.js +0 -17
- package/dist/milvus/Client.js.map +1 -1
- package/dist/milvus/Collection.d.ts +225 -131
- package/dist/milvus/Collection.js +262 -155
- package/dist/milvus/Collection.js.map +1 -1
- package/dist/milvus/Data.d.ts +129 -125
- package/dist/milvus/Data.js +157 -150
- package/dist/milvus/Data.js.map +1 -1
- package/dist/milvus/MilvusIndex.d.ts +57 -53
- package/dist/milvus/MilvusIndex.js +61 -55
- package/dist/milvus/MilvusIndex.js.map +1 -1
- package/dist/milvus/Partition.d.ts +86 -79
- package/dist/milvus/Partition.js +89 -80
- package/dist/milvus/Partition.js.map +1 -1
- package/dist/milvus/Resource.d.ts +173 -0
- package/dist/milvus/Resource.js +356 -0
- package/dist/milvus/Resource.js.map +1 -0
- package/dist/milvus/User.d.ts +119 -93
- package/dist/milvus/User.js +133 -100
- package/dist/milvus/User.js.map +1 -1
- package/dist/milvus/Utils.d.ts +1 -1
- package/dist/milvus/const/Milvus.d.ts +270 -0
- package/dist/milvus/const/Milvus.js +370 -1
- package/dist/milvus/const/Milvus.js.map +1 -1
- package/dist/milvus/index.d.ts +3 -1
- package/dist/milvus/index.js +6 -4
- package/dist/milvus/index.js.map +1 -1
- package/dist/milvus/types/Collection.d.ts +88 -8
- package/dist/milvus/types/Collection.js +1 -9
- package/dist/milvus/types/Collection.js.map +1 -1
- package/dist/milvus/types/Common.d.ts +11 -267
- package/dist/milvus/types/Common.js +1 -369
- package/dist/milvus/types/Common.js.map +1 -1
- package/dist/milvus/types/Data.d.ts +154 -1
- package/dist/milvus/types/Index.d.ts +20 -1
- package/dist/milvus/types/Partition.d.ts +8 -1
- package/dist/milvus/types/Resource.d.ts +44 -0
- package/dist/milvus/types/{Search.js → Resource.js} +1 -1
- package/dist/milvus/types/Resource.js.map +1 -0
- package/dist/milvus/types/Response.d.ts +0 -246
- package/dist/milvus/types/Response.js.map +1 -1
- package/dist/milvus/types/User.d.ts +53 -1
- package/dist/milvus/types.d.ts +8 -7
- package/dist/milvus/types.js +2 -1
- package/dist/milvus/types.js.map +1 -1
- package/dist/milvus/utils/Format.d.ts +10 -10
- package/dist/milvus/utils/Format.js +10 -10
- package/dist/milvus/utils/Validate.d.ts +12 -0
- package/dist/milvus/utils/Validate.js +27 -5
- package/dist/milvus/utils/Validate.js.map +1 -1
- package/dist/proto/proto/common.proto +16 -1
- package/dist/proto/proto/milvus.proto +40 -0
- package/dist/proto/proto/msg.proto +107 -0
- package/dist/sdk.json +1 -1
- package/dist/utils/index.d.ts +0 -6
- package/dist/utils/index.js +1 -31
- package/dist/utils/index.js.map +1 -1
- package/package.json +5 -10
- package/dist/milvus/types/Search.d.ts +0 -81
- package/dist/milvus/types/Search.js.map +0 -1
|
@@ -1356,6 +1356,11 @@ message OperatePrivilegeRequest {
|
|
|
1356
1356
|
}
|
|
1357
1357
|
|
|
1358
1358
|
message GetLoadingProgressRequest {
|
|
1359
|
+
option (common.privilege_ext_obj) = {
|
|
1360
|
+
object_type: Collection
|
|
1361
|
+
object_privilege: PrivilegeGetLoadingProgress
|
|
1362
|
+
object_name_index: 2
|
|
1363
|
+
};
|
|
1359
1364
|
// Not useful for now
|
|
1360
1365
|
common.MsgBase base = 1;
|
|
1361
1366
|
string collection_name = 2;
|
|
@@ -1368,6 +1373,11 @@ message GetLoadingProgressResponse {
|
|
|
1368
1373
|
}
|
|
1369
1374
|
|
|
1370
1375
|
message GetLoadStateRequest {
|
|
1376
|
+
option (common.privilege_ext_obj) = {
|
|
1377
|
+
object_type: Collection
|
|
1378
|
+
object_privilege: PrivilegeGetLoadState
|
|
1379
|
+
object_name_index: 2
|
|
1380
|
+
};
|
|
1371
1381
|
// Not useful for now
|
|
1372
1382
|
common.MsgBase base = 1;
|
|
1373
1383
|
string collection_name = 2;
|
|
@@ -1414,17 +1424,32 @@ message CheckHealthResponse {
|
|
|
1414
1424
|
}
|
|
1415
1425
|
|
|
1416
1426
|
message CreateResourceGroupRequest {
|
|
1427
|
+
option (common.privilege_ext_obj) = {
|
|
1428
|
+
object_type: Global
|
|
1429
|
+
object_privilege: PrivilegeCreateResourceGroup
|
|
1430
|
+
object_name_index: -1
|
|
1431
|
+
};
|
|
1417
1432
|
common.MsgBase base = 1;
|
|
1418
1433
|
string resource_group = 2;
|
|
1419
1434
|
}
|
|
1420
1435
|
|
|
1421
1436
|
message DropResourceGroupRequest {
|
|
1437
|
+
option (common.privilege_ext_obj) = {
|
|
1438
|
+
object_type: Global
|
|
1439
|
+
object_privilege: PrivilegeDropResourceGroup
|
|
1440
|
+
object_name_index: -1
|
|
1441
|
+
};
|
|
1422
1442
|
common.MsgBase base = 1;
|
|
1423
1443
|
string resource_group = 2;
|
|
1424
1444
|
}
|
|
1425
1445
|
|
|
1426
1446
|
// transfer `nodeNum` nodes from `source_resource_group` to `target_resource_group`
|
|
1427
1447
|
message TransferNodeRequest {
|
|
1448
|
+
option (common.privilege_ext_obj) = {
|
|
1449
|
+
object_type: Global
|
|
1450
|
+
object_privilege: PrivilegeTransferNode
|
|
1451
|
+
object_name_index: -1
|
|
1452
|
+
};
|
|
1428
1453
|
common.MsgBase base = 1;
|
|
1429
1454
|
string source_resource_group = 2;
|
|
1430
1455
|
string target_resource_group = 3;
|
|
@@ -1433,6 +1458,11 @@ message TransferNodeRequest {
|
|
|
1433
1458
|
|
|
1434
1459
|
// transfer `replicaNum` replicas in `collectionID` from `source_resource_group` to `target_resource_group`
|
|
1435
1460
|
message TransferReplicaRequest {
|
|
1461
|
+
option (common.privilege_ext_obj) = {
|
|
1462
|
+
object_type: Global
|
|
1463
|
+
object_privilege: PrivilegeTransferReplica
|
|
1464
|
+
object_name_index: -1
|
|
1465
|
+
};
|
|
1436
1466
|
common.MsgBase base = 1;
|
|
1437
1467
|
string source_resource_group = 2;
|
|
1438
1468
|
string target_resource_group = 3;
|
|
@@ -1441,6 +1471,11 @@ message TransferReplicaRequest {
|
|
|
1441
1471
|
}
|
|
1442
1472
|
|
|
1443
1473
|
message ListResourceGroupsRequest {
|
|
1474
|
+
option (common.privilege_ext_obj) = {
|
|
1475
|
+
object_type: Global
|
|
1476
|
+
object_privilege: PrivilegeListResourceGroups
|
|
1477
|
+
object_name_index: -1
|
|
1478
|
+
};
|
|
1444
1479
|
common.MsgBase base = 1;
|
|
1445
1480
|
}
|
|
1446
1481
|
|
|
@@ -1450,6 +1485,11 @@ message ListResourceGroupsResponse {
|
|
|
1450
1485
|
}
|
|
1451
1486
|
|
|
1452
1487
|
message DescribeResourceGroupRequest {
|
|
1488
|
+
option (common.privilege_ext_obj) = {
|
|
1489
|
+
object_type: Global
|
|
1490
|
+
object_privilege: PrivilegeDescribeResourceGroup
|
|
1491
|
+
object_name_index: -1
|
|
1492
|
+
};
|
|
1453
1493
|
common.MsgBase base = 1;
|
|
1454
1494
|
string resource_group = 2;
|
|
1455
1495
|
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
package milvus.proto.msg;
|
|
3
|
+
option go_package = "github.com/milvus-io/milvus-proto/go-api/msgpb";
|
|
4
|
+
|
|
5
|
+
import "common.proto";
|
|
6
|
+
import "schema.proto";
|
|
7
|
+
|
|
8
|
+
enum InsertDataVersion {
|
|
9
|
+
// 0 must refer to row-based format, since it's the first version in Milvus.
|
|
10
|
+
RowBased = 0;
|
|
11
|
+
ColumnBased = 1;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
message InsertRequest {
|
|
15
|
+
common.MsgBase base = 1;
|
|
16
|
+
string shardName = 2;
|
|
17
|
+
string db_name = 3;
|
|
18
|
+
string collection_name = 4;
|
|
19
|
+
string partition_name = 5;
|
|
20
|
+
int64 dbID = 6;
|
|
21
|
+
int64 collectionID = 7;
|
|
22
|
+
int64 partitionID = 8;
|
|
23
|
+
int64 segmentID = 9;
|
|
24
|
+
repeated uint64 timestamps = 10;
|
|
25
|
+
repeated int64 rowIDs = 11;
|
|
26
|
+
// row_data was reserved for compatibility
|
|
27
|
+
repeated common.Blob row_data = 12;
|
|
28
|
+
repeated schema.FieldData fields_data = 13;
|
|
29
|
+
uint64 num_rows = 14;
|
|
30
|
+
InsertDataVersion version = 15;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
message DeleteRequest {
|
|
34
|
+
common.MsgBase base = 1;
|
|
35
|
+
string shardName = 2;
|
|
36
|
+
string db_name = 3;
|
|
37
|
+
string collection_name = 4;
|
|
38
|
+
string partition_name = 5;
|
|
39
|
+
int64 dbID = 6;
|
|
40
|
+
int64 collectionID = 7;
|
|
41
|
+
int64 partitionID = 8;
|
|
42
|
+
repeated int64 int64_primary_keys = 9; // deprecated
|
|
43
|
+
repeated uint64 timestamps = 10;
|
|
44
|
+
int64 num_rows = 11;
|
|
45
|
+
schema.IDs primary_keys = 12;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message MsgPosition {
|
|
49
|
+
string channel_name = 1;
|
|
50
|
+
bytes msgID = 2;
|
|
51
|
+
string msgGroup = 3;
|
|
52
|
+
uint64 timestamp = 4;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message CreateCollectionRequest {
|
|
56
|
+
common.MsgBase base = 1;
|
|
57
|
+
string db_name = 2;
|
|
58
|
+
string collectionName = 3;
|
|
59
|
+
string partitionName = 4;
|
|
60
|
+
// `schema` is the serialized `schema.CollectionSchema`
|
|
61
|
+
int64 dbID = 5;
|
|
62
|
+
int64 collectionID = 6;
|
|
63
|
+
int64 partitionID = 7;
|
|
64
|
+
bytes schema = 8;
|
|
65
|
+
repeated string virtualChannelNames = 9;
|
|
66
|
+
repeated string physicalChannelNames = 10;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
message DropCollectionRequest {
|
|
70
|
+
common.MsgBase base = 1;
|
|
71
|
+
string db_name = 2;
|
|
72
|
+
string collectionName = 3;
|
|
73
|
+
int64 dbID = 4;
|
|
74
|
+
int64 collectionID = 5;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CreatePartitionRequest {
|
|
78
|
+
common.MsgBase base = 1;
|
|
79
|
+
string db_name = 2;
|
|
80
|
+
string collection_name = 3;
|
|
81
|
+
string partition_name = 4;
|
|
82
|
+
int64 dbID = 5;
|
|
83
|
+
int64 collectionID = 6;
|
|
84
|
+
int64 partitionID = 7;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
message DropPartitionRequest {
|
|
88
|
+
common.MsgBase base = 1;
|
|
89
|
+
string db_name = 2;
|
|
90
|
+
string collection_name = 3;
|
|
91
|
+
string partition_name = 4;
|
|
92
|
+
int64 dbID = 5;
|
|
93
|
+
int64 collectionID = 6;
|
|
94
|
+
int64 partitionID = 7;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message TimeTickMsg {
|
|
98
|
+
common.MsgBase base = 1;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
message DataNodeTtMsg {
|
|
102
|
+
common.MsgBase base =1;
|
|
103
|
+
string channel_name = 2;
|
|
104
|
+
uint64 timestamp = 3;
|
|
105
|
+
repeated common.SegmentStats segments_stats = 4;
|
|
106
|
+
}
|
|
107
|
+
|
package/dist/sdk.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.2.
|
|
1
|
+
{"version":"2.2.4","milvusVersion":"2.2.0-latest"}
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
3
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
4
|
-
if (ar || !(i in from)) {
|
|
5
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
6
|
-
ar[i] = from[i];
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.
|
|
3
|
+
exports.promisify = void 0;
|
|
13
4
|
var Milvus_1 = require("../milvus/const/Milvus");
|
|
14
5
|
function promisify(obj, target, params, timeout) {
|
|
15
6
|
var deadline = timeout
|
|
@@ -33,25 +24,4 @@ function promisify(obj, target, params, timeout) {
|
|
|
33
24
|
return res;
|
|
34
25
|
}
|
|
35
26
|
exports.promisify = promisify;
|
|
36
|
-
function generateInsertData(fields, count) {
|
|
37
|
-
var results = [];
|
|
38
|
-
var _loop_1 = function () {
|
|
39
|
-
var value = {};
|
|
40
|
-
fields.forEach(function (v) {
|
|
41
|
-
var isVector = v.isVector, dim = v.dim, name = v.name, isBool = v.isBool;
|
|
42
|
-
value[name] = isVector
|
|
43
|
-
? __spreadArray([], Array(dim), true).map(function () { return Math.random() * 10; })
|
|
44
|
-
: isBool
|
|
45
|
-
? count % 2 === 0
|
|
46
|
-
: Math.floor(Math.random() * 100000);
|
|
47
|
-
});
|
|
48
|
-
results.push(value);
|
|
49
|
-
count--;
|
|
50
|
-
};
|
|
51
|
-
while (count > 0) {
|
|
52
|
-
_loop_1();
|
|
53
|
-
}
|
|
54
|
-
return results;
|
|
55
|
-
}
|
|
56
|
-
exports.generateInsertData = generateInsertData;
|
|
57
27
|
//# sourceMappingURL=index.js.map
|
package/dist/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../utils/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../utils/index.ts"],"names":[],"mappings":";;;AAAA,iDAAiE;AAEjE,SAAgB,SAAS,CACvB,GAAQ,EACR,MAAc,EACd,MAAW,EACX,OAAgB;IAEhB,IAAM,QAAQ,GAAG,OAAO;QACtB,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,OAAO,CAAC;QAChC,CAAC,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,gCAAuB,CAAC,CAAC;IAEnD,IAAM,GAAG,GAAG,IAAI,OAAO,CAAC,UAAC,OAAO,EAAE,MAAM;QACtC,IAAI;YACF,GAAG,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,EAAE,QAAQ,UAAA,EAAE,EAAE,UAAC,GAAQ,EAAE,MAAW;gBACtD,IAAI,GAAG,EAAE;oBACP,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;gBACD,OAAO,CAAC,MAAM,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;SACJ;QAAC,OAAO,CAAM,EAAE;YACf,MAAM,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC;SACpB;IACH,CAAC,CAAC,CAAC,KAAK,CAAC,UAAA,GAAG;QACV,MAAM,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC;IACvB,CAAC,CAAC,CAAC;IAEH,OAAO,GAAG,CAAC;AACb,CAAC;AA1BD,8BA0BC"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zilliz/milvus2-sdk-node",
|
|
3
3
|
"author": "ued@zilliz.com",
|
|
4
|
-
"version": "2.2.
|
|
5
|
-
"milvusVersion": "
|
|
4
|
+
"version": "2.2.4",
|
|
5
|
+
"milvusVersion": "2.2.0-latest",
|
|
6
6
|
"main": "dist/milvus",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
@@ -15,16 +15,12 @@
|
|
|
15
15
|
"coverage": "jest --coverage=true --config jest.config.js --no-cache --testPathIgnorePatterns=/test/build/ test/User.spec.ts ",
|
|
16
16
|
"build-test": "yarn build && jest test/build/Collection.spec.ts",
|
|
17
17
|
"example": "npx ts-node",
|
|
18
|
-
"doc": "rm -rf docs && npx typedoc
|
|
18
|
+
"doc": "rm -rf docs && npx typedoc",
|
|
19
19
|
"doc-json": "npx typedoc milvus --json"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@grpc/grpc-js": "^1.2.12",
|
|
23
23
|
"@grpc/proto-loader": "^0.7.3",
|
|
24
|
-
"@microsoft/api-documenter": "^7.13.39",
|
|
25
|
-
"@microsoft/api-extractor": "^7.18.5",
|
|
26
|
-
"json-schema": "^0.4.0",
|
|
27
|
-
"node-forge": "^1.0.0",
|
|
28
24
|
"protobufjs": "^7.1.2"
|
|
29
25
|
},
|
|
30
26
|
"devDependencies": {
|
|
@@ -33,9 +29,8 @@
|
|
|
33
29
|
"jest": "^29.2.1",
|
|
34
30
|
"ts-jest": "^29.0.3",
|
|
35
31
|
"ts-node": "^10.9.1",
|
|
36
|
-
"typedoc": "^0.23.
|
|
37
|
-
"
|
|
38
|
-
"typescript": "^4.2.4"
|
|
32
|
+
"typedoc": "^0.23.26",
|
|
33
|
+
"typescript": "^4.9.5"
|
|
39
34
|
},
|
|
40
35
|
"publishConfig": {
|
|
41
36
|
"access": "public"
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
import { DataType, GrpcTimeOut } from './Common';
|
|
3
|
-
import { ResStatus } from './Response';
|
|
4
|
-
export interface SearchParam {
|
|
5
|
-
anns_field: string;
|
|
6
|
-
topk: string;
|
|
7
|
-
metric_type: string;
|
|
8
|
-
params: string;
|
|
9
|
-
round_decimal?: number;
|
|
10
|
-
}
|
|
11
|
-
export interface SearchReq extends GrpcTimeOut {
|
|
12
|
-
collection_name: string;
|
|
13
|
-
partition_names?: string[];
|
|
14
|
-
expr?: string;
|
|
15
|
-
search_params: SearchParam;
|
|
16
|
-
vectors: number[][];
|
|
17
|
-
output_fields?: string[];
|
|
18
|
-
travel_timestamp?: string;
|
|
19
|
-
vector_type: DataType.BinaryVector | DataType.FloatVector;
|
|
20
|
-
nq?: number;
|
|
21
|
-
}
|
|
22
|
-
export interface SearchRes {
|
|
23
|
-
status: ResStatus;
|
|
24
|
-
results: {
|
|
25
|
-
top_k: number;
|
|
26
|
-
fields_data: {
|
|
27
|
-
type: string;
|
|
28
|
-
field_name: string;
|
|
29
|
-
field: 'scalars';
|
|
30
|
-
scalars: {
|
|
31
|
-
[x: string]: any;
|
|
32
|
-
};
|
|
33
|
-
}[];
|
|
34
|
-
scores: number[];
|
|
35
|
-
ids: {
|
|
36
|
-
int_id?: {
|
|
37
|
-
data: number[];
|
|
38
|
-
};
|
|
39
|
-
str_id?: {
|
|
40
|
-
data: string[];
|
|
41
|
-
};
|
|
42
|
-
id_field: 'int_id' | 'str_id';
|
|
43
|
-
};
|
|
44
|
-
num_queries: number;
|
|
45
|
-
topks: number[];
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
export interface QueryReq extends GrpcTimeOut {
|
|
49
|
-
collection_name: string;
|
|
50
|
-
expr: string;
|
|
51
|
-
output_fields?: string[];
|
|
52
|
-
partition_names?: string[];
|
|
53
|
-
offset?: number;
|
|
54
|
-
limit?: number;
|
|
55
|
-
}
|
|
56
|
-
export interface QueryRes {
|
|
57
|
-
status: ResStatus;
|
|
58
|
-
fields_data: {
|
|
59
|
-
type: DataType;
|
|
60
|
-
field_name: string;
|
|
61
|
-
field: 'vectors' | 'scalars';
|
|
62
|
-
field_id: number;
|
|
63
|
-
vectors?: {
|
|
64
|
-
dim: string;
|
|
65
|
-
data: 'float_vector' | 'binary_vector';
|
|
66
|
-
float_vector?: {
|
|
67
|
-
data: number[];
|
|
68
|
-
};
|
|
69
|
-
binary_vector?: Buffer;
|
|
70
|
-
};
|
|
71
|
-
scalars?: {
|
|
72
|
-
[x: string]: any;
|
|
73
|
-
data: string;
|
|
74
|
-
};
|
|
75
|
-
}[];
|
|
76
|
-
}
|
|
77
|
-
export interface GetMetricsRequest extends GrpcTimeOut {
|
|
78
|
-
request: {
|
|
79
|
-
metric_type: 'system_info' | 'system_statistics' | 'system_log';
|
|
80
|
-
};
|
|
81
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Search.js","sourceRoot":"","sources":["../../../milvus/types/Search.ts"],"names":[],"mappings":""}
|