@or-sdk/lookup 1.4.0-beta.2182.0 → 1.4.0
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/CHANGELOG.md +9 -0
- package/README.md +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.4.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/lookup@1.3.2...@or-sdk/lookup@1.4.0) (2023-12-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@or-sdk/lookup:** add skip and vectorize for addProperty method ([c3821b8](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/c3821b8c12364055c3a7e4623cb6545e86b11977)), closes [#QNA-13](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/issues/QNA-13)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.3.2](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/lookup@1.3.1...@or-sdk/lookup@1.3.2) (2023-12-04)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/lookup
|
package/README.md
CHANGED
|
@@ -273,7 +273,7 @@ Add a custom property to an existing collection. Custom properties can be used t
|
|
|
273
273
|
const collectionId = 'a1b2c3d4-uuid';
|
|
274
274
|
const property = {
|
|
275
275
|
name: 'author',
|
|
276
|
-
dataType: '
|
|
276
|
+
dataType: 'text',
|
|
277
277
|
description: 'Author of the document',
|
|
278
278
|
vectorize: true,
|
|
279
279
|
};
|
|
@@ -298,7 +298,7 @@ const collection = await lookup.getCollection(collectionId);
|
|
|
298
298
|
properties: [
|
|
299
299
|
{
|
|
300
300
|
name: 'author',
|
|
301
|
-
dataType: '
|
|
301
|
+
dataType: 'text',
|
|
302
302
|
description: 'Author of the document',
|
|
303
303
|
vectorize: true,
|
|
304
304
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/lookup",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -33,5 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
|
-
}
|
|
36
|
+
},
|
|
37
|
+
"gitHead": "659a5b69f0d64d621828d39bd8cf9f35afe10c01"
|
|
37
38
|
}
|