la-machina-engine 0.12.0 → 0.13.0
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/index.cjs +2 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +26 -7
- package/dist/index.d.ts +26 -7
- package/dist/index.js +2 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -10427,16 +10427,8 @@ var NodeBackgroundExecutor = class {
|
|
|
10427
10427
|
// src/engine/webhook.ts
|
|
10428
10428
|
init_cjs_shims();
|
|
10429
10429
|
var RETRY_DELAYS_MS = [
|
|
10430
|
-
0
|
|
10431
|
-
// attempt 1: immediate
|
|
10432
|
-
1e4,
|
|
10433
|
-
// attempt 2: 10s after failure
|
|
10434
|
-
6e4,
|
|
10435
|
-
// attempt 3: 60s after failure
|
|
10436
|
-
5 * 6e4,
|
|
10437
|
-
// attempt 4: 5min after failure
|
|
10438
|
-
30 * 6e4
|
|
10439
|
-
// attempt 5: 30min after failure
|
|
10430
|
+
0
|
|
10431
|
+
// attempt 1: immediate (Plan 046 — single attempt only)
|
|
10440
10432
|
];
|
|
10441
10433
|
var MAX_ATTEMPTS = RETRY_DELAYS_MS.length;
|
|
10442
10434
|
async function signPayload(secret, timestamp, body) {
|