@arcjet/analyze 1.8.0 → 1.9.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +4 -5
package/dist/index.d.ts CHANGED
@@ -130,4 +130,4 @@ declare function detectSensitiveInfo(context: AnalyzeContext, value: string, ent
130
130
  */
131
131
  declare function matchFilters(context: AnalyzeContext, request: AnalyzeRequest, localFields: string, expressions: ReadonlyArray<string>, allowIfMatch: boolean): Promise<FilterResult>;
132
132
  //#endregion
133
- export { AnalyzeRequest, type BotConfig, type DetectedSensitiveInfoEntity, type EmailValidationConfig, type FilterResult, type SensitiveInfoEntity, detectBot, detectSensitiveInfo, generateFingerprint, isValidEmail, matchFilters };
133
+ export { AnalyzeRequest, type BotConfig, type DetectSensitiveInfoFunction, type DetectedSensitiveInfoEntity, type EmailValidationConfig, type FilterResult, type SensitiveInfoEntities, type SensitiveInfoEntity, type SensitiveInfoResult, detectBot, detectSensitiveInfo, generateFingerprint, isValidEmail, matchFilters };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcjet/analyze",
3
- "version": "1.8.0",
3
+ "version": "1.9.1",
4
4
  "description": "Arcjet local analysis engine",
5
5
  "keywords": [
6
6
  "analyze",
@@ -40,8 +40,7 @@
40
40
  "./package.json": "./package.json"
41
41
  },
42
42
  "publishConfig": {
43
- "access": "public",
44
- "tag": "latest"
43
+ "access": "public"
45
44
  },
46
45
  "scripts": {
47
46
  "build": "tsdown",
@@ -51,8 +50,8 @@
51
50
  "test": "npm run build && npm run test-coverage"
52
51
  },
53
52
  "dependencies": {
54
- "@arcjet/analyze-wasm": "1.8.0",
55
- "@arcjet/protocol": "1.8.0"
53
+ "@arcjet/analyze-wasm": "1.9.1",
54
+ "@arcjet/protocol": "1.9.1"
56
55
  },
57
56
  "devDependencies": {
58
57
  "@bytecodealliance/jco": "1.5.0",