@junando/webhook 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
|
@@ -95077,7 +95077,6 @@ const ConfigSchema = object({
|
|
|
95077
95077
|
redisUrl: string$1().url().optional(),
|
|
95078
95078
|
sqsQueueUrl: string$1().url().optional().or(literal("")),
|
|
95079
95079
|
dedupTtlSeconds: number().int().positive().default(300),
|
|
95080
|
-
clusterWindowMs: number().int().positive().default(12e4),
|
|
95081
95080
|
logLevel: _enum([
|
|
95082
95081
|
"trace",
|
|
95083
95082
|
"debug",
|
|
@@ -95183,7 +95182,6 @@ async function loadConfig() {
|
|
|
95183
95182
|
dedupTableName: process.env["DEDUP_TABLE_NAME"],
|
|
95184
95183
|
sqsQueueUrl: process.env["SQS_QUEUE_URL"],
|
|
95185
95184
|
dedupTtlSeconds: process.env["DEDUP_TTL_SECONDS"],
|
|
95186
|
-
clusterWindowMs: process.env["CLUSTER_WINDOW_MS"],
|
|
95187
95185
|
logLevel: process.env["LOG_LEVEL"],
|
|
95188
95186
|
nodeEnv: process.env["NODE_ENV"],
|
|
95189
95187
|
llmFallbackModels: process.env["LLM_FALLBACK_MODELS"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@junando/webhook",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.2",
|
|
4
4
|
"description": "AWS Lambda webhook handler — receives and enqueues external alert payloads for Junando",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-sdk/client-sqs": "^3.1127.0",
|
|
22
22
|
"zod": "^4.5.4",
|
|
23
|
-
"@junando/core": "0.16.
|
|
23
|
+
"@junando/core": "0.16.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/aws-lambda": "^8.10.163",
|