@karmaniverous/jeeves-watcher 0.6.2 → 0.6.4
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.
|
@@ -462,7 +462,7 @@ function createRuleAjv() {
|
|
|
462
462
|
keyword: 'glob',
|
|
463
463
|
type: 'string',
|
|
464
464
|
schemaType: 'string',
|
|
465
|
-
validate: (pattern, data) => picomatch.isMatch(data, pattern),
|
|
465
|
+
validate: (pattern, data) => picomatch.isMatch(data, pattern, { dot: true, nocase: true }),
|
|
466
466
|
});
|
|
467
467
|
return ajv;
|
|
468
468
|
}
|
|
@@ -5254,7 +5254,6 @@ async function initEmbeddingAndStore(config, factories, logger) {
|
|
|
5254
5254
|
}
|
|
5255
5255
|
const vectorStore = factories.createVectorStoreClient(config.vectorStore, embeddingProvider.dimensions, logger);
|
|
5256
5256
|
await vectorStore.ensureCollection();
|
|
5257
|
-
await vectorStore.ensureTextIndex('chunk_text');
|
|
5258
5257
|
return { embeddingProvider, vectorStore };
|
|
5259
5258
|
}
|
|
5260
5259
|
/**
|
package/dist/index.js
CHANGED
|
@@ -911,7 +911,7 @@ function createRuleAjv() {
|
|
|
911
911
|
keyword: 'glob',
|
|
912
912
|
type: 'string',
|
|
913
913
|
schemaType: 'string',
|
|
914
|
-
validate: (pattern, data) => picomatch.isMatch(data, pattern),
|
|
914
|
+
validate: (pattern, data) => picomatch.isMatch(data, pattern, { dot: true, nocase: true }),
|
|
915
915
|
});
|
|
916
916
|
return ajv;
|
|
917
917
|
}
|
|
@@ -5236,7 +5236,6 @@ async function initEmbeddingAndStore(config, factories, logger) {
|
|
|
5236
5236
|
}
|
|
5237
5237
|
const vectorStore = factories.createVectorStoreClient(config.vectorStore, embeddingProvider.dimensions, logger);
|
|
5238
5238
|
await vectorStore.ensureCollection();
|
|
5239
|
-
await vectorStore.ensureTextIndex('chunk_text');
|
|
5240
5239
|
return { embeddingProvider, vectorStore };
|
|
5241
5240
|
}
|
|
5242
5241
|
/**
|
package/package.json
CHANGED