@olane/o-tools-common 0.7.7 → 0.7.9

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './init.js';
2
2
  export * from './encryption/index.js';
3
+ export * from './search/index.js';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC"}
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './init.js';
2
2
  export * from './encryption/index.js';
3
+ export * from './search/index.js';
@@ -1 +1,3 @@
1
+ export * from './search.tool.js';
2
+ export * from './parameters/search.parameters.js';
1
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/search/index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/search/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mCAAmC,CAAC"}
@@ -1 +1,2 @@
1
- "use strict";
1
+ export * from './search.tool.js';
2
+ export * from './parameters/search.parameters.js';
@@ -1 +1 @@
1
- {"version":3,"file":"search.parameters.d.ts","sourceRoot":"","sources":["../../../src/search/parameters/search.parameters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,aAAa,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAenD,CAAC"}
1
+ {"version":3,"file":"search.parameters.d.ts","sourceRoot":"","sources":["../../../src/search/parameters/search.parameters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,aAAa,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAgBnD,CAAC"}
@@ -1,14 +1,14 @@
1
1
  export const SEARCH_PARAMS = {
2
2
  search: {
3
- name: 'search',
4
- description: 'Search for data',
3
+ name: 'vector',
4
+ description: 'Search for data using vector similarity within the Olane OS from a global view.',
5
5
  dependencies: [],
6
6
  parameters: [
7
7
  {
8
8
  name: 'query',
9
9
  type: 'string',
10
10
  value: 'string',
11
- description: 'The query to search for',
11
+ description: 'The vector query to search for',
12
12
  required: true,
13
13
  },
14
14
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olane/o-tools-common",
3
- "version": "0.7.7",
3
+ "version": "0.7.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -55,13 +55,13 @@
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@olane/o-approval": "^0.7.5",
58
- "@olane/o-config": "^0.7.6",
59
- "@olane/o-core": "^0.7.6",
60
- "@olane/o-lane": "^0.7.6",
61
- "@olane/o-leader": "^0.7.6",
62
- "@olane/o-protocol": "^0.7.6",
63
- "@olane/o-storage": "^0.7.6",
64
- "@olane/o-tool": "^0.7.6"
58
+ "@olane/o-config": "^0.7.8",
59
+ "@olane/o-core": "^0.7.8",
60
+ "@olane/o-lane": "^0.7.8",
61
+ "@olane/o-leader": "^0.7.8",
62
+ "@olane/o-protocol": "^0.7.8",
63
+ "@olane/o-storage": "^0.7.8",
64
+ "@olane/o-tool": "^0.7.8"
65
65
  },
66
66
  "dependencies": {
67
67
  "debug": "^4.4.1",