@zilliz/milvus2-sdk-node 2.2.13 → 2.2.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.
@@ -0,0 +1,11 @@
1
+ export * from './types/Database';
2
+ export * from './types/Collection';
3
+ export * from './types/Data';
4
+ export * from './types/Common';
5
+ export * from './types/MilvusIndex';
6
+ export * from './types/Partition';
7
+ export * from './types/Response';
8
+ export * from './types/User';
9
+ export * from './types/Resource';
10
+ export * from './types/Client';
11
+ export * from './types/HighLevel';
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ // @deprecated
18
+ __exportStar(require("./types/Database"), exports);
19
+ __exportStar(require("./types/Collection"), exports);
20
+ __exportStar(require("./types/Data"), exports);
21
+ __exportStar(require("./types/Common"), exports);
22
+ __exportStar(require("./types/MilvusIndex"), exports);
23
+ __exportStar(require("./types/Partition"), exports);
24
+ __exportStar(require("./types/Response"), exports);
25
+ __exportStar(require("./types/User"), exports);
26
+ __exportStar(require("./types/Resource"), exports);
27
+ __exportStar(require("./types/Client"), exports);
28
+ __exportStar(require("./types/HighLevel"), exports);
29
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../milvus/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,cAAc;AACd,mDAAiC;AACjC,qDAAmC;AACnC,+CAA6B;AAC7B,iDAA+B;AAC/B,sDAAoC;AACpC,oDAAkC;AAClC,mDAAiC;AACjC,+CAA6B;AAC7B,mDAAiC;AACjC,iDAA+B;AAC/B,oDAAkC"}
package/dist/sdk.json CHANGED
@@ -1 +1 @@
1
- {"version":"2.2.13","milvusVersion":"v2.2.9"}
1
+ {"version":"2.2.14","milvusVersion":"v2.2.9"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zilliz/milvus2-sdk-node",
3
3
  "author": "ued@zilliz.com",
4
- "version": "2.2.13",
4
+ "version": "2.2.14",
5
5
  "milvusVersion": "v2.2.9",
6
6
  "main": "dist/milvus",
7
7
  "files": [
@@ -11,9 +11,9 @@
11
11
  "pre": "git submodule update --remote && rm -rf proto/proto/google && mkdir -p proto/proto/google/protobuf && wget https://raw.githubusercontent.com/protocolbuffers/protobuf/main/src/google/protobuf/descriptor.proto -O proto/proto/google/protobuf/descriptor.proto",
12
12
  "build": "rm -rf dist && tsc --declaration && node build.js",
13
13
  "testAll": "jest --testPathIgnorePatterns=/test/build/",
14
- "test": "jest",
15
- "test2": "jest --runInBand",
16
- "coverage": "jest --coverage=true --config jest.config.js --no-cache --testPathIgnorePatterns=/test/build/",
14
+ "test": "NODE_ENV=dev jest",
15
+ "t": "jest",
16
+ "coverage": "NODE_ENV=dev jest --coverage=true --config jest.config.js --no-cache --testPathIgnorePatterns=/test/build/",
17
17
  "build-test": " yarn build && jest test/build/Collection.spec.ts",
18
18
  "example": "npx ts-node",
19
19
  "doc": "rm -rf docs && npx typedoc",