@crossworks/client-types 0.232.114 → 0.232.122

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossworks/client-types",
3
- "version": "0.232.114",
3
+ "version": "0.232.122",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
package/src/index.ts CHANGED
@@ -1029,7 +1029,7 @@ export type ProfilePreferences = {
1029
1029
  * Read via projectColorTheme, never raw. */
1030
1030
  colorTheme?: string;
1031
1031
  /** Selectable header WORDMARK font key (Settings → Appearance → Fonts). The
1032
- * font LIST lives in the web app (apps/web/lib/display-fonts.ts); the server
1032
+ * font LIST lives in the web app (server/web/lib/display-fonts.ts); the server
1033
1033
  * stores any well-formed slug and the client falls back to the default for
1034
1034
  * keys it doesn't know, so trimming the library never strands the preference.
1035
1035
  * Unset ⇒ the default wordmark face (Bricolage Grotesque). Read via
@@ -1108,7 +1108,7 @@ export type ProfilePreferences = {
1108
1108
  * of the always-on guards (self-grant block, no-lower-via-update, SSRF). */
1109
1109
  toolsmithRequireApproval?: boolean;
1110
1110
  /** APP_VERSION the boot-time manifest reconcile last synced this brain to.
1111
- * The reconcile (apps/web instrumentation → reconcileManifestOnBoot) runs once
1111
+ * The reconcile (server/web instrumentation → reconcileManifestOnBoot) runs once
1112
1112
  * per version on a deployed/updated instance, so a self-hoster who only pulls a
1113
1113
  * new image still gets new tools/skills/group-membership without running seed
1114
1114
  * scripts. Equal to APP_VERSION ⇒ already reconciled, skip. */
@@ -5,7 +5,7 @@
5
5
  * browser bundle. The server-only data layer lives in `./runners.ts`.
6
6
  *
7
7
  * Everything here mirrors DBOS's WorkflowStatus / StepInfo (the system-DB
8
- * execution journal); see apps/api/src/runs.ts for the original apps/api-side
8
+ * execution journal); see server/api/src/runs.ts for the original server/api-side
9
9
  * read layer this parallels.
10
10
  */
11
11
 
@@ -42,7 +42,7 @@ export type RunnerRun = {
42
42
  name: string;
43
43
  status: string;
44
44
  queue?: string;
45
- /** Which apps/api process executed it (helps when scaled out). */
45
+ /** Which server/api process executed it (helps when scaled out). */
46
46
  executorId?: string;
47
47
  appVersion?: string;
48
48
  /** How many times DBOS has tried to recover this run after a crash. */
@@ -80,7 +80,7 @@ export type LandedState =
80
80
  | 'skipped'
81
81
  /** Success but a layer is missing (silent-miss / dim drift / duplicate edges). */
82
82
  | 'fail'
83
- /** No extractor_run after the stall window — is apps/agent + an extractor up? */
83
+ /** No extractor_run after the stall window — is server/api + an extractor up? */
84
84
  | 'stalled';
85
85
 
86
86
  export type LandedItem = {
@@ -141,7 +141,7 @@ export type AuditReport = {
141
141
  // ─── system config integrity ────────────────────────────────────────────────
142
142
  //
143
143
  // Read-only check of the agent/skill/tool/worker CONFIG graph against the
144
- // declarative manifest (apps/web/lib/system-manifest). Catches the silent-drop
144
+ // declarative manifest (server/web/lib/system-manifest). Catches the silent-drop
145
145
  // cases the runtime resolvers hide: an agent referencing a skill/tool that has
146
146
  // no row, a specialist not wired into the persona's delegate_to, a default
147
147
  // worker missing for a kind. Same severity vocabulary as the corpus audit.