@riavzon/bot-detector 1.0.18 → 1.0.19

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/main.d.cts CHANGED
@@ -303,11 +303,11 @@ declare const configSchema: z.ZodObject<{
303
303
  enableFireWallBan: z.ZodDefault<z.ZodBoolean>;
304
304
  }, z.z.core.$strip>>;
305
305
  logLevel: z.ZodDefault<z.ZodEnum<{
306
+ fatal: "fatal";
306
307
  error: "error";
307
- debug: "debug";
308
- info: "info";
309
308
  warn: "warn";
310
- fatal: "fatal";
309
+ info: "info";
310
+ debug: "debug";
311
311
  }>>;
312
312
  }, z.z.core.$strip>;
313
313
  type BotDetectorConfig = z.infer<typeof configSchema>;
package/dist/main.d.mts CHANGED
@@ -304,11 +304,11 @@ declare const configSchema: z.ZodObject<{
304
304
  enableFireWallBan: z.ZodDefault<z.ZodBoolean>;
305
305
  }, z.z.core.$strip>>;
306
306
  logLevel: z.ZodDefault<z.ZodEnum<{
307
+ fatal: "fatal";
307
308
  error: "error";
308
- debug: "debug";
309
- info: "info";
310
309
  warn: "warn";
311
- fatal: "fatal";
310
+ info: "info";
311
+ debug: "debug";
312
312
  }>>;
313
313
  }, z.z.core.$strip>;
314
314
  type BotDetectorConfig = z.infer<typeof configSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riavzon/bot-detector",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "type": "module",
5
5
  "main": "./dist/main.cjs",
6
6
  "types": "./dist/main.d.cts",