@crossworks/client-types 0.232.114 → 0.232.123
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 +1 -1
- package/src/index.ts +2 -2
- package/src/runners-types.ts +2 -2
- package/src/types/integrity.ts +2 -2
package/package.json
CHANGED
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 (
|
|
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 (
|
|
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. */
|
package/src/runners-types.ts
CHANGED
|
@@ -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
|
|
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
|
|
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. */
|
package/src/types/integrity.ts
CHANGED
|
@@ -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
|
|
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 (
|
|
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.
|