@effect-agent/platform-cloudflare 0.1.0-beta.95 → 0.1.0-beta.96
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/Alarm.d.mts +3 -3
- package/dist/Alarm.mjs +141 -51
- package/dist/Alarm.mjs.map +1 -1
- package/dist/{CloudflareConfig-D472JOQA.d.mts → CloudflareConfig-DKXGo8L3.d.mts} +5 -5
- package/dist/CloudflareConfig.d.mts +1 -1
- package/dist/CloudflareConfig.mjs +4 -4
- package/dist/CloudflareConfig.mjs.map +1 -1
- package/dist/CloudflareThreadClient.d.mts +85 -16
- package/dist/ThreadObject-DXavwaU-.mjs.map +1 -1
- package/dist/{ThreadObject-CZxuDWOb.d.mts → ThreadObject-DiqVDdJE.d.mts} +5 -5
- package/dist/ThreadObject.d.mts +1 -1
- package/dist/index.d.mts +2 -2
- package/package.json +1 -1
- package/src/Alarm.ts +285 -67
- package/src/CloudflareConfig.ts +4 -4
- package/src/internal/layers.ts +2 -2
package/src/internal/layers.ts
CHANGED
|
@@ -124,9 +124,9 @@ export interface CloudflareDurableRuntimeOptions {
|
|
|
124
124
|
readonly ownershipLeaseDuration?: number | undefined;
|
|
125
125
|
/** Milliseconds; default 100. */
|
|
126
126
|
readonly alarmBackoffBase?: number | undefined;
|
|
127
|
-
/**
|
|
127
|
+
/** Failed/no-progress exponential backoff ceiling in milliseconds; default 5000. */
|
|
128
128
|
readonly alarmBackoffCap?: number | undefined;
|
|
129
|
-
/**
|
|
129
|
+
/** Fallback scan cadence for newly dirty work in milliseconds; default 1000. */
|
|
130
130
|
readonly wakeScanInterval?: number | undefined;
|
|
131
131
|
/** Milliseconds; default 500. */
|
|
132
132
|
readonly settlementPollInterval?: number | undefined;
|