@thinkai/tai-api-contract 2.43.0 → 2.44.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.
@@ -841,7 +841,7 @@ export interface paths {
841
841
  put?: never;
842
842
  /**
843
843
  * Refresh AI tool integration snapshots
844
- * @description Provider-agnostic refresh. Returns 409 when an advisory-lock refresh is already in progress. On upstream auth/rate/network failures, returns `200` with `{ ok:false, error }` so the SPA can render inline error.
844
+ * @description Provider-agnostic refresh. Returns 409 when an advisory-lock refresh is already in progress. On upstream auth/rate/network failures, returns `200` with `{ ok:false, error }` so the SPA can render inline error. Pass `full=true` to force a full re-sync that ignores the incremental daily-usage watermark and re-pulls the full initial window (six calendar months for Claude Enterprise) — used to backfill historical months after an ingestion-granularity change. Omitted/false performs a normal incremental refresh.
845
845
  */
846
846
  post: operations["refreshWorkspaceAiTool"];
847
847
  delete?: never;
@@ -7083,7 +7083,10 @@ export interface operations {
7083
7083
  };
7084
7084
  refreshWorkspaceAiTool: {
7085
7085
  parameters: {
7086
- query?: never;
7086
+ query?: {
7087
+ /** @description Force a full re-sync (ignore the daily-usage watermark, re-pull the full initial window). Truthy only for `true` or `1`. */
7088
+ full?: "true" | "1";
7089
+ };
7087
7090
  header?: never;
7088
7091
  path: {
7089
7092
  workspaceId: components["parameters"]["WorkspaceId"];