@fnndsc/menu 0.4.0 → 0.6.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/dag.d.ts CHANGED
@@ -529,6 +529,28 @@ export declare const feedDagModelSchema: z.ZodObject<{
529
529
  feedId: number;
530
530
  feedName: string;
531
531
  }>;
532
+ /**
533
+ * The `feed.indexing` model: a feed asked for while its topology is still
534
+ * being indexed. The command returned at once (index movement never holds
535
+ * the session's lane); the graph follows on the feed's watch when the walk
536
+ * lands, and the prompt context carries the count meanwhile.
537
+ */
538
+ export declare const feedIndexingModelSchema: z.ZodObject<{
539
+ feedId: z.ZodNumber;
540
+ loaded: z.ZodNumber;
541
+ total: z.ZodNumber;
542
+ failed: z.ZodOptional<z.ZodString>;
543
+ }, "strip", z.ZodTypeAny, {
544
+ feedId: number;
545
+ loaded: number;
546
+ total: number;
547
+ failed?: string | undefined;
548
+ }, {
549
+ feedId: number;
550
+ loaded: number;
551
+ total: number;
552
+ failed?: string | undefined;
553
+ }>;
532
554
  export type DagNodeCore = z.infer<typeof dagNodeCoreSchema>;
533
555
  export type PipelineDiagramNode = z.infer<typeof pipelineDiagramNodeSchema>;
534
556
  export type PipelineDiagramModel = z.infer<typeof pipelineDiagramModelSchema>;
@@ -536,10 +558,12 @@ export type DagNodeStatus = z.infer<typeof dagNodeStatusSchema>;
536
558
  export type DagNodeMetrics = z.infer<typeof dagNodeMetricsSchema>;
537
559
  export type FeedDagNode = z.infer<typeof feedDagNodeSchema>;
538
560
  export type FeedDagModel = z.infer<typeof feedDagModelSchema>;
561
+ export type FeedIndexingModel = z.infer<typeof feedIndexingModelSchema>;
539
562
  /** The envelope model kinds this vocabulary defines. */
540
563
  export declare const DAG_MODEL_KINDS: {
541
564
  readonly pipelineDiagram: "pipeline.diagram";
542
565
  readonly feedDag: "feed.dag";
566
+ readonly feedIndexing: "feed.indexing";
543
567
  };
544
568
  /** One feed in the titled chooser list, from the process cache. */
545
569
  export declare const feedListEntrySchema: z.ZodObject<{
package/dist/dag.js CHANGED
@@ -107,10 +107,23 @@ export const feedDagModelSchema = z.object({
107
107
  feedName: z.string(),
108
108
  nodes: z.array(feedDagNodeSchema),
109
109
  });
110
+ /**
111
+ * The `feed.indexing` model: a feed asked for while its topology is still
112
+ * being indexed. The command returned at once (index movement never holds
113
+ * the session's lane); the graph follows on the feed's watch when the walk
114
+ * lands, and the prompt context carries the count meanwhile.
115
+ */
116
+ export const feedIndexingModelSchema = z.object({
117
+ feedId: z.number(),
118
+ loaded: z.number(),
119
+ total: z.number(),
120
+ failed: z.string().optional(),
121
+ });
110
122
  /** The envelope model kinds this vocabulary defines. */
111
123
  export const DAG_MODEL_KINDS = {
112
124
  pipelineDiagram: 'pipeline.diagram',
113
125
  feedDag: 'feed.dag',
126
+ feedIndexing: 'feed.indexing',
114
127
  };
115
128
  /** One feed in the titled chooser list, from the process cache. */
116
129
  export const feedListEntrySchema = z.object({
package/dist/dag.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"dag.js","sourceRoot":"","sources":["../src/dag.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"dag.js","sourceRoot":"","sources":["../src/dag.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -13,9 +13,9 @@ export { PROC_PROMPT_STATES, procPromptState_get, type ProcPromptState, type Pro
13
13
  export { PROGRESS_OPERATIONS, PROGRESS_KINDS, PROGRESS_PHASES, PROGRESS_UNITS, PROGRESS_STATUSES, type ProgressOperation, type ProgressKind, type ProgressPhase, type ProgressUnit, type ProgressStatus, } from './progress.js';
14
14
  export { CONTRACT_VERSION, version_isCompatible } from './version.js';
15
15
  export { commandEnvelopeSchema, envelopeModelSchema, envelopeStatusSchema, stackMessageSchema, resolutionTraceSchema, type WireEnvelope, type CommandEnvelope, type EnvelopeStatus, type EnvelopeModel, type StackMessage, type ResolutionTrace, } from './envelope.js';
16
- export { channelSchema, surfaceCapabilitiesMessageSchema, attachMessageSchema, executeMessageSchema, cancelMessageSchema, completeRequestSchema, promptAnswerMessageSchema, promptErrorMessageSchema, pipeResultMessageSchema, pipeErrorMessageSchema, shellResultMessageSchema, shellErrorMessageSchema, editResultMessageSchema, editErrorMessageSchema, deliverResultMessageSchema, deliverErrorMessageSchema, clientMessageSchema, attachedMessageSchema, resultMessageSchema, completeReplySchema, outputMessageSchema, progressOperationSchema, progressKindSchema, progressPhaseSchema, progressUnitSchema, progressStatusSchema, progressMessageSchema, sessionMessageSchema, errorMessageSchema, promptMessageSchema, promptKindSchema, promptPathSchema, promptKind_of, PROMPT_KINDS, promptContextSchema, promptLineMessageSchema, pipeMessageSchema, shellMessageSchema, editMessageSchema, deliverMessageSchema, serverMessageSchema, telemetryMessageSchema, regardSchema, regardMessageSchema, watchMessageSchema, unwatchMessageSchema, WATCH_STATES, watchStateSchema, watchedMessageSchema, SERVER_MESSAGE_TYPES, type WatchState, type WatchedMessage, type AmbientEvent, type ClientMessage, type ServerMessage, type ProgressMessage, type ProgressEvent, type PromptContext, type PromptKind, type PromptPath, type PromptMessage, type Regard, type FileDeliverRequest, type FileDeliverResult, } from './messages.js';
16
+ export { channelSchema, surfaceCapabilitiesMessageSchema, attachMessageSchema, executeMessageSchema, cancelMessageSchema, completeRequestSchema, promptAnswerMessageSchema, promptErrorMessageSchema, pipeResultMessageSchema, pipeErrorMessageSchema, shellResultMessageSchema, shellErrorMessageSchema, editResultMessageSchema, editErrorMessageSchema, deliverResultMessageSchema, deliverErrorMessageSchema, clientMessageSchema, attachedMessageSchema, resultMessageSchema, completeReplySchema, outputMessageSchema, progressOperationSchema, progressKindSchema, progressPhaseSchema, progressUnitSchema, progressStatusSchema, progressMessageSchema, sessionMessageSchema, errorMessageSchema, promptMessageSchema, promptKindSchema, promptPathSchema, promptKind_of, PROMPT_KINDS, promptContextSchema, promptLineMessageSchema, pipeMessageSchema, shellMessageSchema, editMessageSchema, deliverMessageSchema, serverMessageSchema, telemetryMessageSchema, type LaneTelemetry, type CubeTelemetry, type JobsStateTelemetry, regardSchema, regardMessageSchema, watchMessageSchema, unwatchMessageSchema, WATCH_STATES, watchStateSchema, watchedMessageSchema, SERVER_MESSAGE_TYPES, type WatchState, type WatchedMessage, type AmbientEvent, type ClientMessage, type ServerMessage, type ProgressMessage, type ProgressEvent, type PromptContext, type PromptKind, type PromptPath, type PromptMessage, type Regard, type FileDeliverRequest, type FileDeliverResult, } from './messages.js';
17
17
  export { clientMessage_parse, serverMessage_parse, clientMessage_fromJson, attach_parse, type ParseResult, } from './validate.js';
18
- export { dagNodeCoreSchema, dagArgumentSchema, pipelineDiagramNodeSchema, pipelineDiagramModelSchema, DAG_NODE_STATUSES, dagNodeStatusSchema, dagNodeMetricsSchema, feedDagNodeSchema, feedDagModelSchema, DAG_MODEL_KINDS, type DagNodeCore, type PipelineDiagramNode, type PipelineDiagramModel, type DagNodeStatus, type DagNodeMetrics, type FeedDagNode, type DagNodeTally, type FeedDagModel, } from './dag.js';
18
+ export { dagNodeCoreSchema, dagArgumentSchema, pipelineDiagramNodeSchema, pipelineDiagramModelSchema, DAG_NODE_STATUSES, dagNodeStatusSchema, dagNodeMetricsSchema, feedDagNodeSchema, feedDagModelSchema, feedIndexingModelSchema, DAG_MODEL_KINDS, type DagNodeCore, type PipelineDiagramNode, type PipelineDiagramModel, type DagNodeStatus, type DagNodeMetrics, type FeedDagNode, type DagNodeTally, type FeedDagModel, type FeedIndexingModel, } from './dag.js';
19
19
  export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, type FeedListEntry, type FeedListModel, } from './dag.js';
20
20
  export { pluginParameterSchema, pluginInfoModelSchema, PLUGIN_INFO_MODEL_KIND, type PluginParameter, type PluginInfoModel, } from './plugin.js';
21
21
  export { pacsProvenanceSchema, pacsPatientSchema, pacsPatientStatusSchema, PACS_PATIENT_STATUSES, pacsSeriesSchema, pacsStudySchema, pacsQueryModelSchema, pacsServerSchema, pacsServersModelSchema, PACS_QUERY_MODEL_KIND, PACS_SERVERS_MODEL_KIND, type PacsSeries, type PacsStudy, type PacsProvenance, type PacsPatient, type PacsPatientStatus, type PacsQueryModel, type PacsServer, type PacsServersModel, } from './pacs.js';
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ export { CONTRACT_VERSION, version_isCompatible } from './version.js';
15
15
  export { commandEnvelopeSchema, envelopeModelSchema, envelopeStatusSchema, stackMessageSchema, resolutionTraceSchema, } from './envelope.js';
16
16
  export { channelSchema, surfaceCapabilitiesMessageSchema, attachMessageSchema, executeMessageSchema, cancelMessageSchema, completeRequestSchema, promptAnswerMessageSchema, promptErrorMessageSchema, pipeResultMessageSchema, pipeErrorMessageSchema, shellResultMessageSchema, shellErrorMessageSchema, editResultMessageSchema, editErrorMessageSchema, deliverResultMessageSchema, deliverErrorMessageSchema, clientMessageSchema, attachedMessageSchema, resultMessageSchema, completeReplySchema, outputMessageSchema, progressOperationSchema, progressKindSchema, progressPhaseSchema, progressUnitSchema, progressStatusSchema, progressMessageSchema, sessionMessageSchema, errorMessageSchema, promptMessageSchema, promptKindSchema, promptPathSchema, promptKind_of, PROMPT_KINDS, promptContextSchema, promptLineMessageSchema, pipeMessageSchema, shellMessageSchema, editMessageSchema, deliverMessageSchema, serverMessageSchema, telemetryMessageSchema, regardSchema, regardMessageSchema, watchMessageSchema, unwatchMessageSchema, WATCH_STATES, watchStateSchema, watchedMessageSchema, SERVER_MESSAGE_TYPES, } from './messages.js';
17
17
  export { clientMessage_parse, serverMessage_parse, clientMessage_fromJson, attach_parse, } from './validate.js';
18
- export { dagNodeCoreSchema, dagArgumentSchema, pipelineDiagramNodeSchema, pipelineDiagramModelSchema, DAG_NODE_STATUSES, dagNodeStatusSchema, dagNodeMetricsSchema, feedDagNodeSchema, feedDagModelSchema, DAG_MODEL_KINDS, } from './dag.js';
18
+ export { dagNodeCoreSchema, dagArgumentSchema, pipelineDiagramNodeSchema, pipelineDiagramModelSchema, DAG_NODE_STATUSES, dagNodeStatusSchema, dagNodeMetricsSchema, feedDagNodeSchema, feedDagModelSchema, feedIndexingModelSchema, DAG_MODEL_KINDS, } from './dag.js';
19
19
  export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, } from './dag.js';
20
20
  export { pluginParameterSchema, pluginInfoModelSchema, PLUGIN_INFO_MODEL_KIND, } from './plugin.js';
21
21
  export { pacsProvenanceSchema, pacsPatientSchema, pacsPatientStatusSchema, PACS_PATIENT_STATUSES, pacsSeriesSchema, pacsStudySchema, pacsQueryModelSchema, pacsServerSchema, pacsServersModelSchema, PACS_QUERY_MODEL_KIND, PACS_SERVERS_MODEL_KIND, } from './pacs.js';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EACL,kBAAkB,EAClB,mBAAmB,GAIpB,MAAM,WAAW,CAAC;AACnB,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,cAAc,EACd,iBAAiB,GAMlB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACtE,OAAO,EACL,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,GAOtB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,aAAa,EACb,gCAAgC,EAChC,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACnB,qBAAqB,EACrB,yBAAyB,EACzB,wBAAwB,EACxB,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,sBAAsB,EACtB,0BAA0B,EAC1B,yBAAyB,EACzB,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,YAAY,EACZ,mBAAmB,EACnB,uBAAuB,EACvB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,YAAY,EACZ,gBAAgB,EAChB,oBAAoB,EACpB,oBAAoB,GAerB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,sBAAsB,EACtB,YAAY,GAEb,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,yBAAyB,EACzB,0BAA0B,EAC1B,iBAAiB,EACjB,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,GAShB,MAAM,UAAU,CAAC;AAClB,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,oBAAoB,GAGrB,MAAM,UAAU,CAAC;AAClB,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,sBAAsB,GAGvB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,uBAAuB,EACvB,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,EACf,oBAAoB,EACpB,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,uBAAuB,GASxB,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EACL,kBAAkB,EAClB,mBAAmB,GAIpB,MAAM,WAAW,CAAC;AACnB,OAAO,EACL,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,cAAc,EACd,iBAAiB,GAMlB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACtE,OAAO,EACL,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,GAOtB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,aAAa,EACb,gCAAgC,EAChC,mBAAmB,EACnB,oBAAoB,EACpB,mBAAmB,EACnB,qBAAqB,EACrB,yBAAyB,EACzB,wBAAwB,EACxB,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,sBAAsB,EACtB,0BAA0B,EAC1B,yBAAyB,EACzB,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,YAAY,EACZ,mBAAmB,EACnB,uBAAuB,EACvB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EAItB,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,YAAY,EACZ,gBAAgB,EAChB,oBAAoB,EACpB,oBAAoB,GAerB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,sBAAsB,EACtB,YAAY,GAEb,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,yBAAyB,EACzB,0BAA0B,EAC1B,iBAAiB,EACjB,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,uBAAuB,EACvB,eAAe,GAUhB,MAAM,UAAU,CAAC;AAClB,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,oBAAoB,GAGrB,MAAM,UAAU,CAAC;AAClB,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,sBAAsB,GAGvB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,oBAAoB,EACpB,iBAAiB,EACjB,uBAAuB,EACvB,qBAAqB,EACrB,gBAAgB,EAChB,eAAe,EACf,oBAAoB,EACpB,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,uBAAuB,GASxB,MAAM,WAAW,CAAC"}
@@ -986,10 +986,10 @@ export declare const progressMessageSchema: z.ZodObject<{
986
986
  phase: "failed" | "scanning" | "transferring" | "watching" | "retrying" | "reading" | "working" | "complete";
987
987
  label?: string | undefined;
988
988
  status?: "unknown" | "done" | "error" | "running" | "unconfirmed" | "stalled" | "timeout" | undefined;
989
+ total?: number | undefined;
989
990
  kind?: "workflow" | "transfer" | "retrieve" | "inspection" | undefined;
990
991
  itemId?: string | undefined;
991
992
  current?: number | undefined;
992
- total?: number | undefined;
993
993
  percent?: number | undefined;
994
994
  unit?: "nodes" | "files" | "bytes" | "series" | "jobs" | undefined;
995
995
  }, {
@@ -997,12 +997,12 @@ export declare const progressMessageSchema: z.ZodObject<{
997
997
  type: "progress";
998
998
  label?: string | undefined;
999
999
  status?: unknown;
1000
+ total?: number | undefined;
1000
1001
  kind?: unknown;
1001
1002
  operation?: unknown;
1002
1003
  phase?: unknown;
1003
1004
  itemId?: string | undefined;
1004
1005
  current?: number | undefined;
1005
- total?: number | undefined;
1006
1006
  percent?: number | undefined;
1007
1007
  unit?: unknown;
1008
1008
  }>;
@@ -1291,40 +1291,76 @@ export declare const promptContextSchema: z.ZodObject<{
1291
1291
  id: z.ZodNumber;
1292
1292
  loaded: z.ZodNumber;
1293
1293
  total: z.ZodNumber;
1294
+ failed: z.ZodOptional<z.ZodString>;
1294
1295
  }, "strip", z.ZodTypeAny, {
1295
1296
  id: number;
1296
- total: number;
1297
1297
  loaded: number;
1298
+ total: number;
1299
+ failed?: string | undefined;
1298
1300
  }, {
1299
1301
  id: number;
1300
- total: number;
1301
1302
  loaded: number;
1303
+ total: number;
1304
+ failed?: string | undefined;
1302
1305
  }>>;
1306
+ feeds: z.ZodOptional<z.ZodArray<z.ZodObject<{
1307
+ id: z.ZodNumber;
1308
+ loaded: z.ZodNumber;
1309
+ total: z.ZodNumber;
1310
+ failed: z.ZodOptional<z.ZodString>;
1311
+ }, "strip", z.ZodTypeAny, {
1312
+ id: number;
1313
+ loaded: number;
1314
+ total: number;
1315
+ failed?: string | undefined;
1316
+ }, {
1317
+ id: number;
1318
+ loaded: number;
1319
+ total: number;
1320
+ failed?: string | undefined;
1321
+ }>, "many">>;
1303
1322
  arrived: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1323
+ roster: z.ZodOptional<z.ZodEnum<["delta", "full"]>>;
1304
1324
  }, "strip", z.ZodTypeAny, {
1305
1325
  loaded: number;
1306
- state?: "cold" | "cached" | "failed" | undefined;
1307
1326
  total?: number | undefined;
1327
+ feeds?: {
1328
+ id: number;
1329
+ loaded: number;
1330
+ total: number;
1331
+ failed?: string | undefined;
1332
+ }[] | undefined;
1333
+ state?: "failed" | "cold" | "cached" | undefined;
1308
1334
  restored?: boolean | undefined;
1309
1335
  sweeping?: boolean | undefined;
1310
1336
  feed?: {
1311
1337
  id: number;
1312
- total: number;
1313
1338
  loaded: number;
1339
+ total: number;
1340
+ failed?: string | undefined;
1314
1341
  } | undefined;
1315
1342
  arrived?: number[] | undefined;
1343
+ roster?: "delta" | "full" | undefined;
1316
1344
  }, {
1317
1345
  loaded: number;
1318
- state?: "cold" | "cached" | "failed" | undefined;
1319
1346
  total?: number | undefined;
1347
+ feeds?: {
1348
+ id: number;
1349
+ loaded: number;
1350
+ total: number;
1351
+ failed?: string | undefined;
1352
+ }[] | undefined;
1353
+ state?: "failed" | "cold" | "cached" | undefined;
1320
1354
  restored?: boolean | undefined;
1321
1355
  sweeping?: boolean | undefined;
1322
1356
  feed?: {
1323
1357
  id: number;
1324
- total: number;
1325
1358
  loaded: number;
1359
+ total: number;
1360
+ failed?: string | undefined;
1326
1361
  } | undefined;
1327
1362
  arrived?: number[] | undefined;
1363
+ roster?: "delta" | "full" | undefined;
1328
1364
  }>>;
1329
1365
  procIndex: z.ZodOptional<z.ZodObject<{
1330
1366
  jobs: z.ZodNumber;
@@ -1360,16 +1396,24 @@ export declare const promptContextSchema: z.ZodObject<{
1360
1396
  lastCommandDurationMs: number;
1361
1397
  procWarmup?: {
1362
1398
  loaded: number;
1363
- state?: "cold" | "cached" | "failed" | undefined;
1364
1399
  total?: number | undefined;
1400
+ feeds?: {
1401
+ id: number;
1402
+ loaded: number;
1403
+ total: number;
1404
+ failed?: string | undefined;
1405
+ }[] | undefined;
1406
+ state?: "failed" | "cold" | "cached" | undefined;
1365
1407
  restored?: boolean | undefined;
1366
1408
  sweeping?: boolean | undefined;
1367
1409
  feed?: {
1368
1410
  id: number;
1369
- total: number;
1370
1411
  loaded: number;
1412
+ total: number;
1413
+ failed?: string | undefined;
1371
1414
  } | undefined;
1372
1415
  arrived?: number[] | undefined;
1416
+ roster?: "delta" | "full" | undefined;
1373
1417
  } | undefined;
1374
1418
  procIndex?: {
1375
1419
  feeds: number;
@@ -1389,16 +1433,24 @@ export declare const promptContextSchema: z.ZodObject<{
1389
1433
  lastCommandDurationMs: number;
1390
1434
  procWarmup?: {
1391
1435
  loaded: number;
1392
- state?: "cold" | "cached" | "failed" | undefined;
1393
1436
  total?: number | undefined;
1437
+ feeds?: {
1438
+ id: number;
1439
+ loaded: number;
1440
+ total: number;
1441
+ failed?: string | undefined;
1442
+ }[] | undefined;
1443
+ state?: "failed" | "cold" | "cached" | undefined;
1394
1444
  restored?: boolean | undefined;
1395
1445
  sweeping?: boolean | undefined;
1396
1446
  feed?: {
1397
1447
  id: number;
1398
- total: number;
1399
1448
  loaded: number;
1449
+ total: number;
1450
+ failed?: string | undefined;
1400
1451
  } | undefined;
1401
1452
  arrived?: number[] | undefined;
1453
+ roster?: "delta" | "full" | undefined;
1402
1454
  } | undefined;
1403
1455
  procIndex?: {
1404
1456
  feeds: number;
@@ -1436,40 +1488,76 @@ export declare const promptLineMessageSchema: z.ZodObject<{
1436
1488
  id: z.ZodNumber;
1437
1489
  loaded: z.ZodNumber;
1438
1490
  total: z.ZodNumber;
1491
+ failed: z.ZodOptional<z.ZodString>;
1439
1492
  }, "strip", z.ZodTypeAny, {
1440
1493
  id: number;
1441
- total: number;
1442
1494
  loaded: number;
1495
+ total: number;
1496
+ failed?: string | undefined;
1443
1497
  }, {
1444
1498
  id: number;
1445
- total: number;
1446
1499
  loaded: number;
1500
+ total: number;
1501
+ failed?: string | undefined;
1447
1502
  }>>;
1503
+ feeds: z.ZodOptional<z.ZodArray<z.ZodObject<{
1504
+ id: z.ZodNumber;
1505
+ loaded: z.ZodNumber;
1506
+ total: z.ZodNumber;
1507
+ failed: z.ZodOptional<z.ZodString>;
1508
+ }, "strip", z.ZodTypeAny, {
1509
+ id: number;
1510
+ loaded: number;
1511
+ total: number;
1512
+ failed?: string | undefined;
1513
+ }, {
1514
+ id: number;
1515
+ loaded: number;
1516
+ total: number;
1517
+ failed?: string | undefined;
1518
+ }>, "many">>;
1448
1519
  arrived: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1520
+ roster: z.ZodOptional<z.ZodEnum<["delta", "full"]>>;
1449
1521
  }, "strip", z.ZodTypeAny, {
1450
1522
  loaded: number;
1451
- state?: "cold" | "cached" | "failed" | undefined;
1452
1523
  total?: number | undefined;
1524
+ feeds?: {
1525
+ id: number;
1526
+ loaded: number;
1527
+ total: number;
1528
+ failed?: string | undefined;
1529
+ }[] | undefined;
1530
+ state?: "failed" | "cold" | "cached" | undefined;
1453
1531
  restored?: boolean | undefined;
1454
1532
  sweeping?: boolean | undefined;
1455
1533
  feed?: {
1456
1534
  id: number;
1457
- total: number;
1458
1535
  loaded: number;
1536
+ total: number;
1537
+ failed?: string | undefined;
1459
1538
  } | undefined;
1460
1539
  arrived?: number[] | undefined;
1540
+ roster?: "delta" | "full" | undefined;
1461
1541
  }, {
1462
1542
  loaded: number;
1463
- state?: "cold" | "cached" | "failed" | undefined;
1464
1543
  total?: number | undefined;
1544
+ feeds?: {
1545
+ id: number;
1546
+ loaded: number;
1547
+ total: number;
1548
+ failed?: string | undefined;
1549
+ }[] | undefined;
1550
+ state?: "failed" | "cold" | "cached" | undefined;
1465
1551
  restored?: boolean | undefined;
1466
1552
  sweeping?: boolean | undefined;
1467
1553
  feed?: {
1468
1554
  id: number;
1469
- total: number;
1470
1555
  loaded: number;
1556
+ total: number;
1557
+ failed?: string | undefined;
1471
1558
  } | undefined;
1472
1559
  arrived?: number[] | undefined;
1560
+ roster?: "delta" | "full" | undefined;
1473
1561
  }>>;
1474
1562
  procIndex: z.ZodOptional<z.ZodObject<{
1475
1563
  jobs: z.ZodNumber;
@@ -1505,16 +1593,24 @@ export declare const promptLineMessageSchema: z.ZodObject<{
1505
1593
  lastCommandDurationMs: number;
1506
1594
  procWarmup?: {
1507
1595
  loaded: number;
1508
- state?: "cold" | "cached" | "failed" | undefined;
1509
1596
  total?: number | undefined;
1597
+ feeds?: {
1598
+ id: number;
1599
+ loaded: number;
1600
+ total: number;
1601
+ failed?: string | undefined;
1602
+ }[] | undefined;
1603
+ state?: "failed" | "cold" | "cached" | undefined;
1510
1604
  restored?: boolean | undefined;
1511
1605
  sweeping?: boolean | undefined;
1512
1606
  feed?: {
1513
1607
  id: number;
1514
- total: number;
1515
1608
  loaded: number;
1609
+ total: number;
1610
+ failed?: string | undefined;
1516
1611
  } | undefined;
1517
1612
  arrived?: number[] | undefined;
1613
+ roster?: "delta" | "full" | undefined;
1518
1614
  } | undefined;
1519
1615
  procIndex?: {
1520
1616
  feeds: number;
@@ -1534,16 +1630,24 @@ export declare const promptLineMessageSchema: z.ZodObject<{
1534
1630
  lastCommandDurationMs: number;
1535
1631
  procWarmup?: {
1536
1632
  loaded: number;
1537
- state?: "cold" | "cached" | "failed" | undefined;
1538
1633
  total?: number | undefined;
1634
+ feeds?: {
1635
+ id: number;
1636
+ loaded: number;
1637
+ total: number;
1638
+ failed?: string | undefined;
1639
+ }[] | undefined;
1640
+ state?: "failed" | "cold" | "cached" | undefined;
1539
1641
  restored?: boolean | undefined;
1540
1642
  sweeping?: boolean | undefined;
1541
1643
  feed?: {
1542
1644
  id: number;
1543
- total: number;
1544
1645
  loaded: number;
1646
+ total: number;
1647
+ failed?: string | undefined;
1545
1648
  } | undefined;
1546
1649
  arrived?: number[] | undefined;
1650
+ roster?: "delta" | "full" | undefined;
1547
1651
  } | undefined;
1548
1652
  procIndex?: {
1549
1653
  feeds: number;
@@ -1566,16 +1670,24 @@ export declare const promptLineMessageSchema: z.ZodObject<{
1566
1670
  lastCommandDurationMs: number;
1567
1671
  procWarmup?: {
1568
1672
  loaded: number;
1569
- state?: "cold" | "cached" | "failed" | undefined;
1570
1673
  total?: number | undefined;
1674
+ feeds?: {
1675
+ id: number;
1676
+ loaded: number;
1677
+ total: number;
1678
+ failed?: string | undefined;
1679
+ }[] | undefined;
1680
+ state?: "failed" | "cold" | "cached" | undefined;
1571
1681
  restored?: boolean | undefined;
1572
1682
  sweeping?: boolean | undefined;
1573
1683
  feed?: {
1574
1684
  id: number;
1575
- total: number;
1576
1685
  loaded: number;
1686
+ total: number;
1687
+ failed?: string | undefined;
1577
1688
  } | undefined;
1578
1689
  arrived?: number[] | undefined;
1690
+ roster?: "delta" | "full" | undefined;
1579
1691
  } | undefined;
1580
1692
  procIndex?: {
1581
1693
  feeds: number;
@@ -1598,16 +1710,24 @@ export declare const promptLineMessageSchema: z.ZodObject<{
1598
1710
  lastCommandDurationMs: number;
1599
1711
  procWarmup?: {
1600
1712
  loaded: number;
1601
- state?: "cold" | "cached" | "failed" | undefined;
1602
1713
  total?: number | undefined;
1714
+ feeds?: {
1715
+ id: number;
1716
+ loaded: number;
1717
+ total: number;
1718
+ failed?: string | undefined;
1719
+ }[] | undefined;
1720
+ state?: "failed" | "cold" | "cached" | undefined;
1603
1721
  restored?: boolean | undefined;
1604
1722
  sweeping?: boolean | undefined;
1605
1723
  feed?: {
1606
1724
  id: number;
1607
- total: number;
1608
1725
  loaded: number;
1726
+ total: number;
1727
+ failed?: string | undefined;
1609
1728
  } | undefined;
1610
1729
  arrived?: number[] | undefined;
1730
+ roster?: "delta" | "full" | undefined;
1611
1731
  } | undefined;
1612
1732
  procIndex?: {
1613
1733
  feeds: number;
@@ -1730,19 +1850,125 @@ export declare const telemetryMessageSchema: z.ZodObject<{
1730
1850
  feeds: number;
1731
1851
  jobs: number;
1732
1852
  }>;
1853
+ /** The serialized lane: the command holding it and how many wait behind it. Absent on older daemons. */
1854
+ lane: z.ZodOptional<z.ZodObject<{
1855
+ running: z.ZodNullable<z.ZodObject<{
1856
+ line: z.ZodString;
1857
+ sinceMs: z.ZodNumber;
1858
+ surface: z.ZodString;
1859
+ }, "strip", z.ZodTypeAny, {
1860
+ line: string;
1861
+ surface: string;
1862
+ sinceMs: number;
1863
+ }, {
1864
+ line: string;
1865
+ surface: string;
1866
+ sinceMs: number;
1867
+ }>>;
1868
+ waiting: z.ZodNumber;
1869
+ }, "strip", z.ZodTypeAny, {
1870
+ waiting: number;
1871
+ running: {
1872
+ line: string;
1873
+ surface: string;
1874
+ sinceMs: number;
1875
+ } | null;
1876
+ }, {
1877
+ waiting: number;
1878
+ running: {
1879
+ line: string;
1880
+ surface: string;
1881
+ sinceMs: number;
1882
+ } | null;
1883
+ }>>;
1884
+ /** CUBE's pace: the median page fetch over the last twenty, or absent before any was timed. */
1885
+ cube: z.ZodOptional<z.ZodObject<{
1886
+ msPerPage: z.ZodNumber;
1887
+ samples: z.ZodNumber;
1888
+ }, "strip", z.ZodTypeAny, {
1889
+ msPerPage: number;
1890
+ samples: number;
1891
+ }, {
1892
+ msPerPage: number;
1893
+ samples: number;
1894
+ }>>;
1895
+ /** The lab's pulse from the roster's counters: jobs running and waiting, and the feeds that errored. */
1896
+ state: z.ZodOptional<z.ZodObject<{
1897
+ running: z.ZodNumber;
1898
+ runningFeeds: z.ZodNumber;
1899
+ scheduled: z.ZodNumber;
1900
+ errored: z.ZodNumber;
1901
+ erroredFeeds: z.ZodNumber;
1902
+ }, "strip", z.ZodTypeAny, {
1903
+ scheduled: number;
1904
+ running: number;
1905
+ runningFeeds: number;
1906
+ errored: number;
1907
+ erroredFeeds: number;
1908
+ }, {
1909
+ scheduled: number;
1910
+ running: number;
1911
+ runningFeeds: number;
1912
+ errored: number;
1913
+ erroredFeeds: number;
1914
+ }>>;
1733
1915
  }, "strip", z.ZodTypeAny, {
1734
1916
  type: "telemetry";
1735
1917
  index: {
1736
1918
  feeds: number;
1737
1919
  jobs: number;
1738
1920
  };
1921
+ state?: {
1922
+ scheduled: number;
1923
+ running: number;
1924
+ runningFeeds: number;
1925
+ errored: number;
1926
+ erroredFeeds: number;
1927
+ } | undefined;
1928
+ lane?: {
1929
+ waiting: number;
1930
+ running: {
1931
+ line: string;
1932
+ surface: string;
1933
+ sinceMs: number;
1934
+ } | null;
1935
+ } | undefined;
1936
+ cube?: {
1937
+ msPerPage: number;
1938
+ samples: number;
1939
+ } | undefined;
1739
1940
  }, {
1740
1941
  type: "telemetry";
1741
1942
  index: {
1742
1943
  feeds: number;
1743
1944
  jobs: number;
1744
1945
  };
1946
+ state?: {
1947
+ scheduled: number;
1948
+ running: number;
1949
+ runningFeeds: number;
1950
+ errored: number;
1951
+ erroredFeeds: number;
1952
+ } | undefined;
1953
+ lane?: {
1954
+ waiting: number;
1955
+ running: {
1956
+ line: string;
1957
+ surface: string;
1958
+ sinceMs: number;
1959
+ } | null;
1960
+ } | undefined;
1961
+ cube?: {
1962
+ msPerPage: number;
1963
+ samples: number;
1964
+ } | undefined;
1745
1965
  }>;
1966
+ /** What a telemetry heartbeat says about the lane. */
1967
+ export type LaneTelemetry = z.infer<typeof telemetryMessageSchema>['lane'];
1968
+ /** What a telemetry heartbeat says about CUBE's pace. */
1969
+ export type CubeTelemetry = z.infer<typeof telemetryMessageSchema>['cube'];
1970
+ /** What a telemetry heartbeat says about the lab's pulse. */
1971
+ export type JobsStateTelemetry = z.infer<typeof telemetryMessageSchema>['state'];
1746
1972
  /** Any message the daemon may send to a surface. */
1747
1973
  export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1748
1974
  type: z.ZodLiteral<"attached">;
@@ -1977,10 +2203,10 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
1977
2203
  phase: "failed" | "scanning" | "transferring" | "watching" | "retrying" | "reading" | "working" | "complete";
1978
2204
  label?: string | undefined;
1979
2205
  status?: "unknown" | "done" | "error" | "running" | "unconfirmed" | "stalled" | "timeout" | undefined;
2206
+ total?: number | undefined;
1980
2207
  kind?: "workflow" | "transfer" | "retrieve" | "inspection" | undefined;
1981
2208
  itemId?: string | undefined;
1982
2209
  current?: number | undefined;
1983
- total?: number | undefined;
1984
2210
  percent?: number | undefined;
1985
2211
  unit?: "nodes" | "files" | "bytes" | "series" | "jobs" | undefined;
1986
2212
  }, {
@@ -1988,12 +2214,12 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
1988
2214
  type: "progress";
1989
2215
  label?: string | undefined;
1990
2216
  status?: unknown;
2217
+ total?: number | undefined;
1991
2218
  kind?: unknown;
1992
2219
  operation?: unknown;
1993
2220
  phase?: unknown;
1994
2221
  itemId?: string | undefined;
1995
2222
  current?: number | undefined;
1996
- total?: number | undefined;
1997
2223
  percent?: number | undefined;
1998
2224
  unit?: unknown;
1999
2225
  }>, z.ZodObject<{
@@ -2203,40 +2429,76 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2203
2429
  id: z.ZodNumber;
2204
2430
  loaded: z.ZodNumber;
2205
2431
  total: z.ZodNumber;
2432
+ failed: z.ZodOptional<z.ZodString>;
2206
2433
  }, "strip", z.ZodTypeAny, {
2207
2434
  id: number;
2208
- total: number;
2209
2435
  loaded: number;
2436
+ total: number;
2437
+ failed?: string | undefined;
2210
2438
  }, {
2211
2439
  id: number;
2212
- total: number;
2213
2440
  loaded: number;
2441
+ total: number;
2442
+ failed?: string | undefined;
2214
2443
  }>>;
2444
+ feeds: z.ZodOptional<z.ZodArray<z.ZodObject<{
2445
+ id: z.ZodNumber;
2446
+ loaded: z.ZodNumber;
2447
+ total: z.ZodNumber;
2448
+ failed: z.ZodOptional<z.ZodString>;
2449
+ }, "strip", z.ZodTypeAny, {
2450
+ id: number;
2451
+ loaded: number;
2452
+ total: number;
2453
+ failed?: string | undefined;
2454
+ }, {
2455
+ id: number;
2456
+ loaded: number;
2457
+ total: number;
2458
+ failed?: string | undefined;
2459
+ }>, "many">>;
2215
2460
  arrived: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2461
+ roster: z.ZodOptional<z.ZodEnum<["delta", "full"]>>;
2216
2462
  }, "strip", z.ZodTypeAny, {
2217
2463
  loaded: number;
2218
- state?: "cold" | "cached" | "failed" | undefined;
2219
2464
  total?: number | undefined;
2465
+ feeds?: {
2466
+ id: number;
2467
+ loaded: number;
2468
+ total: number;
2469
+ failed?: string | undefined;
2470
+ }[] | undefined;
2471
+ state?: "failed" | "cold" | "cached" | undefined;
2220
2472
  restored?: boolean | undefined;
2221
2473
  sweeping?: boolean | undefined;
2222
2474
  feed?: {
2223
2475
  id: number;
2224
- total: number;
2225
2476
  loaded: number;
2477
+ total: number;
2478
+ failed?: string | undefined;
2226
2479
  } | undefined;
2227
2480
  arrived?: number[] | undefined;
2481
+ roster?: "delta" | "full" | undefined;
2228
2482
  }, {
2229
2483
  loaded: number;
2230
- state?: "cold" | "cached" | "failed" | undefined;
2231
2484
  total?: number | undefined;
2485
+ feeds?: {
2486
+ id: number;
2487
+ loaded: number;
2488
+ total: number;
2489
+ failed?: string | undefined;
2490
+ }[] | undefined;
2491
+ state?: "failed" | "cold" | "cached" | undefined;
2232
2492
  restored?: boolean | undefined;
2233
2493
  sweeping?: boolean | undefined;
2234
2494
  feed?: {
2235
2495
  id: number;
2236
- total: number;
2237
2496
  loaded: number;
2497
+ total: number;
2498
+ failed?: string | undefined;
2238
2499
  } | undefined;
2239
2500
  arrived?: number[] | undefined;
2501
+ roster?: "delta" | "full" | undefined;
2240
2502
  }>>;
2241
2503
  procIndex: z.ZodOptional<z.ZodObject<{
2242
2504
  jobs: z.ZodNumber;
@@ -2272,16 +2534,24 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2272
2534
  lastCommandDurationMs: number;
2273
2535
  procWarmup?: {
2274
2536
  loaded: number;
2275
- state?: "cold" | "cached" | "failed" | undefined;
2276
2537
  total?: number | undefined;
2538
+ feeds?: {
2539
+ id: number;
2540
+ loaded: number;
2541
+ total: number;
2542
+ failed?: string | undefined;
2543
+ }[] | undefined;
2544
+ state?: "failed" | "cold" | "cached" | undefined;
2277
2545
  restored?: boolean | undefined;
2278
2546
  sweeping?: boolean | undefined;
2279
2547
  feed?: {
2280
2548
  id: number;
2281
- total: number;
2282
2549
  loaded: number;
2550
+ total: number;
2551
+ failed?: string | undefined;
2283
2552
  } | undefined;
2284
2553
  arrived?: number[] | undefined;
2554
+ roster?: "delta" | "full" | undefined;
2285
2555
  } | undefined;
2286
2556
  procIndex?: {
2287
2557
  feeds: number;
@@ -2301,16 +2571,24 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2301
2571
  lastCommandDurationMs: number;
2302
2572
  procWarmup?: {
2303
2573
  loaded: number;
2304
- state?: "cold" | "cached" | "failed" | undefined;
2305
2574
  total?: number | undefined;
2575
+ feeds?: {
2576
+ id: number;
2577
+ loaded: number;
2578
+ total: number;
2579
+ failed?: string | undefined;
2580
+ }[] | undefined;
2581
+ state?: "failed" | "cold" | "cached" | undefined;
2306
2582
  restored?: boolean | undefined;
2307
2583
  sweeping?: boolean | undefined;
2308
2584
  feed?: {
2309
2585
  id: number;
2310
- total: number;
2311
2586
  loaded: number;
2587
+ total: number;
2588
+ failed?: string | undefined;
2312
2589
  } | undefined;
2313
2590
  arrived?: number[] | undefined;
2591
+ roster?: "delta" | "full" | undefined;
2314
2592
  } | undefined;
2315
2593
  procIndex?: {
2316
2594
  feeds: number;
@@ -2333,16 +2611,24 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2333
2611
  lastCommandDurationMs: number;
2334
2612
  procWarmup?: {
2335
2613
  loaded: number;
2336
- state?: "cold" | "cached" | "failed" | undefined;
2337
2614
  total?: number | undefined;
2615
+ feeds?: {
2616
+ id: number;
2617
+ loaded: number;
2618
+ total: number;
2619
+ failed?: string | undefined;
2620
+ }[] | undefined;
2621
+ state?: "failed" | "cold" | "cached" | undefined;
2338
2622
  restored?: boolean | undefined;
2339
2623
  sweeping?: boolean | undefined;
2340
2624
  feed?: {
2341
2625
  id: number;
2342
- total: number;
2343
2626
  loaded: number;
2627
+ total: number;
2628
+ failed?: string | undefined;
2344
2629
  } | undefined;
2345
2630
  arrived?: number[] | undefined;
2631
+ roster?: "delta" | "full" | undefined;
2346
2632
  } | undefined;
2347
2633
  procIndex?: {
2348
2634
  feeds: number;
@@ -2365,16 +2651,24 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2365
2651
  lastCommandDurationMs: number;
2366
2652
  procWarmup?: {
2367
2653
  loaded: number;
2368
- state?: "cold" | "cached" | "failed" | undefined;
2369
2654
  total?: number | undefined;
2655
+ feeds?: {
2656
+ id: number;
2657
+ loaded: number;
2658
+ total: number;
2659
+ failed?: string | undefined;
2660
+ }[] | undefined;
2661
+ state?: "failed" | "cold" | "cached" | undefined;
2370
2662
  restored?: boolean | undefined;
2371
2663
  sweeping?: boolean | undefined;
2372
2664
  feed?: {
2373
2665
  id: number;
2374
- total: number;
2375
2666
  loaded: number;
2667
+ total: number;
2668
+ failed?: string | undefined;
2376
2669
  } | undefined;
2377
2670
  arrived?: number[] | undefined;
2671
+ roster?: "delta" | "full" | undefined;
2378
2672
  } | undefined;
2379
2673
  procIndex?: {
2380
2674
  feeds: number;
@@ -2397,18 +2691,118 @@ export declare const serverMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
2397
2691
  feeds: number;
2398
2692
  jobs: number;
2399
2693
  }>;
2694
+ /** The serialized lane: the command holding it and how many wait behind it. Absent on older daemons. */
2695
+ lane: z.ZodOptional<z.ZodObject<{
2696
+ running: z.ZodNullable<z.ZodObject<{
2697
+ line: z.ZodString;
2698
+ sinceMs: z.ZodNumber;
2699
+ surface: z.ZodString;
2700
+ }, "strip", z.ZodTypeAny, {
2701
+ line: string;
2702
+ surface: string;
2703
+ sinceMs: number;
2704
+ }, {
2705
+ line: string;
2706
+ surface: string;
2707
+ sinceMs: number;
2708
+ }>>;
2709
+ waiting: z.ZodNumber;
2710
+ }, "strip", z.ZodTypeAny, {
2711
+ waiting: number;
2712
+ running: {
2713
+ line: string;
2714
+ surface: string;
2715
+ sinceMs: number;
2716
+ } | null;
2717
+ }, {
2718
+ waiting: number;
2719
+ running: {
2720
+ line: string;
2721
+ surface: string;
2722
+ sinceMs: number;
2723
+ } | null;
2724
+ }>>;
2725
+ /** CUBE's pace: the median page fetch over the last twenty, or absent before any was timed. */
2726
+ cube: z.ZodOptional<z.ZodObject<{
2727
+ msPerPage: z.ZodNumber;
2728
+ samples: z.ZodNumber;
2729
+ }, "strip", z.ZodTypeAny, {
2730
+ msPerPage: number;
2731
+ samples: number;
2732
+ }, {
2733
+ msPerPage: number;
2734
+ samples: number;
2735
+ }>>;
2736
+ /** The lab's pulse from the roster's counters: jobs running and waiting, and the feeds that errored. */
2737
+ state: z.ZodOptional<z.ZodObject<{
2738
+ running: z.ZodNumber;
2739
+ runningFeeds: z.ZodNumber;
2740
+ scheduled: z.ZodNumber;
2741
+ errored: z.ZodNumber;
2742
+ erroredFeeds: z.ZodNumber;
2743
+ }, "strip", z.ZodTypeAny, {
2744
+ scheduled: number;
2745
+ running: number;
2746
+ runningFeeds: number;
2747
+ errored: number;
2748
+ erroredFeeds: number;
2749
+ }, {
2750
+ scheduled: number;
2751
+ running: number;
2752
+ runningFeeds: number;
2753
+ errored: number;
2754
+ erroredFeeds: number;
2755
+ }>>;
2400
2756
  }, "strip", z.ZodTypeAny, {
2401
2757
  type: "telemetry";
2402
2758
  index: {
2403
2759
  feeds: number;
2404
2760
  jobs: number;
2405
2761
  };
2762
+ state?: {
2763
+ scheduled: number;
2764
+ running: number;
2765
+ runningFeeds: number;
2766
+ errored: number;
2767
+ erroredFeeds: number;
2768
+ } | undefined;
2769
+ lane?: {
2770
+ waiting: number;
2771
+ running: {
2772
+ line: string;
2773
+ surface: string;
2774
+ sinceMs: number;
2775
+ } | null;
2776
+ } | undefined;
2777
+ cube?: {
2778
+ msPerPage: number;
2779
+ samples: number;
2780
+ } | undefined;
2406
2781
  }, {
2407
2782
  type: "telemetry";
2408
2783
  index: {
2409
2784
  feeds: number;
2410
2785
  jobs: number;
2411
2786
  };
2787
+ state?: {
2788
+ scheduled: number;
2789
+ running: number;
2790
+ runningFeeds: number;
2791
+ errored: number;
2792
+ erroredFeeds: number;
2793
+ } | undefined;
2794
+ lane?: {
2795
+ waiting: number;
2796
+ running: {
2797
+ line: string;
2798
+ surface: string;
2799
+ sinceMs: number;
2800
+ } | null;
2801
+ } | undefined;
2802
+ cube?: {
2803
+ msPerPage: number;
2804
+ samples: number;
2805
+ } | undefined;
2412
2806
  }>, z.ZodObject<{
2413
2807
  type: z.ZodLiteral<"pipe">;
2414
2808
  pipeId: z.ZodString;
package/dist/messages.js CHANGED
@@ -423,8 +423,16 @@ export const promptContextSchema = z.object({
423
423
  id: z.number(),
424
424
  loaded: z.number(),
425
425
  total: z.number(),
426
+ failed: z.string().optional(),
426
427
  }).optional(),
428
+ feeds: z.array(z.object({
429
+ id: z.number(),
430
+ loaded: z.number(),
431
+ total: z.number(),
432
+ failed: z.string().optional(),
433
+ })).optional(),
427
434
  arrived: z.array(z.number()).optional(),
435
+ roster: z.enum(['delta', 'full']).optional(),
428
436
  }).optional(),
429
437
  procIndex: z.object({
430
438
  jobs: z.number(),
@@ -506,6 +514,28 @@ export const telemetryMessageSchema = z.object({
506
514
  jobs: z.number(),
507
515
  feeds: z.number(),
508
516
  }),
517
+ /** The serialized lane: the command holding it and how many wait behind it. Absent on older daemons. */
518
+ lane: z.object({
519
+ running: z.object({
520
+ line: z.string(),
521
+ sinceMs: z.number(),
522
+ surface: z.string(),
523
+ }).nullable(),
524
+ waiting: z.number(),
525
+ }).optional(),
526
+ /** CUBE's pace: the median page fetch over the last twenty, or absent before any was timed. */
527
+ cube: z.object({
528
+ msPerPage: z.number(),
529
+ samples: z.number(),
530
+ }).optional(),
531
+ /** The lab's pulse from the roster's counters: jobs running and waiting, and the feeds that errored. */
532
+ state: z.object({
533
+ running: z.number(),
534
+ runningFeeds: z.number(),
535
+ scheduled: z.number(),
536
+ errored: z.number(),
537
+ erroredFeeds: z.number(),
538
+ }).optional(),
509
539
  });
510
540
  /** Any message the daemon may send to a surface. */
511
541
  export const serverMessageSchema = z.discriminatedUnion('type', [
@@ -1 +1 @@
1
- {"version":3,"file":"messages.js","sourceRoot":"","sources":["../src/messages.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"messages.js","sourceRoot":"","sources":["../src/messages.ts"],"names":[],"mappings":"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"}
package/dist/proc.d.ts CHANGED
@@ -26,8 +26,12 @@ export interface ProcPromptProgress {
26
26
  state?: ProcPromptState;
27
27
  /** Whether the global index sweep is what `loaded`/`total` describe; absent means yes (older daemons). */
28
28
  sweeping?: boolean;
29
- /** One feed's first-visit topology load in flight, when there is one. */
29
+ /** The earliest feed topology load in flight, when there is one (older readers; the first of `feeds`). */
30
30
  feed?: ProcFeedPromptProgress;
31
+ /** Every feed topology load in flight or lately failed, earliest first. */
32
+ feeds?: ProcFeedPromptProgress[];
33
+ /** The roster's own walk in flight: the delta, or the ten-minute full walk. */
34
+ roster?: 'delta' | 'full';
31
35
  /** Feeds the roster gained (created or shared) in the last half minute. */
32
36
  arrived?: number[];
33
37
  }
@@ -52,6 +56,8 @@ export interface ProcFeedPromptProgress {
52
56
  id: number;
53
57
  loaded: number;
54
58
  total: number;
59
+ /** What the walk said when it failed; absent while it runs. */
60
+ failed?: string;
55
61
  }
56
62
  /**
57
63
  * Resolves the prompt state, including compatibility with contexts that only
package/dist/proc.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"proc.js","sourceRoot":"","sources":["../src/proc.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,qEAAqE;AACrE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAU,CAAC;AAkDxE;;;;;;GAMG;AACH,MAAM,UAAU,mBAAmB,CAAC,QAA4B;IAC9D,OAAO,QAAQ,CAAC,KAAK,IAAI,CAAC,QAAQ,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC5E,CAAC"}
1
+ {"version":3,"file":"proc.js","sourceRoot":"","sources":["../src/proc.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,qEAAqE;AACrE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAU,CAAC;AAwDxE;;;;;;GAMG;AACH,MAAM,UAAU,mBAAmB,CAAC,QAA4B;IAC9D,OAAO,QAAQ,CAAC,KAAK,IAAI,CAAC,QAAQ,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC5E,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnndsc/menu",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "The mise wire contract: envelope, session protocol, and result-model schemas that surfaces and the kernel both speak",
5
5
  "repository": {
6
6
  "type": "git",