@almadar/core 10.82.0 → 10.84.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.
@@ -1,10 +1,10 @@
1
- import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-Baldm2vM.js';
2
- export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, di as isValidPatternType } from '../effect-Baldm2vM.js';
1
+ import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, bl as PatternType } from '../effect-DruTSW2O.js';
2
+ export { be as PATTERN_TYPES, bi as PatternConfig, bj as PatternProps, bk as PatternPropsMap, di as isValidPatternType } from '../effect-DruTSW2O.js';
3
3
  import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Fk8bQWef.js';
4
4
  import 'zod';
5
5
 
6
6
  var version$3 = "1.0.0";
7
- var exportedAt$3 = "2026-09-03T18:48:23.816Z";
7
+ var exportedAt$3 = "2026-09-04T03:53:29.561Z";
8
8
  var patterns = {
9
9
  "entity-table": {
10
10
  type: "entity-table",
@@ -16463,7 +16463,7 @@ var patterns = {
16463
16463
  types: [
16464
16464
  "object"
16465
16465
  ],
16466
- description: "GAP-80: line-level error/warning highlights for editable mode. Map of 1-based line number → severity. The overlay paints a colored background on each line: error = red, warning = yellow. Pass undefined (default) to disable. The consumer is responsible for computing the path → line map from the schema + validation results.",
16466
+ description: "GAP-80: line-level error/warning highlights. Map of 1-based line number → severity. Paints a colored background on each line: error = red, warning = yellow. Honored by the editable overlay and (GAP-84) by viewer mode's non-diff highlight; pass undefined (default) to disable. The consumer is responsible for computing the path → line map from the schema + validation results.",
16467
16467
  nonAuthorable: true
16468
16468
  },
16469
16469
  title: {
@@ -16752,6 +16752,265 @@ var patterns = {
16752
16752
  "boolean"
16753
16753
  ],
16754
16754
  description: "Show copy button (viewer alias for showCopyButton)"
16755
+ },
16756
+ editorId: {
16757
+ types: [
16758
+ "string"
16759
+ ],
16760
+ description: "Stable identity for the keyboard router / plugin host to target this editor. Unset = this instance never receives capability events.",
16761
+ tier: "presentation"
16762
+ },
16763
+ onEditorFocus: {
16764
+ types: [
16765
+ "string"
16766
+ ],
16767
+ description: "Declarative bus emit fired when this editor gains focus.",
16768
+ kind: "event-ref",
16769
+ emitPayloadSchema: [
16770
+ {
16771
+ name: "editorId",
16772
+ type: "string",
16773
+ required: true
16774
+ }
16775
+ ],
16776
+ "default": "EDITOR_FOCUS",
16777
+ tier: "presentation"
16778
+ },
16779
+ onEditorBlur: {
16780
+ types: [
16781
+ "string"
16782
+ ],
16783
+ description: "Declarative bus emit fired when this editor loses focus.",
16784
+ kind: "event-ref",
16785
+ emitPayloadSchema: [
16786
+ {
16787
+ name: "editorId",
16788
+ type: "string",
16789
+ required: true
16790
+ }
16791
+ ],
16792
+ "default": "EDITOR_BLUR",
16793
+ tier: "presentation"
16794
+ },
16795
+ onMotion: {
16796
+ types: [
16797
+ "string"
16798
+ ],
16799
+ description: "Declarative bus listen: move the cursor per the vim-style motion vocabulary.",
16800
+ kind: "event-listen",
16801
+ listenPayloadSchema: [
16802
+ {
16803
+ name: "editorId",
16804
+ type: "string",
16805
+ required: true
16806
+ },
16807
+ {
16808
+ name: "motion",
16809
+ type: "string",
16810
+ required: true,
16811
+ enumValues: [
16812
+ "left",
16813
+ "right",
16814
+ "up",
16815
+ "down",
16816
+ "word-forward",
16817
+ "word-back",
16818
+ "word-end",
16819
+ "line-start",
16820
+ "line-end",
16821
+ "first-nonblank",
16822
+ "doc-start",
16823
+ "doc-end",
16824
+ "paragraph-forward",
16825
+ "paragraph-back",
16826
+ "line",
16827
+ "selection"
16828
+ ]
16829
+ },
16830
+ {
16831
+ name: "count",
16832
+ type: "number",
16833
+ required: true
16834
+ }
16835
+ ],
16836
+ "default": "MOTION",
16837
+ tier: "presentation"
16838
+ },
16839
+ onOperate: {
16840
+ types: [
16841
+ "string"
16842
+ ],
16843
+ description: "Declarative bus listen: apply a text operator over a motion's range.",
16844
+ kind: "event-listen",
16845
+ listenPayloadSchema: [
16846
+ {
16847
+ name: "editorId",
16848
+ type: "string",
16849
+ required: true
16850
+ },
16851
+ {
16852
+ name: "operator",
16853
+ type: "string",
16854
+ required: true,
16855
+ enumValues: [
16856
+ "delete",
16857
+ "yank",
16858
+ "change"
16859
+ ]
16860
+ },
16861
+ {
16862
+ name: "motion",
16863
+ type: "string",
16864
+ required: true,
16865
+ enumValues: [
16866
+ "left",
16867
+ "right",
16868
+ "up",
16869
+ "down",
16870
+ "word-forward",
16871
+ "word-back",
16872
+ "word-end",
16873
+ "line-start",
16874
+ "line-end",
16875
+ "first-nonblank",
16876
+ "doc-start",
16877
+ "doc-end",
16878
+ "paragraph-forward",
16879
+ "paragraph-back",
16880
+ "line",
16881
+ "selection"
16882
+ ]
16883
+ },
16884
+ {
16885
+ name: "count",
16886
+ type: "number",
16887
+ required: true
16888
+ }
16889
+ ],
16890
+ "default": "OPERATE",
16891
+ tier: "presentation"
16892
+ },
16893
+ onInsertText: {
16894
+ types: [
16895
+ "string"
16896
+ ],
16897
+ description: "Declarative bus listen: insert literal text at the cursor.",
16898
+ kind: "event-listen",
16899
+ listenPayloadSchema: [
16900
+ {
16901
+ name: "editorId",
16902
+ type: "string",
16903
+ required: true
16904
+ },
16905
+ {
16906
+ name: "text",
16907
+ type: "string",
16908
+ required: true
16909
+ }
16910
+ ],
16911
+ "default": "INSERT_TEXT",
16912
+ tier: "presentation"
16913
+ },
16914
+ onSetMode: {
16915
+ types: [
16916
+ "string"
16917
+ ],
16918
+ description: "Declarative bus listen: switch editor mode and caret style.",
16919
+ kind: "event-listen",
16920
+ listenPayloadSchema: [
16921
+ {
16922
+ name: "editorId",
16923
+ type: "string",
16924
+ required: true
16925
+ },
16926
+ {
16927
+ name: "mode",
16928
+ type: "string",
16929
+ required: true
16930
+ },
16931
+ {
16932
+ name: "caret",
16933
+ type: "string",
16934
+ required: true,
16935
+ enumValues: [
16936
+ "bar",
16937
+ "block",
16938
+ "underline"
16939
+ ]
16940
+ }
16941
+ ],
16942
+ "default": "SET_MODE",
16943
+ tier: "presentation"
16944
+ },
16945
+ motions: {
16946
+ types: [
16947
+ "array"
16948
+ ],
16949
+ description: "Motion vocabulary this editor accepts. Default: the full `EditorMotion` set.",
16950
+ items: {
16951
+ types: [
16952
+ "string"
16953
+ ],
16954
+ enumValues: [
16955
+ "left",
16956
+ "right",
16957
+ "up",
16958
+ "down",
16959
+ "word-forward",
16960
+ "word-back",
16961
+ "word-end",
16962
+ "line-start",
16963
+ "line-end",
16964
+ "first-nonblank",
16965
+ "doc-start",
16966
+ "doc-end",
16967
+ "paragraph-forward",
16968
+ "paragraph-back",
16969
+ "line",
16970
+ "selection"
16971
+ ]
16972
+ },
16973
+ "default": [
16974
+ "left",
16975
+ "right",
16976
+ "up",
16977
+ "down",
16978
+ "word-forward",
16979
+ "word-back",
16980
+ "word-end",
16981
+ "line-start",
16982
+ "line-end",
16983
+ "first-nonblank",
16984
+ "doc-start",
16985
+ "doc-end",
16986
+ "paragraph-forward",
16987
+ "paragraph-back",
16988
+ "line",
16989
+ "selection"
16990
+ ],
16991
+ tier: "presentation"
16992
+ },
16993
+ operators: {
16994
+ types: [
16995
+ "array"
16996
+ ],
16997
+ description: "Operator vocabulary this editor accepts. Default: the full `EditorOperator` set.",
16998
+ items: {
16999
+ types: [
17000
+ "string"
17001
+ ],
17002
+ enumValues: [
17003
+ "delete",
17004
+ "yank",
17005
+ "change"
17006
+ ]
17007
+ },
17008
+ "default": [
17009
+ "delete",
17010
+ "yank",
17011
+ "change"
17012
+ ],
17013
+ tier: "presentation"
16755
17014
  }
16756
17015
  }
16757
17016
  },
@@ -26828,7 +27087,12 @@ var patterns = {
26828
27087
  {
26829
27088
  name: "next",
26830
27089
  type: "string",
26831
- required: true
27090
+ required: true,
27091
+ enumValues: [
27092
+ "up",
27093
+ "down",
27094
+ "none"
27095
+ ]
26832
27096
  }
26833
27097
  ]
26834
27098
  },
@@ -27296,7 +27560,12 @@ var patterns = {
27296
27560
  {
27297
27561
  name: "vote",
27298
27562
  type: "string",
27299
- required: true
27563
+ required: true,
27564
+ enumValues: [
27565
+ "up",
27566
+ "down",
27567
+ "none"
27568
+ ]
27300
27569
  }
27301
27570
  ]
27302
27571
  },
@@ -36378,7 +36647,11 @@ var patterns = {
36378
36647
  {
36379
36648
  name: "direction",
36380
36649
  type: "string",
36381
- required: true
36650
+ required: true,
36651
+ enumValues: [
36652
+ "asc",
36653
+ "desc"
36654
+ ]
36382
36655
  }
36383
36656
  ]
36384
36657
  },
@@ -38344,7 +38617,13 @@ var patterns = {
38344
38617
  {
38345
38618
  name: "direction",
38346
38619
  type: "string",
38347
- required: true
38620
+ required: true,
38621
+ enumValues: [
38622
+ "up",
38623
+ "down",
38624
+ "left",
38625
+ "right"
38626
+ ]
38348
38627
  },
38349
38628
  {
38350
38629
  name: "pressed",
@@ -39375,6 +39654,7 @@ var patterns = {
39375
39654
  "string"
39376
39655
  ],
39377
39656
  enumValues: [
39657
+ "solid",
39378
39658
  "dashed",
39379
39659
  "dotted"
39380
39660
  ]
@@ -40758,6 +41038,7 @@ var patterns = {
40758
41038
  "string"
40759
41039
  ],
40760
41040
  enumValues: [
41041
+ "solid",
40761
41042
  "dashed",
40762
41043
  "dotted"
40763
41044
  ]
@@ -42043,6 +42324,7 @@ var patterns = {
42043
42324
  "string"
42044
42325
  ],
42045
42326
  enumValues: [
42327
+ "solid",
42046
42328
  "dashed",
42047
42329
  "dotted"
42048
42330
  ]
@@ -42515,6 +42797,7 @@ var patterns = {
42515
42797
  "string"
42516
42798
  ],
42517
42799
  enumValues: [
42800
+ "solid",
42518
42801
  "dashed",
42519
42802
  "dotted"
42520
42803
  ]
@@ -42805,6 +43088,7 @@ var patterns = {
42805
43088
  "string"
42806
43089
  ],
42807
43090
  enumValues: [
43091
+ "solid",
42808
43092
  "dashed",
42809
43093
  "dotted"
42810
43094
  ]
@@ -43116,6 +43400,7 @@ var patterns = {
43116
43400
  "string"
43117
43401
  ],
43118
43402
  enumValues: [
43403
+ "solid",
43119
43404
  "dashed",
43120
43405
  "dotted"
43121
43406
  ]
@@ -44665,6 +44950,7 @@ var patterns = {
44665
44950
  "string"
44666
44951
  ],
44667
44952
  enumValues: [
44953
+ "solid",
44668
44954
  "dashed",
44669
44955
  "dotted"
44670
44956
  ]
@@ -45891,6 +46177,7 @@ var patterns = {
45891
46177
  "string"
45892
46178
  ],
45893
46179
  enumValues: [
46180
+ "solid",
45894
46181
  "dashed",
45895
46182
  "dotted"
45896
46183
  ]
@@ -50797,6 +51084,7 @@ var patterns = {
50797
51084
  "string"
50798
51085
  ],
50799
51086
  enumValues: [
51087
+ "solid",
50800
51088
  "dashed",
50801
51089
  "dotted"
50802
51090
  ]
@@ -56185,7 +56473,7 @@ var integratorsRegistry = {
56185
56473
  };
56186
56474
 
56187
56475
  var version$1 = "1.0.0";
56188
- var exportedAt$1 = "2026-09-03T18:48:23.816Z";
56476
+ var exportedAt$1 = "2026-09-04T03:53:29.561Z";
56189
56477
  var mappings = {
56190
56478
  "page-header": {
56191
56479
  component: "PageHeader",
@@ -57627,7 +57915,7 @@ var componentMapping = {
57627
57915
  };
57628
57916
 
57629
57917
  var version = "1.0.0";
57630
- var exportedAt = "2026-09-03T18:48:23.816Z";
57918
+ var exportedAt = "2026-09-04T03:53:29.561Z";
57631
57919
  var contracts = {
57632
57920
  form: {
57633
57921
  emits: [
@@ -58570,6 +58858,20 @@ var contracts = {
58570
58858
  payload: {
58571
58859
  type: "object"
58572
58860
  }
58861
+ },
58862
+ {
58863
+ event: "EDITOR_FOCUS",
58864
+ trigger: "action",
58865
+ payload: {
58866
+ type: "object"
58867
+ }
58868
+ },
58869
+ {
58870
+ event: "EDITOR_BLUR",
58871
+ trigger: "action",
58872
+ payload: {
58873
+ type: "object"
58874
+ }
58573
58875
  }
58574
58876
  ],
58575
58877
  requires: [
@@ -58974,6 +59276,10 @@ interface PatternPayloadField {
58974
59276
  name: string;
58975
59277
  type: string;
58976
59278
  required?: boolean;
59279
+ /** Allowed literal values when the field's TS type is a string-literal
59280
+ * union (directly, or via a type alias) — `type` stays `"string"`.
59281
+ * Mirrors {@link PatternPropTypeSchema.enumValues}. */
59282
+ enumValues?: string[];
58977
59283
  }
58978
59284
  /**
58979
59285
  * One positional parameter of a React callback prop. Validator (L2.2)
@@ -69619,6 +69925,121 @@ declare const registry: {
69619
69925
  types: string[];
69620
69926
  description: string;
69621
69927
  };
69928
+ editorId: {
69929
+ types: string[];
69930
+ description: string;
69931
+ tier: string;
69932
+ };
69933
+ onEditorFocus: {
69934
+ types: string[];
69935
+ description: string;
69936
+ kind: string;
69937
+ emitPayloadSchema: {
69938
+ name: string;
69939
+ type: string;
69940
+ required: boolean;
69941
+ }[];
69942
+ default: string;
69943
+ tier: string;
69944
+ };
69945
+ onEditorBlur: {
69946
+ types: string[];
69947
+ description: string;
69948
+ kind: string;
69949
+ emitPayloadSchema: {
69950
+ name: string;
69951
+ type: string;
69952
+ required: boolean;
69953
+ }[];
69954
+ default: string;
69955
+ tier: string;
69956
+ };
69957
+ onMotion: {
69958
+ types: string[];
69959
+ description: string;
69960
+ kind: string;
69961
+ listenPayloadSchema: ({
69962
+ name: string;
69963
+ type: string;
69964
+ required: boolean;
69965
+ enumValues?: undefined;
69966
+ } | {
69967
+ name: string;
69968
+ type: string;
69969
+ required: boolean;
69970
+ enumValues: string[];
69971
+ })[];
69972
+ default: string;
69973
+ tier: string;
69974
+ };
69975
+ onOperate: {
69976
+ types: string[];
69977
+ description: string;
69978
+ kind: string;
69979
+ listenPayloadSchema: ({
69980
+ name: string;
69981
+ type: string;
69982
+ required: boolean;
69983
+ enumValues?: undefined;
69984
+ } | {
69985
+ name: string;
69986
+ type: string;
69987
+ required: boolean;
69988
+ enumValues: string[];
69989
+ })[];
69990
+ default: string;
69991
+ tier: string;
69992
+ };
69993
+ onInsertText: {
69994
+ types: string[];
69995
+ description: string;
69996
+ kind: string;
69997
+ listenPayloadSchema: {
69998
+ name: string;
69999
+ type: string;
70000
+ required: boolean;
70001
+ }[];
70002
+ default: string;
70003
+ tier: string;
70004
+ };
70005
+ onSetMode: {
70006
+ types: string[];
70007
+ description: string;
70008
+ kind: string;
70009
+ listenPayloadSchema: ({
70010
+ name: string;
70011
+ type: string;
70012
+ required: boolean;
70013
+ enumValues?: undefined;
70014
+ } | {
70015
+ name: string;
70016
+ type: string;
70017
+ required: boolean;
70018
+ enumValues: string[];
70019
+ })[];
70020
+ default: string;
70021
+ tier: string;
70022
+ };
70023
+ motions: {
70024
+ types: string[];
70025
+ description: string;
70026
+ items: {
70027
+ types: string[];
70028
+ enumValues: string[];
70029
+ };
70030
+ default: string[];
70031
+ tier: string;
70032
+ };
70033
+ operators: {
70034
+ types: string[];
70035
+ description: string;
70036
+ items: {
70037
+ types: string[];
70038
+ enumValues: string[];
70039
+ };
70040
+ default: string[];
70041
+ tier: string;
70042
+ };
69622
70043
  };
69623
70044
  };
69624
70045
  "markdown-content": {
@@ -75872,6 +76293,7 @@ declare const registry: {
75872
76293
  name: string;
75873
76294
  type: string;
75874
76295
  required: boolean;
76296
+ enumValues: string[];
75875
76297
  }[];
75876
76298
  };
75877
76299
  disabled: {
@@ -76139,11 +76561,17 @@ declare const registry: {
76139
76561
  types: string[];
76140
76562
  description: string;
76141
76563
  kind: string;
76142
- emitPayloadSchema: {
76564
+ emitPayloadSchema: ({
76143
76565
  name: string;
76144
76566
  type: string;
76145
76567
  required: boolean;
76146
- }[];
76568
+ enumValues?: undefined;
76569
+ } | {
76570
+ name: string;
76571
+ type: string;
76572
+ required: boolean;
76573
+ enumValues: string[];
76574
+ })[];
76147
76575
  };
76148
76576
  replyEvent: {
76149
76577
  types: string[];
@@ -81620,11 +82048,17 @@ declare const registry: {
81620
82048
  types: string[];
81621
82049
  description: string;
81622
82050
  kind: string;
81623
- emitPayloadSchema: {
82051
+ emitPayloadSchema: ({
81624
82052
  name: string;
81625
82053
  type: string;
81626
82054
  required: boolean;
81627
- }[];
82055
+ enumValues?: undefined;
82056
+ } | {
82057
+ name: string;
82058
+ type: string;
82059
+ required: boolean;
82060
+ enumValues: string[];
82061
+ })[];
81628
82062
  };
81629
82063
  sortColumn: {
81630
82064
  types: string[];
@@ -82823,11 +83257,17 @@ declare const registry: {
82823
83257
  types: string[];
82824
83258
  description: string;
82825
83259
  kind: string;
82826
- emitPayloadSchema: {
83260
+ emitPayloadSchema: ({
82827
83261
  name: string;
82828
83262
  type: string;
82829
83263
  required: boolean;
82830
- }[];
83264
+ enumValues: string[];
83265
+ } | {
83266
+ name: string;
83267
+ type: string;
83268
+ required: boolean;
83269
+ enumValues?: undefined;
83270
+ })[];
82831
83271
  };
82832
83272
  directionEvents: {
82833
83273
  types: string[];
@@ -101459,6 +101899,121 @@ declare const PATTERN_REGISTRY: {
101459
101899
  types: string[];
101460
101900
  description: string;
101461
101901
  };
101902
+ editorId: {
101903
+ types: string[];
101904
+ description: string;
101905
+ tier: string;
101906
+ };
101907
+ onEditorFocus: {
101908
+ types: string[];
101909
+ description: string;
101910
+ kind: string;
101911
+ emitPayloadSchema: {
101912
+ name: string;
101913
+ type: string;
101914
+ required: boolean;
101915
+ }[];
101916
+ default: string;
101917
+ tier: string;
101918
+ };
101919
+ onEditorBlur: {
101920
+ types: string[];
101921
+ description: string;
101922
+ kind: string;
101923
+ emitPayloadSchema: {
101924
+ name: string;
101925
+ type: string;
101926
+ required: boolean;
101927
+ }[];
101928
+ default: string;
101929
+ tier: string;
101930
+ };
101931
+ onMotion: {
101932
+ types: string[];
101933
+ description: string;
101934
+ kind: string;
101935
+ listenPayloadSchema: ({
101936
+ name: string;
101937
+ type: string;
101938
+ required: boolean;
101939
+ enumValues?: undefined;
101940
+ } | {
101941
+ name: string;
101942
+ type: string;
101943
+ required: boolean;
101944
+ enumValues: string[];
101945
+ })[];
101946
+ default: string;
101947
+ tier: string;
101948
+ };
101949
+ onOperate: {
101950
+ types: string[];
101951
+ description: string;
101952
+ kind: string;
101953
+ listenPayloadSchema: ({
101954
+ name: string;
101955
+ type: string;
101956
+ required: boolean;
101957
+ enumValues?: undefined;
101958
+ } | {
101959
+ name: string;
101960
+ type: string;
101961
+ required: boolean;
101962
+ enumValues: string[];
101963
+ })[];
101964
+ default: string;
101965
+ tier: string;
101966
+ };
101967
+ onInsertText: {
101968
+ types: string[];
101969
+ description: string;
101970
+ kind: string;
101971
+ listenPayloadSchema: {
101972
+ name: string;
101973
+ type: string;
101974
+ required: boolean;
101975
+ }[];
101976
+ default: string;
101977
+ tier: string;
101978
+ };
101979
+ onSetMode: {
101980
+ types: string[];
101981
+ description: string;
101982
+ kind: string;
101983
+ listenPayloadSchema: ({
101984
+ name: string;
101985
+ type: string;
101986
+ required: boolean;
101987
+ enumValues?: undefined;
101988
+ } | {
101989
+ name: string;
101990
+ type: string;
101991
+ required: boolean;
101992
+ enumValues: string[];
101993
+ })[];
101994
+ default: string;
101995
+ tier: string;
101996
+ };
101997
+ motions: {
101998
+ types: string[];
101999
+ description: string;
102000
+ items: {
102001
+ types: string[];
102002
+ enumValues: string[];
102003
+ };
102004
+ default: string[];
102005
+ tier: string;
102006
+ };
102007
+ operators: {
102008
+ types: string[];
102009
+ description: string;
102010
+ items: {
102011
+ types: string[];
102012
+ enumValues: string[];
102013
+ };
102014
+ default: string[];
102015
+ tier: string;
102016
+ };
101462
102017
  };
101463
102018
  };
101464
102019
  "markdown-content": {
@@ -107712,6 +108267,7 @@ declare const PATTERN_REGISTRY: {
107712
108267
  name: string;
107713
108268
  type: string;
107714
108269
  required: boolean;
108270
+ enumValues: string[];
107715
108271
  }[];
107716
108272
  };
107717
108273
  disabled: {
@@ -107979,11 +108535,17 @@ declare const PATTERN_REGISTRY: {
107979
108535
  types: string[];
107980
108536
  description: string;
107981
108537
  kind: string;
107982
- emitPayloadSchema: {
108538
+ emitPayloadSchema: ({
107983
108539
  name: string;
107984
108540
  type: string;
107985
108541
  required: boolean;
107986
- }[];
108542
+ enumValues?: undefined;
108543
+ } | {
108544
+ name: string;
108545
+ type: string;
108546
+ required: boolean;
108547
+ enumValues: string[];
108548
+ })[];
107987
108549
  };
107988
108550
  replyEvent: {
107989
108551
  types: string[];
@@ -113460,11 +114022,17 @@ declare const PATTERN_REGISTRY: {
113460
114022
  types: string[];
113461
114023
  description: string;
113462
114024
  kind: string;
113463
- emitPayloadSchema: {
114025
+ emitPayloadSchema: ({
113464
114026
  name: string;
113465
114027
  type: string;
113466
114028
  required: boolean;
113467
- }[];
114029
+ enumValues?: undefined;
114030
+ } | {
114031
+ name: string;
114032
+ type: string;
114033
+ required: boolean;
114034
+ enumValues: string[];
114035
+ })[];
113468
114036
  };
113469
114037
  sortColumn: {
113470
114038
  types: string[];
@@ -114663,11 +115231,17 @@ declare const PATTERN_REGISTRY: {
114663
115231
  types: string[];
114664
115232
  description: string;
114665
115233
  kind: string;
114666
- emitPayloadSchema: {
115234
+ emitPayloadSchema: ({
114667
115235
  name: string;
114668
115236
  type: string;
114669
115237
  required: boolean;
114670
- }[];
115238
+ enumValues: string[];
115239
+ } | {
115240
+ name: string;
115241
+ type: string;
115242
+ required: boolean;
115243
+ enumValues?: undefined;
115244
+ })[];
114671
115245
  };
114672
115246
  directionEvents: {
114673
115247
  types: string[];