@kevisual/project-search 0.0.7 → 0.0.8

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/app.js CHANGED
@@ -25142,11 +25142,11 @@ class ProjectSearch {
25142
25142
  async searchFiles(query = "", options) {
25143
25143
  const filter = [];
25144
25144
  if (options?.projectPath)
25145
- filter.push(`projectPath starts_with "${options.projectPath}"`);
25145
+ filter.push(`projectPath STARTS WITH "${options.projectPath}"`);
25146
25146
  if (options?.repo)
25147
25147
  filter.push(`repo = "${options.repo}"`);
25148
25148
  if (options?.filepath)
25149
- filter.push(`filepath starts_with "${options.filepath}"`);
25149
+ filter.push(`filepath STARTS WITH "${options.filepath}"`);
25150
25150
  if (options?.link)
25151
25151
  filter.push(`link = "${options.link}"`);
25152
25152
  const searchTerms = [];
package/dist/remote.js CHANGED
@@ -25142,11 +25142,11 @@ class ProjectSearch {
25142
25142
  async searchFiles(query = "", options) {
25143
25143
  const filter = [];
25144
25144
  if (options?.projectPath)
25145
- filter.push(`projectPath starts_with "${options.projectPath}"`);
25145
+ filter.push(`projectPath STARTS WITH "${options.projectPath}"`);
25146
25146
  if (options?.repo)
25147
25147
  filter.push(`repo = "${options.repo}"`);
25148
25148
  if (options?.filepath)
25149
- filter.push(`filepath starts_with "${options.filepath}"`);
25149
+ filter.push(`filepath STARTS WITH "${options.filepath}"`);
25150
25150
  if (options?.link)
25151
25151
  filter.push(`link = "${options.link}"`);
25152
25152
  const searchTerms = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevisual/project-search",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {