@fnndsc/menu 0.11.0 → 0.12.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
@@ -728,6 +728,25 @@ export declare const procJobGroupSchema: z.ZodObject<{
728
728
  parent: number | null;
729
729
  errored?: number | undefined;
730
730
  }>;
731
+ /** What a feed's data is: its format, and for DICOM its modality and series description. */
732
+ export declare const procFeedDataSchema: z.ZodObject<{
733
+ format: z.ZodEnum<["dicom", "nifti", "mgz", "jpeg", "png", "other", "unknown"]>;
734
+ modality: z.ZodOptional<z.ZodString>;
735
+ seriesDescription: z.ZodOptional<z.ZodString>;
736
+ /** Why the format is `unknown` or `other`, in words. */
737
+ reason: z.ZodOptional<z.ZodString>;
738
+ }, "strip", z.ZodTypeAny, {
739
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
740
+ modality?: string | undefined;
741
+ seriesDescription?: string | undefined;
742
+ reason?: string | undefined;
743
+ }, {
744
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
745
+ modality?: string | undefined;
746
+ seriesDescription?: string | undefined;
747
+ reason?: string | undefined;
748
+ }>;
749
+ export type ProcFeedData = z.infer<typeof procFeedDataSchema>;
731
750
  export declare const procUniverseFeedSchema: z.ZodObject<{
732
751
  id: z.ZodNumber;
733
752
  /** The feed's name; empty from a daemon that predates it. */
@@ -756,10 +775,35 @@ export declare const procUniverseFeedSchema: z.ZodObject<{
756
775
  parent: number | null;
757
776
  errored?: number | undefined;
758
777
  }>, "many">>;
778
+ /** When the feed was made (ISO 8601): the order a replay reveals the space in; empty from a daemon that predates it. */
779
+ createdAt: z.ZodDefault<z.ZodString>;
780
+ /**
781
+ * What the feed's data is, once the index has read it: the format, and
782
+ * for DICOM the modality and series description; absent until read, and
783
+ * from a daemon that predates it.
784
+ */
785
+ data: z.ZodOptional<z.ZodObject<{
786
+ format: z.ZodEnum<["dicom", "nifti", "mgz", "jpeg", "png", "other", "unknown"]>;
787
+ modality: z.ZodOptional<z.ZodString>;
788
+ seriesDescription: z.ZodOptional<z.ZodString>;
789
+ /** Why the format is `unknown` or `other`, in words. */
790
+ reason: z.ZodOptional<z.ZodString>;
791
+ }, "strip", z.ZodTypeAny, {
792
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
793
+ modality?: string | undefined;
794
+ seriesDescription?: string | undefined;
795
+ reason?: string | undefined;
796
+ }, {
797
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
798
+ modality?: string | undefined;
799
+ seriesDescription?: string | undefined;
800
+ reason?: string | undefined;
801
+ }>>;
759
802
  }, "strip", z.ZodTypeAny, {
760
803
  id: number;
761
804
  status: string;
762
805
  title: string;
806
+ createdAt: string;
763
807
  jobs: number;
764
808
  chain: string[];
765
809
  groups: {
@@ -769,12 +813,19 @@ export declare const procUniverseFeedSchema: z.ZodObject<{
769
813
  errored: number;
770
814
  parent: number | null;
771
815
  }[];
816
+ data?: {
817
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
818
+ modality?: string | undefined;
819
+ seriesDescription?: string | undefined;
820
+ reason?: string | undefined;
821
+ } | undefined;
772
822
  }, {
773
823
  id: number;
774
824
  status: string;
775
825
  jobs: number;
776
826
  chain: string[];
777
827
  title?: string | undefined;
828
+ createdAt?: string | undefined;
778
829
  groups?: {
779
830
  status: string;
780
831
  count: number;
@@ -782,6 +833,12 @@ export declare const procUniverseFeedSchema: z.ZodObject<{
782
833
  parent: number | null;
783
834
  errored?: number | undefined;
784
835
  }[] | undefined;
836
+ data?: {
837
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
838
+ modality?: string | undefined;
839
+ seriesDescription?: string | undefined;
840
+ reason?: string | undefined;
841
+ } | undefined;
785
842
  }>;
786
843
  export declare const procUniverseModelSchema: z.ZodObject<{
787
844
  feeds: z.ZodArray<z.ZodObject<{
@@ -812,10 +869,35 @@ export declare const procUniverseModelSchema: z.ZodObject<{
812
869
  parent: number | null;
813
870
  errored?: number | undefined;
814
871
  }>, "many">>;
872
+ /** When the feed was made (ISO 8601): the order a replay reveals the space in; empty from a daemon that predates it. */
873
+ createdAt: z.ZodDefault<z.ZodString>;
874
+ /**
875
+ * What the feed's data is, once the index has read it: the format, and
876
+ * for DICOM the modality and series description; absent until read, and
877
+ * from a daemon that predates it.
878
+ */
879
+ data: z.ZodOptional<z.ZodObject<{
880
+ format: z.ZodEnum<["dicom", "nifti", "mgz", "jpeg", "png", "other", "unknown"]>;
881
+ modality: z.ZodOptional<z.ZodString>;
882
+ seriesDescription: z.ZodOptional<z.ZodString>;
883
+ /** Why the format is `unknown` or `other`, in words. */
884
+ reason: z.ZodOptional<z.ZodString>;
885
+ }, "strip", z.ZodTypeAny, {
886
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
887
+ modality?: string | undefined;
888
+ seriesDescription?: string | undefined;
889
+ reason?: string | undefined;
890
+ }, {
891
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
892
+ modality?: string | undefined;
893
+ seriesDescription?: string | undefined;
894
+ reason?: string | undefined;
895
+ }>>;
815
896
  }, "strip", z.ZodTypeAny, {
816
897
  id: number;
817
898
  status: string;
818
899
  title: string;
900
+ createdAt: string;
819
901
  jobs: number;
820
902
  chain: string[];
821
903
  groups: {
@@ -825,12 +907,19 @@ export declare const procUniverseModelSchema: z.ZodObject<{
825
907
  errored: number;
826
908
  parent: number | null;
827
909
  }[];
910
+ data?: {
911
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
912
+ modality?: string | undefined;
913
+ seriesDescription?: string | undefined;
914
+ reason?: string | undefined;
915
+ } | undefined;
828
916
  }, {
829
917
  id: number;
830
918
  status: string;
831
919
  jobs: number;
832
920
  chain: string[];
833
921
  title?: string | undefined;
922
+ createdAt?: string | undefined;
834
923
  groups?: {
835
924
  status: string;
836
925
  count: number;
@@ -838,6 +927,12 @@ export declare const procUniverseModelSchema: z.ZodObject<{
838
927
  parent: number | null;
839
928
  errored?: number | undefined;
840
929
  }[] | undefined;
930
+ data?: {
931
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
932
+ modality?: string | undefined;
933
+ seriesDescription?: string | undefined;
934
+ reason?: string | undefined;
935
+ } | undefined;
841
936
  }>, "many">;
842
937
  /** Whether the index is whole; false while it still warms. */
843
938
  whole: z.ZodBoolean;
@@ -846,6 +941,7 @@ export declare const procUniverseModelSchema: z.ZodObject<{
846
941
  id: number;
847
942
  status: string;
848
943
  title: string;
944
+ createdAt: string;
849
945
  jobs: number;
850
946
  chain: string[];
851
947
  groups: {
@@ -855,6 +951,12 @@ export declare const procUniverseModelSchema: z.ZodObject<{
855
951
  errored: number;
856
952
  parent: number | null;
857
953
  }[];
954
+ data?: {
955
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
956
+ modality?: string | undefined;
957
+ seriesDescription?: string | undefined;
958
+ reason?: string | undefined;
959
+ } | undefined;
858
960
  }[];
859
961
  whole: boolean;
860
962
  }, {
@@ -864,6 +966,7 @@ export declare const procUniverseModelSchema: z.ZodObject<{
864
966
  jobs: number;
865
967
  chain: string[];
866
968
  title?: string | undefined;
969
+ createdAt?: string | undefined;
867
970
  groups?: {
868
971
  status: string;
869
972
  count: number;
@@ -871,6 +974,12 @@ export declare const procUniverseModelSchema: z.ZodObject<{
871
974
  parent: number | null;
872
975
  errored?: number | undefined;
873
976
  }[] | undefined;
977
+ data?: {
978
+ format: "unknown" | "other" | "dicom" | "nifti" | "mgz" | "jpeg" | "png";
979
+ modality?: string | undefined;
980
+ seriesDescription?: string | undefined;
981
+ reason?: string | undefined;
982
+ } | undefined;
874
983
  }[];
875
984
  whole: boolean;
876
985
  }>;
@@ -878,3 +987,26 @@ export type ProcJobGroup = z.infer<typeof procJobGroupSchema>;
878
987
  export type ProcUniverseFeed = z.infer<typeof procUniverseFeedSchema>;
879
988
  export type ProcUniverseModel = z.infer<typeof procUniverseModelSchema>;
880
989
  export declare const PROC_UNIVERSE_MODEL_KIND: "proc.universe";
990
+ /**
991
+ * Where a surface last laid the universe out under one layout, as the
992
+ * session keeps it: a surface that finds it draws at once, and settles only
993
+ * what is new since.
994
+ */
995
+ export declare const procLayoutModelSchema: z.ZodObject<{
996
+ /** The layout: `galaxy`, `spokes`, `constellations`, ... */
997
+ name: z.ZodString;
998
+ /** Every node's place by the surface's node id; null when none is kept. */
999
+ positions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>>;
1000
+ /** When it was kept (ISO 8601); null when none is. */
1001
+ writtenAt: z.ZodNullable<z.ZodString>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ name: string;
1004
+ positions: Record<string, [number, number, number]> | null;
1005
+ writtenAt: string | null;
1006
+ }, {
1007
+ name: string;
1008
+ positions: Record<string, [number, number, number]> | null;
1009
+ writtenAt: string | null;
1010
+ }>;
1011
+ export type ProcLayoutModel = z.infer<typeof procLayoutModelSchema>;
1012
+ export declare const PROC_LAYOUT_MODEL_KIND: "proc.layout";
package/dist/dag.js CHANGED
@@ -177,6 +177,14 @@ export const procJobGroupSchema = z.object({
177
177
  status: z.string(),
178
178
  parent: z.number().nullable(),
179
179
  });
180
+ /** What a feed's data is: its format, and for DICOM its modality and series description. */
181
+ export const procFeedDataSchema = z.object({
182
+ format: z.enum(['dicom', 'nifti', 'mgz', 'jpeg', 'png', 'other', 'unknown']),
183
+ modality: z.string().optional(),
184
+ seriesDescription: z.string().optional(),
185
+ /** Why the format is `unknown` or `other`, in words. */
186
+ reason: z.string().optional(),
187
+ });
180
188
  export const procUniverseFeedSchema = z.object({
181
189
  id: z.number(),
182
190
  /** The feed's name; empty from a daemon that predates it. */
@@ -186,6 +194,14 @@ export const procUniverseFeedSchema = z.object({
186
194
  chain: z.array(z.string()),
187
195
  /** The feed's jobs collapsed by plugin per place in the pipeline: its shape, with counts. */
188
196
  groups: z.array(procJobGroupSchema).default([]),
197
+ /** When the feed was made (ISO 8601): the order a replay reveals the space in; empty from a daemon that predates it. */
198
+ createdAt: z.string().default(''),
199
+ /**
200
+ * What the feed's data is, once the index has read it: the format, and
201
+ * for DICOM the modality and series description; absent until read, and
202
+ * from a daemon that predates it.
203
+ */
204
+ data: procFeedDataSchema.optional(),
189
205
  });
190
206
  export const procUniverseModelSchema = z.object({
191
207
  feeds: z.array(procUniverseFeedSchema),
@@ -193,4 +209,18 @@ export const procUniverseModelSchema = z.object({
193
209
  whole: z.boolean(),
194
210
  });
195
211
  export const PROC_UNIVERSE_MODEL_KIND = 'proc.universe';
212
+ /**
213
+ * Where a surface last laid the universe out under one layout, as the
214
+ * session keeps it: a surface that finds it draws at once, and settles only
215
+ * what is new since.
216
+ */
217
+ export const procLayoutModelSchema = z.object({
218
+ /** The layout: `galaxy`, `spokes`, `constellations`, ... */
219
+ name: z.string(),
220
+ /** Every node's place by the surface's node id; null when none is kept. */
221
+ positions: z.record(z.string(), z.tuple([z.number(), z.number(), z.number()])).nullable(),
222
+ /** When it was kept (ISO 8601); null when none is. */
223
+ writtenAt: z.string().nullable(),
224
+ });
225
+ export const PROC_LAYOUT_MODEL_KIND = 'proc.layout';
196
226
  //# sourceMappingURL=dag.js.map
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;IAChC;;;;OAIG;IACH,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,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;AAEzD;;;;GAIG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,iFAAiF;IACjF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AACH,4FAA4F;AAC5F,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;IAC5E,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,wDAAwD;IACxD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,6DAA6D;IAC7D,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IAC7B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC1B,6FAA6F;IAC7F,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;IAC/C,wHAAwH;IACxH,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IACjC;;;;OAIG;IACH,IAAI,EAAE,kBAAkB,CAAC,QAAQ,EAAE;CACpC,CAAC,CAAC;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC;IACtC,8DAA8D;IAC9D,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE;CACnB,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,wBAAwB,GAAG,eAAwB,CAAC;AAEjE;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,4DAA4D;IAC5D,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,2EAA2E;IAC3E,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACzF,sDAAsD;IACtD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAsB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -16,7 +16,7 @@ export { commandEnvelopeSchema, envelopeModelSchema, envelopeStatusSchema, stack
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, type LaneTelemetry, type CubeTelemetry, type JobsStateTelemetry, regardSchema, regardMessageSchema, watchMessageSchema, unwatchMessageSchema, WATCH_STATES, watchStateSchema, watchedMessageSchema, numberedMessageSchema, SERVER_MESSAGE_TYPES, type WatchState, type WatchedMessage, type NumberedMessage, 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
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
- export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, type FeedListEntry, type FeedListModel, procJobGroupSchema, procUniverseFeedSchema, procUniverseModelSchema, PROC_UNIVERSE_MODEL_KIND, type ProcJobGroup, type ProcUniverseFeed, type ProcUniverseModel, } from './dag.js';
19
+ export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, type FeedListEntry, type FeedListModel, procJobGroupSchema, procUniverseFeedSchema, procFeedDataSchema, procUniverseModelSchema, PROC_UNIVERSE_MODEL_KIND, procLayoutModelSchema, PROC_LAYOUT_MODEL_KIND, type ProcLayoutModel, type ProcJobGroup, type ProcUniverseFeed, type ProcFeedData, type ProcUniverseModel, } 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, patientAddress_of, type PacsSeries, type PacsStudy, type PacsProvenance, type PacsPatient, type PacsPatientStatus, type PacsQueryModel, type PacsServer, type PacsServersModel, } from './pacs.js';
22
22
  export { DICOM_TAG_GROUPS, dicomTagGroupSchema, dicomTagSchema, dicomVaryingTagSchema, dicomTagsModelSchema, dicomGeometrySchema, dicomSeriesModelSchema, imageViewModelSchema, DICOM_MODEL_KINDS, IMAGE_MODEL_KINDS, type DicomTag, type DicomTagGroup, type DicomVaryingTag, type DicomTagsModel, type DicomGeometry, type DicomSeriesModel, type ImageViewModel, } from './dicom.js';
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ export { commandEnvelopeSchema, envelopeModelSchema, envelopeStatusSchema, stack
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, numberedMessageSchema, SERVER_MESSAGE_TYPES, } from './messages.js';
17
17
  export { clientMessage_parse, serverMessage_parse, clientMessage_fromJson, attach_parse, } from './validate.js';
18
18
  export { dagNodeCoreSchema, dagArgumentSchema, pipelineDiagramNodeSchema, pipelineDiagramModelSchema, DAG_NODE_STATUSES, dagNodeStatusSchema, dagNodeMetricsSchema, feedDagNodeSchema, feedDagModelSchema, feedIndexingModelSchema, DAG_MODEL_KINDS, } from './dag.js';
19
- export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, procJobGroupSchema, procUniverseFeedSchema, procUniverseModelSchema, PROC_UNIVERSE_MODEL_KIND, } from './dag.js';
19
+ export { feedListEntrySchema, feedListModelSchema, FEED_LIST_MODEL_KIND, procJobGroupSchema, procUniverseFeedSchema, procFeedDataSchema, procUniverseModelSchema, PROC_UNIVERSE_MODEL_KIND, procLayoutModelSchema, PROC_LAYOUT_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, patientAddress_of, } from './pacs.js';
22
22
  export { DICOM_TAG_GROUPS, dicomTagGroupSchema, dicomTagSchema, dicomVaryingTagSchema, dicomTagsModelSchema, dicomGeometrySchema, dicomSeriesModelSchema, imageViewModelSchema, DICOM_MODEL_KINDS, IMAGE_MODEL_KINDS, } from './dicom.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,GAMpB,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,qBAAqB,EACrB,oBAAoB,GAgBrB,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,EAGpB,kBAAkB,EAClB,sBAAsB,EACtB,uBAAuB,EACvB,wBAAwB,GAIzB,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,EACvB,iBAAiB,GASlB,MAAM,WAAW,CAAC;AACnB,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,GAQlB,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,uBAAuB,EACvB,eAAe,EACf,iBAAiB,GAGlB,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,OAAO,EACL,kBAAkB,EAClB,mBAAmB,GAMpB,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,qBAAqB,EACrB,oBAAoB,GAgBrB,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,EAGpB,kBAAkB,EAClB,sBAAsB,EACtB,kBAAkB,EAClB,uBAAuB,EACvB,wBAAwB,EACxB,qBAAqB,EACrB,sBAAsB,GAMvB,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,EACvB,iBAAiB,GASlB,MAAM,WAAW,CAAC;AACnB,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,qBAAqB,EACrB,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,GAQlB,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,uBAAuB,EACvB,eAAe,EACf,iBAAiB,GAGlB,MAAM,WAAW,CAAC"}
@@ -175,12 +175,12 @@ export declare const promptErrorMessageSchema: z.ZodObject<{
175
175
  reason: z.ZodString;
176
176
  }, "strip", z.ZodTypeAny, {
177
177
  type: "promptError";
178
- promptId: string;
179
178
  reason: string;
179
+ promptId: string;
180
180
  }, {
181
181
  type: "promptError";
182
- promptId: string;
183
182
  reason: string;
183
+ promptId: string;
184
184
  }>;
185
185
  /** Returns the output of a pipeline segment the daemon asked the surface to run, correlated by `pipeId`. */
186
186
  export declare const pipeResultMessageSchema: z.ZodObject<{
@@ -624,12 +624,12 @@ export declare const clientMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
624
624
  reason: z.ZodString;
625
625
  }, "strip", z.ZodTypeAny, {
626
626
  type: "promptError";
627
- promptId: string;
628
627
  reason: string;
628
+ promptId: string;
629
629
  }, {
630
630
  type: "promptError";
631
- promptId: string;
632
631
  reason: string;
632
+ promptId: string;
633
633
  }>, z.ZodObject<{
634
634
  type: z.ZodLiteral<"pipeResult">;
635
635
  pipeId: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnndsc/menu",
3
- "version": "0.11.0",
3
+ "version": "0.12.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",