@holon-run/uxc-daemon-client 0.19.0 → 0.20.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.d.cts CHANGED
@@ -236,6 +236,15 @@ interface PollSubscriptionConfig {
236
236
  response_cursor_pointer?: string;
237
237
  cursor_from_item_pointer?: string;
238
238
  cursor_transform?: "increment";
239
+ /**
240
+ * First-look backfill depth. When set, only the initial poll cycle after a
241
+ * fresh checkpoint emits items: the whole first page is recorded in the
242
+ * checkpoint, but at most this many unseen items are emitted. `0`
243
+ * establishes the baseline without emitting anything ("new items only").
244
+ * Later cycles are unaffected. Requires the item_key, watermark, or
245
+ * content_hash checkpoint strategy.
246
+ */
247
+ initial_items_limit?: number;
239
248
  checkpoint_strategy: {
240
249
  type: "cursor_only";
241
250
  } | {
package/dist/index.d.ts CHANGED
@@ -236,6 +236,15 @@ interface PollSubscriptionConfig {
236
236
  response_cursor_pointer?: string;
237
237
  cursor_from_item_pointer?: string;
238
238
  cursor_transform?: "increment";
239
+ /**
240
+ * First-look backfill depth. When set, only the initial poll cycle after a
241
+ * fresh checkpoint emits items: the whole first page is recorded in the
242
+ * checkpoint, but at most this many unseen items are emitted. `0`
243
+ * establishes the baseline without emitting anything ("new items only").
244
+ * Later cycles are unaffected. Requires the item_key, watermark, or
245
+ * content_hash checkpoint strategy.
246
+ */
247
+ initial_items_limit?: number;
239
248
  checkpoint_strategy: {
240
249
  type: "cursor_only";
241
250
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holon-run/uxc-daemon-client",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Thin Node.js client for UXC daemon-backed operations",
5
5
  "license": "MIT",
6
6
  "repository": {