@junando/worker 0.16.1 → 0.16.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/dist/handler.cjs +0 -2
- package/package.json +2 -2
package/dist/handler.cjs
CHANGED
|
@@ -103492,7 +103492,6 @@ const ConfigSchema = object({
|
|
|
103492
103492
|
redisUrl: string$1().url().optional(),
|
|
103493
103493
|
sqsQueueUrl: string$1().url().optional().or(literal("")),
|
|
103494
103494
|
dedupTtlSeconds: number().int().positive().default(300),
|
|
103495
|
-
clusterWindowMs: number().int().positive().default(12e4),
|
|
103496
103495
|
logLevel: _enum([
|
|
103497
103496
|
"trace",
|
|
103498
103497
|
"debug",
|
|
@@ -103598,7 +103597,6 @@ async function loadConfig() {
|
|
|
103598
103597
|
dedupTableName: process.env["DEDUP_TABLE_NAME"],
|
|
103599
103598
|
sqsQueueUrl: process.env["SQS_QUEUE_URL"],
|
|
103600
103599
|
dedupTtlSeconds: process.env["DEDUP_TTL_SECONDS"],
|
|
103601
|
-
clusterWindowMs: process.env["CLUSTER_WINDOW_MS"],
|
|
103602
103600
|
logLevel: process.env["LOG_LEVEL"],
|
|
103603
103601
|
nodeEnv: process.env["NODE_ENV"],
|
|
103604
103602
|
llmFallbackModels: process.env["LLM_FALLBACK_MODELS"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junando/worker",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.2",
|
|
4
4
|
"description": "AWS Lambda SQS worker — processes alert events and dispatches notifications for Junando",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-sdk/client-ssm": "^3.1127.0",
|
|
23
23
|
"ioredis": "^6.0.0",
|
|
24
24
|
"zod": "^4.5.4",
|
|
25
|
-
"@junando/core": "0.16.
|
|
25
|
+
"@junando/core": "0.16.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/aws-lambda": "^8.10.163",
|