@fnndsc/menu 0.3.1 → 0.5.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 +58 -0
- package/dist/dag.js +24 -0
- package/dist/dag.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/messages.d.ts +360 -42
- package/dist/messages.js +66 -0
- package/dist/messages.js.map +1 -1
- package/dist/pacs.d.ts +381 -12
- package/dist/pacs.js +135 -0
- package/dist/pacs.js.map +1 -1
- package/dist/plugin.d.ts +142 -0
- package/dist/plugin.js +67 -0
- package/dist/plugin.js.map +1 -0
- package/dist/proc.d.ts +7 -1
- package/dist/proc.js.map +1 -1
- package/package.json +1 -1
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<{
|
|
@@ -552,6 +576,17 @@ export declare const feedListEntrySchema: z.ZodObject<{
|
|
|
552
576
|
sizeBytes: z.ZodOptional<z.ZodNumber>;
|
|
553
577
|
/** Wall span in seconds, first node start to last node end (or now, while running); absent until resident. */
|
|
554
578
|
wallSeconds: z.ZodOptional<z.ZodNumber>;
|
|
579
|
+
/**
|
|
580
|
+
* How much of the feed's work has settled, from CUBE's own job counters.
|
|
581
|
+
*
|
|
582
|
+
* Present whenever the feed row is, since the counters come with it —
|
|
583
|
+
* unlike the totals above, which need resident topology. A feed with no
|
|
584
|
+
* jobs at all reports zero of zero, which a surface shows as a track
|
|
585
|
+
* with nothing in it rather than as no track: nothing has happened yet
|
|
586
|
+
* is a different statement from there is no such thing.
|
|
587
|
+
*/
|
|
588
|
+
jobsDone: z.ZodOptional<z.ZodNumber>;
|
|
589
|
+
jobsTotal: z.ZodOptional<z.ZodNumber>;
|
|
555
590
|
}, "strip", z.ZodTypeAny, {
|
|
556
591
|
id: number;
|
|
557
592
|
status: string;
|
|
@@ -560,6 +595,8 @@ export declare const feedListEntrySchema: z.ZodObject<{
|
|
|
560
595
|
createdAt: string;
|
|
561
596
|
sizeBytes?: number | undefined;
|
|
562
597
|
wallSeconds?: number | undefined;
|
|
598
|
+
jobsDone?: number | undefined;
|
|
599
|
+
jobsTotal?: number | undefined;
|
|
563
600
|
}, {
|
|
564
601
|
id: number;
|
|
565
602
|
status: string;
|
|
@@ -568,6 +605,8 @@ export declare const feedListEntrySchema: z.ZodObject<{
|
|
|
568
605
|
createdAt: string;
|
|
569
606
|
sizeBytes?: number | undefined;
|
|
570
607
|
wallSeconds?: number | undefined;
|
|
608
|
+
jobsDone?: number | undefined;
|
|
609
|
+
jobsTotal?: number | undefined;
|
|
571
610
|
}>;
|
|
572
611
|
/**
|
|
573
612
|
* The `feed.list` model: the cache-resident feed roster — id, title, and
|
|
@@ -585,6 +624,17 @@ export declare const feedListModelSchema: z.ZodObject<{
|
|
|
585
624
|
sizeBytes: z.ZodOptional<z.ZodNumber>;
|
|
586
625
|
/** Wall span in seconds, first node start to last node end (or now, while running); absent until resident. */
|
|
587
626
|
wallSeconds: z.ZodOptional<z.ZodNumber>;
|
|
627
|
+
/**
|
|
628
|
+
* How much of the feed's work has settled, from CUBE's own job counters.
|
|
629
|
+
*
|
|
630
|
+
* Present whenever the feed row is, since the counters come with it —
|
|
631
|
+
* unlike the totals above, which need resident topology. A feed with no
|
|
632
|
+
* jobs at all reports zero of zero, which a surface shows as a track
|
|
633
|
+
* with nothing in it rather than as no track: nothing has happened yet
|
|
634
|
+
* is a different statement from there is no such thing.
|
|
635
|
+
*/
|
|
636
|
+
jobsDone: z.ZodOptional<z.ZodNumber>;
|
|
637
|
+
jobsTotal: z.ZodOptional<z.ZodNumber>;
|
|
588
638
|
}, "strip", z.ZodTypeAny, {
|
|
589
639
|
id: number;
|
|
590
640
|
status: string;
|
|
@@ -593,6 +643,8 @@ export declare const feedListModelSchema: z.ZodObject<{
|
|
|
593
643
|
createdAt: string;
|
|
594
644
|
sizeBytes?: number | undefined;
|
|
595
645
|
wallSeconds?: number | undefined;
|
|
646
|
+
jobsDone?: number | undefined;
|
|
647
|
+
jobsTotal?: number | undefined;
|
|
596
648
|
}, {
|
|
597
649
|
id: number;
|
|
598
650
|
status: string;
|
|
@@ -601,6 +653,8 @@ export declare const feedListModelSchema: z.ZodObject<{
|
|
|
601
653
|
createdAt: string;
|
|
602
654
|
sizeBytes?: number | undefined;
|
|
603
655
|
wallSeconds?: number | undefined;
|
|
656
|
+
jobsDone?: number | undefined;
|
|
657
|
+
jobsTotal?: number | undefined;
|
|
604
658
|
}>, "many">;
|
|
605
659
|
}, "strip", z.ZodTypeAny, {
|
|
606
660
|
feeds: {
|
|
@@ -611,6 +665,8 @@ export declare const feedListModelSchema: z.ZodObject<{
|
|
|
611
665
|
createdAt: string;
|
|
612
666
|
sizeBytes?: number | undefined;
|
|
613
667
|
wallSeconds?: number | undefined;
|
|
668
|
+
jobsDone?: number | undefined;
|
|
669
|
+
jobsTotal?: number | undefined;
|
|
614
670
|
}[];
|
|
615
671
|
}, {
|
|
616
672
|
feeds: {
|
|
@@ -621,6 +677,8 @@ export declare const feedListModelSchema: z.ZodObject<{
|
|
|
621
677
|
createdAt: string;
|
|
622
678
|
sizeBytes?: number | undefined;
|
|
623
679
|
wallSeconds?: number | undefined;
|
|
680
|
+
jobsDone?: number | undefined;
|
|
681
|
+
jobsTotal?: number | undefined;
|
|
624
682
|
}[];
|
|
625
683
|
}>;
|
|
626
684
|
export type FeedListEntry = z.infer<typeof feedListEntrySchema>;
|
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({
|
|
@@ -123,6 +136,17 @@ export const feedListEntrySchema = z.object({
|
|
|
123
136
|
sizeBytes: z.number().optional(),
|
|
124
137
|
/** Wall span in seconds, first node start to last node end (or now, while running); absent until resident. */
|
|
125
138
|
wallSeconds: z.number().optional(),
|
|
139
|
+
/**
|
|
140
|
+
* How much of the feed's work has settled, from CUBE's own job counters.
|
|
141
|
+
*
|
|
142
|
+
* Present whenever the feed row is, since the counters come with it —
|
|
143
|
+
* unlike the totals above, which need resident topology. A feed with no
|
|
144
|
+
* jobs at all reports zero of zero, which a surface shows as a track
|
|
145
|
+
* with nothing in it rather than as no track: nothing has happened yet
|
|
146
|
+
* is a different statement from there is no such thing.
|
|
147
|
+
*/
|
|
148
|
+
jobsDone: z.number().optional(),
|
|
149
|
+
jobsTotal: z.number().optional(),
|
|
126
150
|
});
|
|
127
151
|
/**
|
|
128
152
|
* The `feed.list` model: the cache-resident feed roster — id, title, and
|
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":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC9B,aAAa,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACnC,CAAC,CAAC;AAEH,gEAAgE;AAChE,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE;CACnB,CAAC,CAAC;AAEH,2DAA2D;AAC3D,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC,MAAM,CAAC;IAChE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,QAAQ,EAAE;CACjD,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC;CAC1C,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,SAAS;IACT,SAAS;IACT,WAAW;IACX,SAAS;IACT,kBAAkB;IAClB,sBAAsB;IACtB,mBAAmB;IACnB,WAAW;IACX,SAAS;CACD,CAAC;AAEX,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;AAE9E;;;;GAIG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;CACzF,CAAC,CAAC;AAIH,4DAA4D;AAC5D,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH;;;;GAIG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,iBAAiB,CAAC,MAAM,CAAC;IACxD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,MAAM,EAAE,mBAAmB;IAC3B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,OAAO,EAAE,oBAAoB,CAAC,QAAQ,EAAE;IACxC,KAAK,EAAE,kBAAkB,CAAC,QAAQ,EAAE;IACpC,uFAAuF;IACvF,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAEH;;;;GAIG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;CAClC,CAAC,CAAC;AAEH;;;;;GAKG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAWH,wDAAwD;AACxD,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,eAAe,EAAE,kBAAkB;IACnC,OAAO,EAAE,UAAU;IACnB,YAAY,EAAE,eAAe;CACrB,CAAC;AAEX,mEAAmE;AACnE,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,yFAAyF;IACzF,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,8GAA8G;IAC9G,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC;;;;;;;;OAQG;IACH,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH;;;;GAIG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC;CACpC,CAAC,CAAC;AAKH,yCAAyC;AACzC,MAAM,CAAC,MAAM,oBAAoB,GAAG,WAAoB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -13,8 +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, 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 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, 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
|
-
export {
|
|
20
|
+
export { pluginParameterSchema, pluginInfoModelSchema, PLUGIN_INFO_MODEL_KIND, type PluginParameter, type PluginInfoModel, } from './plugin.js';
|
|
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
|
@@ -13,9 +13,10 @@ export { PROC_PROMPT_STATES, procPromptState_get, } from './proc.js';
|
|
|
13
13
|
export { PROGRESS_OPERATIONS, PROGRESS_KINDS, PROGRESS_PHASES, PROGRESS_UNITS, PROGRESS_STATUSES, } from './progress.js';
|
|
14
14
|
export { CONTRACT_VERSION, version_isCompatible } from './version.js';
|
|
15
15
|
export { commandEnvelopeSchema, envelopeModelSchema, envelopeStatusSchema, stackMessageSchema, resolutionTraceSchema, } 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, promptContextSchema, promptLineMessageSchema, pipeMessageSchema, shellMessageSchema, editMessageSchema, deliverMessageSchema, serverMessageSchema, telemetryMessageSchema, regardSchema, regardMessageSchema, watchMessageSchema, unwatchMessageSchema, WATCH_STATES, watchStateSchema, watchedMessageSchema, SERVER_MESSAGE_TYPES, } 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, 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
|
-
export {
|
|
20
|
+
export { pluginParameterSchema, pluginInfoModelSchema, PLUGIN_INFO_MODEL_KIND, } from './plugin.js';
|
|
21
|
+
export { pacsProvenanceSchema, pacsPatientSchema, pacsPatientStatusSchema, PACS_PATIENT_STATUSES, pacsSeriesSchema, pacsStudySchema, pacsQueryModelSchema, pacsServerSchema, pacsServersModelSchema, PACS_QUERY_MODEL_KIND, PACS_SERVERS_MODEL_KIND, } from './pacs.js';
|
|
21
22
|
//# sourceMappingURL=index.js.map
|
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,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,
|
|
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,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"}
|