@celigo/api-specs 0.2.5 → 0.2.6

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/job.yml CHANGED
@@ -1707,8 +1707,16 @@ components:
1707
1707
  Omitting `time_gt` does not mean "all history" — the endpoint falls back to the dashboard's
1708
1708
  default window (approximately the last 24 hours), and runs older than that silently drop out
1709
1709
  of every aggregate. Send `time_gt` (epoch milliseconds) explicitly for any other range.
1710
+
1711
+ `time_lte` must not be later than the current time: a future value is rejected with
1712
+ `400 invalid_filter_request_body` (unlike `POST /v1/jobs/current`, which accepts it). Omit
1713
+ `time_lte` to end the window at now. When both bounds are sent they must be at least one hour
1714
+ apart (`time_lte - time_gt >= 3600000`), or the request is rejected with
1715
+ `400 invalid_time_filter`; a window with `time_gt` alone has no minimum span.
1710
1716
  x-celigo-ai-guidance:
1711
1717
  - Always send an explicit time_gt matching the window you intend to report, and never present the aggregates as covering a longer period than the time filter you sent. Without time_gt the default window (~24 hours) applies — an empty result then means "nothing ran recently", never "no runs exist".
1718
+ - For a window that runs through the present, omit time_lte rather than computing an end bound — a value even seconds ahead of the server clock (a rounded-up "now", end of today) fails the whole request with 400 invalid_filter_request_body.
1719
+ - A closed window narrower than one hour cannot be queried; widen time_lte to time_gt + one hour (and say so when reporting) rather than sending the narrower range.
1712
1720
  - A flow absent from stats[] had no runs in the window; it does not mean the flow does not exist. numOpenError counts errors open NOW, which may predate the window.
1713
1721
  FlowRunStatsEntry:
1714
1722
  type: object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celigo/api-specs",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "private": false,
5
5
  "description": "Public OpenAPI bundles (dist/) and the celigo-cli lint schema pack (schemas.json).",
6
6
  "files": [
package/schemas.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "provenance": {
3
3
  "repo": "celigo/integrator-api-specs",
4
- "iasCommit": "20eb548",
5
- "generatedAt": "2026-09-09"
4
+ "iasCommit": "96fa282",
5
+ "generatedAt": "2026-09-10"
6
6
  },
7
7
  "roots": {
8
8
  "aiagent": 121,