@stacksjs/search-engine 0.41.1 → 0.42.2
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/README.md +2 -2
- package/dist/drivers/meilisearch.d.ts +0 -0
- package/dist/drivers/meilisearch.mjs +0 -0
- package/dist/index.d.ts +1 -3
- package/dist/index.mjs +3 -7
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ Please see our [releases](https://github.com/stacksjs/stacks/releases) page for
|
|
|
40
40
|
|
|
41
41
|
## 💪🏼 Contributing
|
|
42
42
|
|
|
43
|
-
Please
|
|
43
|
+
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
44
44
|
|
|
45
45
|
## 🏝 Community
|
|
46
46
|
|
|
@@ -50,7 +50,7 @@ For help, discussion about best practices, or any other conversation that would
|
|
|
50
50
|
|
|
51
51
|
For casual chit-chat with others using this package:
|
|
52
52
|
|
|
53
|
-
[Join the
|
|
53
|
+
[Join the Stacks Discord Server](https://discord.ow3.org)
|
|
54
54
|
|
|
55
55
|
## 📄 License
|
|
56
56
|
|
|
File without changes
|
|
File without changes
|
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return
|
|
4
|
-
host: "http://127.0.0.1:7700",
|
|
5
|
-
apiKey: "masterKey"
|
|
6
|
-
});
|
|
1
|
+
export function useSearchEngine() {
|
|
2
|
+
const searchEngine = "";
|
|
3
|
+
return searchEngine;
|
|
7
4
|
}
|
|
8
|
-
export { client };
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/search-engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.
|
|
4
|
+
"version": "0.42.2",
|
|
5
|
+
"packageManager": "pnpm@7.17.0",
|
|
6
6
|
"description": "The Stacks search engine integrations.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -20,6 +20,11 @@
|
|
|
20
20
|
"search-engine",
|
|
21
21
|
"meilisearch",
|
|
22
22
|
"algolia",
|
|
23
|
+
"typesense",
|
|
24
|
+
"pagination",
|
|
25
|
+
"sorting",
|
|
26
|
+
"filtering",
|
|
27
|
+
"searching",
|
|
23
28
|
"api",
|
|
24
29
|
"headless",
|
|
25
30
|
"stacks"
|
|
@@ -36,15 +41,18 @@
|
|
|
36
41
|
],
|
|
37
42
|
"engines": {
|
|
38
43
|
"node": ">=v18.12.1",
|
|
39
|
-
"pnpm": ">=7.
|
|
44
|
+
"pnpm": ">=7.17.0"
|
|
40
45
|
},
|
|
41
46
|
"peerDependencies": {
|
|
47
|
+
"@vueuse/core": "^9.6.0",
|
|
42
48
|
"meilisearch": "^0.29.1",
|
|
43
|
-
"
|
|
49
|
+
"vue": "^3.2.45",
|
|
50
|
+
"@stacksjs/drivers": "0.42.2"
|
|
44
51
|
},
|
|
45
52
|
"devDependencies": {
|
|
46
53
|
"mkdist": "^1.0.0",
|
|
47
|
-
"typescript": "^4.9.3"
|
|
54
|
+
"typescript": "^4.9.3",
|
|
55
|
+
"@stacksjs/testing": "0.42.2"
|
|
48
56
|
},
|
|
49
57
|
"scripts": {
|
|
50
58
|
"build": "mkdist -d",
|