@almadar/patterns 1.1.0 → 1.1.1

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  var version$3 = "1.0.0";
2
- var exportedAt$3 = "2026-02-10T15:35:56.769Z";
2
+ var exportedAt$3 = "2026-02-12T06:50:46.522Z";
3
3
  var patterns = {
4
4
  "entity-table": {
5
5
  type: "entity-table",
@@ -1348,6 +1348,12 @@ var patterns = {
1348
1348
  "string"
1349
1349
  ],
1350
1350
  description: "Additional CSS classes"
1351
+ },
1352
+ stepClickEvent: {
1353
+ types: [
1354
+ "string"
1355
+ ],
1356
+ description: "Declarative step click event — emits UI:{stepClickEvent} with { stepIndex }"
1351
1357
  }
1352
1358
  }
1353
1359
  },
@@ -1620,6 +1626,18 @@ var patterns = {
1620
1626
  "string"
1621
1627
  ],
1622
1628
  description: "Additional CSS classes"
1629
+ },
1630
+ pageChangeEvent: {
1631
+ types: [
1632
+ "string"
1633
+ ],
1634
+ description: "Declarative page change event — emits UI:{pageChangeEvent} with { page }"
1635
+ },
1636
+ pageSizeChangeEvent: {
1637
+ types: [
1638
+ "string"
1639
+ ],
1640
+ description: "Declarative page size change event — emits UI:{pageSizeChangeEvent} with { pageSize }"
1623
1641
  }
1624
1642
  }
1625
1643
  },
@@ -1687,6 +1705,12 @@ var patterns = {
1687
1705
  "string"
1688
1706
  ],
1689
1707
  description: "Variant for color styling"
1708
+ },
1709
+ actionEvent: {
1710
+ types: [
1711
+ "string"
1712
+ ],
1713
+ description: "Declarative action event — emits UI:{actionEvent} via eventBus when action button is clicked"
1690
1714
  }
1691
1715
  }
1692
1716
  },
@@ -1758,6 +1782,12 @@ var patterns = {
1758
1782
  "string"
1759
1783
  ],
1760
1784
  description: "className prop"
1785
+ },
1786
+ retryEvent: {
1787
+ types: [
1788
+ "string"
1789
+ ],
1790
+ description: "Declarative retry event — emits UI:{retryEvent} via eventBus when retry button is clicked"
1761
1791
  }
1762
1792
  }
1763
1793
  },
@@ -1833,6 +1863,18 @@ var patterns = {
1833
1863
  "string"
1834
1864
  ],
1835
1865
  description: "Additional CSS classes"
1866
+ },
1867
+ dismissEvent: {
1868
+ types: [
1869
+ "string"
1870
+ ],
1871
+ description: "Declarative dismiss event — emits UI:{dismissEvent} via eventBus when toast is dismissed"
1872
+ },
1873
+ actionEvent: {
1874
+ types: [
1875
+ "string"
1876
+ ],
1877
+ description: "Declarative action event — emits UI:{actionEvent} via eventBus when action button is clicked"
1836
1878
  }
1837
1879
  }
1838
1880
  },
@@ -2073,6 +2115,12 @@ var patterns = {
2073
2115
  "string"
2074
2116
  ],
2075
2117
  description: "className prop"
2118
+ },
2119
+ closeEvent: {
2120
+ types: [
2121
+ "string"
2122
+ ],
2123
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when modal should close"
2076
2124
  }
2077
2125
  }
2078
2126
  },
@@ -2153,6 +2201,12 @@ var patterns = {
2153
2201
  "string"
2154
2202
  ],
2155
2203
  description: "Additional class name"
2204
+ },
2205
+ closeEvent: {
2206
+ types: [
2207
+ "string"
2208
+ ],
2209
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when drawer should close"
2156
2210
  }
2157
2211
  }
2158
2212
  },
@@ -2425,6 +2479,24 @@ var patterns = {
2425
2479
  "react.elementtype"
2426
2480
  ],
2427
2481
  description: "HTML element to render as"
2482
+ },
2483
+ action: {
2484
+ types: [
2485
+ "string"
2486
+ ],
2487
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
2488
+ },
2489
+ actionPayload: {
2490
+ types: [
2491
+ "object"
2492
+ ],
2493
+ description: "Payload to include with the action event"
2494
+ },
2495
+ hoverEvent: {
2496
+ types: [
2497
+ "string"
2498
+ ],
2499
+ description: "Declarative hover event — emits UI:{hoverEvent} with { hovered: true/false } on mouseEnter/mouseLeave"
2428
2500
  }
2429
2501
  }
2430
2502
  },
@@ -2905,8 +2977,7 @@ var patterns = {
2905
2977
  types: [
2906
2978
  "function"
2907
2979
  ],
2908
- description: "Called when a slot is selected",
2909
- required: true
2980
+ description: "Called when a slot is selected"
2910
2981
  },
2911
2982
  onUseItem: {
2912
2983
  types: [
@@ -2920,6 +2991,24 @@ var patterns = {
2920
2991
  ],
2921
2992
  description: "Called when an item is dropped"
2922
2993
  },
2994
+ selectSlotEvent: {
2995
+ types: [
2996
+ "string"
2997
+ ],
2998
+ description: "Declarative event: emits UI:{selectSlotEvent} with { index } when a slot is selected"
2999
+ },
3000
+ useItemEvent: {
3001
+ types: [
3002
+ "string"
3003
+ ],
3004
+ description: "Declarative event: emits UI:{useItemEvent} with { item } when an item is used"
3005
+ },
3006
+ dropItemEvent: {
3007
+ types: [
3008
+ "string"
3009
+ ],
3010
+ description: "Declarative event: emits UI:{dropItemEvent} with { item } when an item is dropped"
3011
+ },
2923
3012
  showTooltips: {
2924
3013
  types: [
2925
3014
  "boolean"
@@ -2988,6 +3077,24 @@ var patterns = {
2988
3077
  ],
2989
3078
  description: "Called when dialogue is advanced (no choices)"
2990
3079
  },
3080
+ completeEvent: {
3081
+ types: [
3082
+ "string"
3083
+ ],
3084
+ description: "Declarative event: emits UI:{completeEvent} when text animation completes"
3085
+ },
3086
+ choiceEvent: {
3087
+ types: [
3088
+ "string"
3089
+ ],
3090
+ description: "Declarative event: emits UI:{choiceEvent} with { choice } when a choice is selected"
3091
+ },
3092
+ advanceEvent: {
3093
+ types: [
3094
+ "string"
3095
+ ],
3096
+ description: "Declarative event: emits UI:{advanceEvent} when dialogue is advanced"
3097
+ },
2991
3098
  className: {
2992
3099
  types: [
2993
3100
  "string"
@@ -3079,6 +3186,24 @@ var patterns = {
3079
3186
  "icon"
3080
3187
  ],
3081
3188
  description: "Right icon as Lucide icon component (convenience prop)"
3189
+ },
3190
+ action: {
3191
+ types: [
3192
+ "string"
3193
+ ],
3194
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
3195
+ },
3196
+ actionPayload: {
3197
+ types: [
3198
+ "object"
3199
+ ],
3200
+ description: "Payload to include with the action event"
3201
+ },
3202
+ label: {
3203
+ types: [
3204
+ "string"
3205
+ ],
3206
+ description: "Button label text (alternative to children for schema-driven rendering)"
3082
3207
  }
3083
3208
  }
3084
3209
  },
@@ -3178,6 +3303,18 @@ var patterns = {
3178
3303
  "function"
3179
3304
  ],
3180
3305
  description: "Click handler"
3306
+ },
3307
+ action: {
3308
+ types: [
3309
+ "string"
3310
+ ],
3311
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
3312
+ },
3313
+ actionPayload: {
3314
+ types: [
3315
+ "object"
3316
+ ],
3317
+ description: "Payload to include with the action event"
3181
3318
  }
3182
3319
  }
3183
3320
  },
@@ -3294,6 +3431,12 @@ var patterns = {
3294
3431
  "string"
3295
3432
  ],
3296
3433
  description: "Additional CSS classes"
3434
+ },
3435
+ action: {
3436
+ types: [
3437
+ "string"
3438
+ ],
3439
+ description: "Declarative event name — emits UI:{action} via eventBus on card click"
3297
3440
  }
3298
3441
  }
3299
3442
  },
@@ -3718,6 +3861,12 @@ var patterns = {
3718
3861
  "string"
3719
3862
  ],
3720
3863
  description: "className prop"
3864
+ },
3865
+ dismissEvent: {
3866
+ types: [
3867
+ "string"
3868
+ ],
3869
+ description: "Declarative dismiss event — emits UI:{dismissEvent} via eventBus when alert is dismissed"
3721
3870
  }
3722
3871
  }
3723
3872
  },
@@ -3921,6 +4070,12 @@ var patterns = {
3921
4070
  "string"
3922
4071
  ],
3923
4072
  description: "Additional CSS classes"
4073
+ },
4074
+ toggleEvent: {
4075
+ types: [
4076
+ "string"
4077
+ ],
4078
+ description: "Declarative toggle event — emits UI:{toggleEvent} with { itemId, isOpen }"
3924
4079
  }
3925
4080
  }
3926
4081
  },
@@ -4265,6 +4420,12 @@ var patterns = {
4265
4420
  "boolean"
4266
4421
  ],
4267
4422
  description: "blur prop"
4423
+ },
4424
+ action: {
4425
+ types: [
4426
+ "string"
4427
+ ],
4428
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
4268
4429
  }
4269
4430
  }
4270
4431
  },
@@ -4366,6 +4527,18 @@ var patterns = {
4366
4527
  "number"
4367
4528
  ],
4368
4529
  description: "Tab index for focus management"
4530
+ },
4531
+ action: {
4532
+ types: [
4533
+ "string"
4534
+ ],
4535
+ description: "Declarative event name — emits UI:{action} via eventBus on click"
4536
+ },
4537
+ actionPayload: {
4538
+ types: [
4539
+ "object"
4540
+ ],
4541
+ description: "Payload to include with the action event"
4369
4542
  }
4370
4543
  }
4371
4544
  },
@@ -4380,6 +4553,13 @@ var patterns = {
4380
4553
  ],
4381
4554
  typicalSize: "small",
4382
4555
  propsSchema: {
4556
+ highlightType: {
4557
+ types: [
4558
+ "highlighttype"
4559
+ ],
4560
+ description: "Type of highlight (determines color)",
4561
+ required: true
4562
+ },
4383
4563
  isActive: {
4384
4564
  types: [
4385
4565
  "boolean"
@@ -4423,12 +4603,17 @@ var patterns = {
4423
4603
  description: "Highlighted text content",
4424
4604
  required: true
4425
4605
  },
4426
- highlightType: {
4606
+ action: {
4427
4607
  types: [
4428
- "highlighttype"
4608
+ "string"
4429
4609
  ],
4430
- description: "Type of highlight (determines color)",
4431
- required: true
4610
+ description: "Declarative event name emits UI:{action} via eventBus on click"
4611
+ },
4612
+ hoverEvent: {
4613
+ types: [
4614
+ "string"
4615
+ ],
4616
+ description: "Declarative hover event — emits UI:{hoverEvent} with { hovered: true/false }"
4432
4617
  }
4433
4618
  }
4434
4619
  },
@@ -4611,6 +4796,18 @@ var patterns = {
4611
4796
  ],
4612
4797
  description: "Called when button is released"
4613
4798
  },
4799
+ pressEvent: {
4800
+ types: [
4801
+ "string"
4802
+ ],
4803
+ description: "Declarative event name emitted on press via useEventBus"
4804
+ },
4805
+ releaseEvent: {
4806
+ types: [
4807
+ "string"
4808
+ ],
4809
+ description: "Declarative event name emitted on release via useEventBus"
4810
+ },
4614
4811
  pressed: {
4615
4812
  types: [
4616
4813
  "boolean"
@@ -4842,6 +5039,12 @@ var patterns = {
4842
5039
  "function"
4843
5040
  ],
4844
5041
  description: "Optional onClick handler"
5042
+ },
5043
+ action: {
5044
+ types: [
5045
+ "string"
5046
+ ],
5047
+ description: "Declarative event name emitted on click via useEventBus"
4845
5048
  }
4846
5049
  }
4847
5050
  },
@@ -5362,6 +5565,12 @@ var patterns = {
5362
5565
  "string"
5363
5566
  ],
5364
5567
  description: "Additional CSS classes"
5568
+ },
5569
+ closeEvent: {
5570
+ types: [
5571
+ "string"
5572
+ ],
5573
+ description: "Declarative close event — emits UI:{closeEvent} via eventBus when panel should close"
5365
5574
  }
5366
5575
  }
5367
5576
  },
@@ -5443,8 +5652,13 @@ var patterns = {
5443
5652
  types: [
5444
5653
  "function"
5445
5654
  ],
5446
- description: "Called when a button is pressed/released",
5447
- required: true
5655
+ description: "Called when a button is pressed/released"
5656
+ },
5657
+ actionEvent: {
5658
+ types: [
5659
+ "string"
5660
+ ],
5661
+ description: "Declarative event name emitted on action via useEventBus"
5448
5662
  },
5449
5663
  layout: {
5450
5664
  types: [
@@ -5486,8 +5700,13 @@ var patterns = {
5486
5700
  types: [
5487
5701
  "function"
5488
5702
  ],
5489
- description: "Called when a direction is pressed/released",
5490
- required: true
5703
+ description: "Called when a direction is pressed/released"
5704
+ },
5705
+ directionEvent: {
5706
+ types: [
5707
+ "string"
5708
+ ],
5709
+ description: "Declarative event name emitted on direction press/release via useEventBus"
5491
5710
  },
5492
5711
  size: {
5493
5712
  types: [
@@ -8321,6 +8540,12 @@ var patterns = {
8321
8540
  ],
8322
8541
  description: "Callback when the effect animation completes"
8323
8542
  },
8543
+ completeEvent: {
8544
+ types: [
8545
+ "string"
8546
+ ],
8547
+ description: "Declarative event: emits UI:{completeEvent} when the effect animation completes"
8548
+ },
8324
8549
  className: {
8325
8550
  types: [
8326
8551
  "string"
@@ -8472,6 +8697,30 @@ var patterns = {
8472
8697
  ],
8473
8698
  description: "Tile leave handler"
8474
8699
  },
8700
+ tileClickEvent: {
8701
+ types: [
8702
+ "string"
8703
+ ],
8704
+ description: "--- Declarative event props ---"
8705
+ },
8706
+ unitClickEvent: {
8707
+ types: [
8708
+ "string"
8709
+ ],
8710
+ description: "Declarative event: emits UI:{unitClickEvent} with { unitId } on unit click"
8711
+ },
8712
+ tileHoverEvent: {
8713
+ types: [
8714
+ "string"
8715
+ ],
8716
+ description: "Declarative event: emits UI:{tileHoverEvent} with { x, y } on tile hover"
8717
+ },
8718
+ tileLeaveEvent: {
8719
+ types: [
8720
+ "string"
8721
+ ],
8722
+ description: "Declarative event: emits UI:{tileLeaveEvent} with {} on tile leave"
8723
+ },
8475
8724
  scale: {
8476
8725
  types: [
8477
8726
  "number"
@@ -9668,77 +9917,289 @@ var integrators = {
9668
9917
  }
9669
9918
  }
9670
9919
  ]
9671
- }
9672
- };
9673
- var categories = [
9674
- "media",
9675
- "payment",
9676
- "messaging",
9677
- "ai"
9678
- ];
9679
- var integratorsRegistry = {
9680
- version: version$2,
9681
- exportedAt: exportedAt$2,
9682
- integrators: integrators,
9683
- categories: categories
9684
- };
9685
-
9686
- var version$1 = "1.0.0";
9687
- var exportedAt$1 = "2026-02-10T15:35:56.769Z";
9688
- var mappings = {
9689
- "page-header": {
9690
- component: "PageHeader",
9691
- importPath: "@/components/organisms/PageHeader",
9692
- category: "header"
9693
- },
9694
- "entity-list": {
9695
- component: "List",
9696
- importPath: "@/components/organisms/List",
9697
- category: "display"
9698
- },
9699
- "entity-table": {
9700
- component: "DataTable",
9701
- importPath: "@/components/organisms/DataTable",
9702
- category: "display"
9703
- },
9704
- "entity-cards": {
9705
- component: "CardGrid",
9706
- importPath: "@/components/organisms/CardGrid",
9707
- category: "display"
9708
- },
9709
- stats: {
9710
- component: "StatCard",
9711
- importPath: "@/components/organisms/StatCard",
9712
- category: "display"
9713
- },
9714
- "detail-panel": {
9715
- component: "DetailPanel",
9716
- importPath: "@/components/organisms/DetailPanel",
9717
- category: "display"
9718
- },
9719
- form: {
9720
- component: "Form",
9721
- importPath: "@/components/organisms/Form",
9722
- category: "form"
9723
- },
9724
- "form-section": {
9725
- component: "Form",
9726
- importPath: "@/components/organisms/Form",
9727
- category: "form"
9728
- },
9729
- "form-actions": {
9730
- component: "ButtonGroup",
9731
- importPath: "@/components/molecules/ButtonGroup",
9732
- category: "form"
9733
9920
  },
9734
- "filter-group": {
9735
- component: "FilterGroup",
9736
- importPath: "@/components/molecules/FilterGroup",
9737
- category: "filter"
9738
- },
9739
- "search-input": {
9740
- component: "SearchInput",
9741
- importPath: "@/components/molecules/SearchInput",
9921
+ github: {
9922
+ name: "github",
9923
+ description: "GitHub integration - Git operations and GitHub REST API",
9924
+ category: "devtools",
9925
+ actions: [
9926
+ {
9927
+ name: "cloneRepo",
9928
+ description: "Clone a repository",
9929
+ params: [
9930
+ {
9931
+ name: "repo",
9932
+ type: "string",
9933
+ required: true,
9934
+ description: "Repository URL or owner/repo"
9935
+ },
9936
+ {
9937
+ name: "branch",
9938
+ type: "string",
9939
+ required: false,
9940
+ description: "Branch to clone"
9941
+ }
9942
+ ],
9943
+ responseShape: {
9944
+ path: "string",
9945
+ branch: "string"
9946
+ }
9947
+ },
9948
+ {
9949
+ name: "createBranch",
9950
+ description: "Create a new branch",
9951
+ params: [
9952
+ {
9953
+ name: "repo",
9954
+ type: "string",
9955
+ required: true,
9956
+ description: "Local repo path"
9957
+ },
9958
+ {
9959
+ name: "branch",
9960
+ type: "string",
9961
+ required: true,
9962
+ description: "Branch name"
9963
+ }
9964
+ ],
9965
+ responseShape: {
9966
+ branch: "string"
9967
+ }
9968
+ },
9969
+ {
9970
+ name: "commit",
9971
+ description: "Commit changes",
9972
+ params: [
9973
+ {
9974
+ name: "repo",
9975
+ type: "string",
9976
+ required: true,
9977
+ description: "Local repo path"
9978
+ },
9979
+ {
9980
+ name: "message",
9981
+ type: "string",
9982
+ required: true,
9983
+ description: "Commit message"
9984
+ },
9985
+ {
9986
+ name: "files",
9987
+ type: "array",
9988
+ required: false,
9989
+ description: "Files to stage"
9990
+ }
9991
+ ],
9992
+ responseShape: {
9993
+ hash: "string",
9994
+ message: "string"
9995
+ }
9996
+ },
9997
+ {
9998
+ name: "push",
9999
+ description: "Push commits to remote",
10000
+ params: [
10001
+ {
10002
+ name: "repo",
10003
+ type: "string",
10004
+ required: true,
10005
+ description: "Local repo path"
10006
+ },
10007
+ {
10008
+ name: "branch",
10009
+ type: "string",
10010
+ required: false,
10011
+ description: "Branch to push"
10012
+ }
10013
+ ],
10014
+ responseShape: {
10015
+ success: "boolean"
10016
+ }
10017
+ },
10018
+ {
10019
+ name: "createPR",
10020
+ description: "Create a pull request",
10021
+ params: [
10022
+ {
10023
+ name: "title",
10024
+ type: "string",
10025
+ required: true,
10026
+ description: "PR title"
10027
+ },
10028
+ {
10029
+ name: "body",
10030
+ type: "string",
10031
+ required: false,
10032
+ description: "PR description"
10033
+ },
10034
+ {
10035
+ name: "head",
10036
+ type: "string",
10037
+ required: true,
10038
+ description: "Head branch"
10039
+ },
10040
+ {
10041
+ name: "base",
10042
+ type: "string",
10043
+ required: false,
10044
+ description: "Base branch (default: main)"
10045
+ }
10046
+ ],
10047
+ responseShape: {
10048
+ number: "number",
10049
+ url: "string"
10050
+ }
10051
+ },
10052
+ {
10053
+ name: "getPRComments",
10054
+ description: "Fetch pull request comments",
10055
+ params: [
10056
+ {
10057
+ name: "prNumber",
10058
+ type: "number",
10059
+ required: true,
10060
+ description: "PR number"
10061
+ }
10062
+ ],
10063
+ responseShape: {
10064
+ comments: "array"
10065
+ }
10066
+ },
10067
+ {
10068
+ name: "listIssues",
10069
+ description: "List issues with optional filters",
10070
+ params: [
10071
+ {
10072
+ name: "state",
10073
+ type: "string",
10074
+ required: false,
10075
+ description: "Issue state: open, closed, all"
10076
+ },
10077
+ {
10078
+ name: "labels",
10079
+ type: "string",
10080
+ required: false,
10081
+ description: "Comma-separated label names"
10082
+ }
10083
+ ],
10084
+ responseShape: {
10085
+ issues: "array"
10086
+ }
10087
+ },
10088
+ {
10089
+ name: "getIssue",
10090
+ description: "Get a single issue",
10091
+ params: [
10092
+ {
10093
+ name: "issueNumber",
10094
+ type: "number",
10095
+ required: true,
10096
+ description: "Issue number"
10097
+ }
10098
+ ],
10099
+ responseShape: {
10100
+ title: "string",
10101
+ body: "string",
10102
+ state: "string"
10103
+ }
10104
+ }
10105
+ ]
10106
+ },
10107
+ cli: {
10108
+ name: "cli",
10109
+ description: "Almadar CLI integration - schema validation and compilation",
10110
+ category: "devtools",
10111
+ actions: [
10112
+ {
10113
+ name: "validate",
10114
+ description: "Validate an orbital schema",
10115
+ params: [
10116
+ {
10117
+ name: "schema",
10118
+ type: "string",
10119
+ required: true,
10120
+ description: "Schema content to validate"
10121
+ }
10122
+ ],
10123
+ responseShape: {
10124
+ valid: "boolean",
10125
+ errors: "array",
10126
+ warnings: "array",
10127
+ summary: "string"
10128
+ }
10129
+ }
10130
+ ]
10131
+ }
10132
+ };
10133
+ var categories = [
10134
+ "media",
10135
+ "payment",
10136
+ "messaging",
10137
+ "ai",
10138
+ "devtools"
10139
+ ];
10140
+ var integratorsRegistry = {
10141
+ version: version$2,
10142
+ exportedAt: exportedAt$2,
10143
+ integrators: integrators,
10144
+ categories: categories
10145
+ };
10146
+
10147
+ var version$1 = "1.0.0";
10148
+ var exportedAt$1 = "2026-02-12T06:50:46.522Z";
10149
+ var mappings = {
10150
+ "page-header": {
10151
+ component: "PageHeader",
10152
+ importPath: "@/components/organisms/PageHeader",
10153
+ category: "header"
10154
+ },
10155
+ "entity-list": {
10156
+ component: "List",
10157
+ importPath: "@/components/organisms/List",
10158
+ category: "display"
10159
+ },
10160
+ "entity-table": {
10161
+ component: "DataTable",
10162
+ importPath: "@/components/organisms/DataTable",
10163
+ category: "display"
10164
+ },
10165
+ "entity-cards": {
10166
+ component: "CardGrid",
10167
+ importPath: "@/components/organisms/CardGrid",
10168
+ category: "display"
10169
+ },
10170
+ stats: {
10171
+ component: "StatCard",
10172
+ importPath: "@/components/organisms/StatCard",
10173
+ category: "display"
10174
+ },
10175
+ "detail-panel": {
10176
+ component: "DetailPanel",
10177
+ importPath: "@/components/organisms/DetailPanel",
10178
+ category: "display"
10179
+ },
10180
+ form: {
10181
+ component: "Form",
10182
+ importPath: "@/components/organisms/Form",
10183
+ category: "form"
10184
+ },
10185
+ "form-section": {
10186
+ component: "Form",
10187
+ importPath: "@/components/organisms/Form",
10188
+ category: "form"
10189
+ },
10190
+ "form-actions": {
10191
+ component: "ButtonGroup",
10192
+ importPath: "@/components/molecules/ButtonGroup",
10193
+ category: "form"
10194
+ },
10195
+ "filter-group": {
10196
+ component: "FilterGroup",
10197
+ importPath: "@/components/molecules/FilterGroup",
10198
+ category: "filter"
10199
+ },
10200
+ "search-input": {
10201
+ component: "SearchInput",
10202
+ importPath: "@/components/molecules/SearchInput",
9742
10203
  category: "filter"
9743
10204
  },
9744
10205
  "empty-state": {
@@ -10357,7 +10818,7 @@ var componentMapping = {
10357
10818
  };
10358
10819
 
10359
10820
  var version = "1.0.0";
10360
- var exportedAt = "2026-02-10T15:35:56.769Z";
10821
+ var exportedAt = "2026-02-12T06:50:46.522Z";
10361
10822
  var contracts = {
10362
10823
  form: {
10363
10824
  emits: [
@@ -15198,6 +15659,10 @@ declare const registry: {
15198
15659
  types: string[];
15199
15660
  description: string;
15200
15661
  };
15662
+ stepClickEvent: {
15663
+ types: string[];
15664
+ description: string;
15665
+ };
15201
15666
  };
15202
15667
  };
15203
15668
  "wizard-navigation": {
@@ -15382,6 +15847,14 @@ declare const registry: {
15382
15847
  types: string[];
15383
15848
  description: string;
15384
15849
  };
15850
+ pageChangeEvent: {
15851
+ types: string[];
15852
+ description: string;
15853
+ };
15854
+ pageSizeChangeEvent: {
15855
+ types: string[];
15856
+ description: string;
15857
+ };
15385
15858
  };
15386
15859
  };
15387
15860
  "empty-state": {
@@ -15427,6 +15900,10 @@ declare const registry: {
15427
15900
  types: string[];
15428
15901
  description: string;
15429
15902
  };
15903
+ actionEvent: {
15904
+ types: string[];
15905
+ description: string;
15906
+ };
15430
15907
  };
15431
15908
  };
15432
15909
  "loading-state": {
@@ -15477,6 +15954,10 @@ declare const registry: {
15477
15954
  types: string[];
15478
15955
  description: string;
15479
15956
  };
15957
+ retryEvent: {
15958
+ types: string[];
15959
+ description: string;
15960
+ };
15480
15961
  };
15481
15962
  };
15482
15963
  notification: {
@@ -15527,6 +16008,14 @@ declare const registry: {
15527
16008
  types: string[];
15528
16009
  description: string;
15529
16010
  };
16011
+ dismissEvent: {
16012
+ types: string[];
16013
+ description: string;
16014
+ };
16015
+ actionEvent: {
16016
+ types: string[];
16017
+ description: string;
16018
+ };
15530
16019
  };
15531
16020
  };
15532
16021
  stats: {
@@ -15687,6 +16176,10 @@ declare const registry: {
15687
16176
  types: string[];
15688
16177
  description: string;
15689
16178
  };
16179
+ closeEvent: {
16180
+ types: string[];
16181
+ description: string;
16182
+ };
15690
16183
  };
15691
16184
  };
15692
16185
  drawer: {
@@ -15740,6 +16233,10 @@ declare const registry: {
15740
16233
  types: string[];
15741
16234
  description: string;
15742
16235
  };
16236
+ closeEvent: {
16237
+ types: string[];
16238
+ description: string;
16239
+ };
15743
16240
  };
15744
16241
  };
15745
16242
  "confirm-dialog": {
@@ -15922,6 +16419,18 @@ declare const registry: {
15922
16419
  types: string[];
15923
16420
  description: string;
15924
16421
  };
16422
+ action: {
16423
+ types: string[];
16424
+ description: string;
16425
+ };
16426
+ actionPayload: {
16427
+ types: string[];
16428
+ description: string;
16429
+ };
16430
+ hoverEvent: {
16431
+ types: string[];
16432
+ description: string;
16433
+ };
15925
16434
  };
15926
16435
  };
15927
16436
  grid: {
@@ -16244,7 +16753,6 @@ declare const registry: {
16244
16753
  onSelectSlot: {
16245
16754
  types: string[];
16246
16755
  description: string;
16247
- required: boolean;
16248
16756
  };
16249
16757
  onUseItem: {
16250
16758
  types: string[];
@@ -16254,6 +16762,18 @@ declare const registry: {
16254
16762
  types: string[];
16255
16763
  description: string;
16256
16764
  };
16765
+ selectSlotEvent: {
16766
+ types: string[];
16767
+ description: string;
16768
+ };
16769
+ useItemEvent: {
16770
+ types: string[];
16771
+ description: string;
16772
+ };
16773
+ dropItemEvent: {
16774
+ types: string[];
16775
+ description: string;
16776
+ };
16257
16777
  showTooltips: {
16258
16778
  types: string[];
16259
16779
  description: string;
@@ -16300,6 +16820,18 @@ declare const registry: {
16300
16820
  types: string[];
16301
16821
  description: string;
16302
16822
  };
16823
+ completeEvent: {
16824
+ types: string[];
16825
+ description: string;
16826
+ };
16827
+ choiceEvent: {
16828
+ types: string[];
16829
+ description: string;
16830
+ };
16831
+ advanceEvent: {
16832
+ types: string[];
16833
+ description: string;
16834
+ };
16303
16835
  className: {
16304
16836
  types: string[];
16305
16837
  description: string;
@@ -16362,6 +16894,18 @@ declare const registry: {
16362
16894
  types: string[];
16363
16895
  description: string;
16364
16896
  };
16897
+ action: {
16898
+ types: string[];
16899
+ description: string;
16900
+ };
16901
+ actionPayload: {
16902
+ types: string[];
16903
+ description: string;
16904
+ };
16905
+ label: {
16906
+ types: string[];
16907
+ description: string;
16908
+ };
16365
16909
  };
16366
16910
  };
16367
16911
  badge: {
@@ -16428,6 +16972,14 @@ declare const registry: {
16428
16972
  types: string[];
16429
16973
  description: string;
16430
16974
  };
16975
+ action: {
16976
+ types: string[];
16977
+ description: string;
16978
+ };
16979
+ actionPayload: {
16980
+ types: string[];
16981
+ description: string;
16982
+ };
16431
16983
  };
16432
16984
  };
16433
16985
  icon: {
@@ -16506,6 +17058,10 @@ declare const registry: {
16506
17058
  types: string[];
16507
17059
  description: string;
16508
17060
  };
17061
+ action: {
17062
+ types: string[];
17063
+ description: string;
17064
+ };
16509
17065
  };
16510
17066
  };
16511
17067
  "progress-bar": {
@@ -16794,6 +17350,10 @@ declare const registry: {
16794
17350
  types: string[];
16795
17351
  description: string;
16796
17352
  };
17353
+ dismissEvent: {
17354
+ types: string[];
17355
+ description: string;
17356
+ };
16797
17357
  };
16798
17358
  };
16799
17359
  tooltip: {
@@ -16933,6 +17493,10 @@ declare const registry: {
16933
17493
  types: string[];
16934
17494
  description: string;
16935
17495
  };
17496
+ toggleEvent: {
17497
+ types: string[];
17498
+ description: string;
17499
+ };
16936
17500
  };
16937
17501
  };
16938
17502
  container: {
@@ -17168,6 +17732,10 @@ declare const registry: {
17168
17732
  types: string[];
17169
17733
  description: string;
17170
17734
  };
17735
+ action: {
17736
+ types: string[];
17737
+ description: string;
17738
+ };
17171
17739
  };
17172
17740
  };
17173
17741
  stack: {
@@ -17237,6 +17805,14 @@ declare const registry: {
17237
17805
  types: string[];
17238
17806
  description: string;
17239
17807
  };
17808
+ action: {
17809
+ types: string[];
17810
+ description: string;
17811
+ };
17812
+ actionPayload: {
17813
+ types: string[];
17814
+ description: string;
17815
+ };
17240
17816
  };
17241
17817
  };
17242
17818
  "text-highlight": {
@@ -17246,6 +17822,11 @@ declare const registry: {
17246
17822
  suggestedFor: string[];
17247
17823
  typicalSize: string;
17248
17824
  propsSchema: {
17825
+ highlightType: {
17826
+ types: string[];
17827
+ description: string;
17828
+ required: boolean;
17829
+ };
17249
17830
  isActive: {
17250
17831
  types: string[];
17251
17832
  description: string;
@@ -17275,10 +17856,13 @@ declare const registry: {
17275
17856
  description: string;
17276
17857
  required: boolean;
17277
17858
  };
17278
- highlightType: {
17859
+ action: {
17860
+ types: string[];
17861
+ description: string;
17862
+ };
17863
+ hoverEvent: {
17279
17864
  types: string[];
17280
17865
  description: string;
17281
- required: boolean;
17282
17866
  };
17283
17867
  };
17284
17868
  };
@@ -17403,6 +17987,14 @@ declare const registry: {
17403
17987
  types: string[];
17404
17988
  description: string;
17405
17989
  };
17990
+ pressEvent: {
17991
+ types: string[];
17992
+ description: string;
17993
+ };
17994
+ releaseEvent: {
17995
+ types: string[];
17996
+ description: string;
17997
+ };
17406
17998
  pressed: {
17407
17999
  types: string[];
17408
18000
  description: string;
@@ -17563,6 +18155,10 @@ declare const registry: {
17563
18155
  types: string[];
17564
18156
  description: string;
17565
18157
  };
18158
+ action: {
18159
+ types: string[];
18160
+ description: string;
18161
+ };
17566
18162
  };
17567
18163
  };
17568
18164
  "form-actions": {
@@ -17912,6 +18508,10 @@ declare const registry: {
17912
18508
  types: string[];
17913
18509
  description: string;
17914
18510
  };
18511
+ closeEvent: {
18512
+ types: string[];
18513
+ description: string;
18514
+ };
17915
18515
  };
17916
18516
  };
17917
18517
  "violation-alert": {
@@ -17967,7 +18567,10 @@ declare const registry: {
17967
18567
  onAction: {
17968
18568
  types: string[];
17969
18569
  description: string;
17970
- required: boolean;
18570
+ };
18571
+ actionEvent: {
18572
+ types: string[];
18573
+ description: string;
17971
18574
  };
17972
18575
  layout: {
17973
18576
  types: string[];
@@ -17997,7 +18600,10 @@ declare const registry: {
17997
18600
  onDirection: {
17998
18601
  types: string[];
17999
18602
  description: string;
18000
- required: boolean;
18603
+ };
18604
+ directionEvent: {
18605
+ types: string[];
18606
+ description: string;
18001
18607
  };
18002
18608
  size: {
18003
18609
  types: string[];
@@ -19904,6 +20510,10 @@ declare const registry: {
19904
20510
  types: string[];
19905
20511
  description: string;
19906
20512
  };
20513
+ completeEvent: {
20514
+ types: string[];
20515
+ description: string;
20516
+ };
19907
20517
  className: {
19908
20518
  types: string[];
19909
20519
  description: string;
@@ -20005,6 +20615,22 @@ declare const registry: {
20005
20615
  types: string[];
20006
20616
  description: string;
20007
20617
  };
20618
+ tileClickEvent: {
20619
+ types: string[];
20620
+ description: string;
20621
+ };
20622
+ unitClickEvent: {
20623
+ types: string[];
20624
+ description: string;
20625
+ };
20626
+ tileHoverEvent: {
20627
+ types: string[];
20628
+ description: string;
20629
+ };
20630
+ tileLeaveEvent: {
20631
+ types: string[];
20632
+ description: string;
20633
+ };
20008
20634
  scale: {
20009
20635
  types: string[];
20010
20636
  description: string;
@@ -21359,6 +21985,10 @@ declare const PATTERN_REGISTRY: {
21359
21985
  types: string[];
21360
21986
  description: string;
21361
21987
  };
21988
+ stepClickEvent: {
21989
+ types: string[];
21990
+ description: string;
21991
+ };
21362
21992
  };
21363
21993
  };
21364
21994
  "wizard-navigation": {
@@ -21543,6 +22173,14 @@ declare const PATTERN_REGISTRY: {
21543
22173
  types: string[];
21544
22174
  description: string;
21545
22175
  };
22176
+ pageChangeEvent: {
22177
+ types: string[];
22178
+ description: string;
22179
+ };
22180
+ pageSizeChangeEvent: {
22181
+ types: string[];
22182
+ description: string;
22183
+ };
21546
22184
  };
21547
22185
  };
21548
22186
  "empty-state": {
@@ -21588,6 +22226,10 @@ declare const PATTERN_REGISTRY: {
21588
22226
  types: string[];
21589
22227
  description: string;
21590
22228
  };
22229
+ actionEvent: {
22230
+ types: string[];
22231
+ description: string;
22232
+ };
21591
22233
  };
21592
22234
  };
21593
22235
  "loading-state": {
@@ -21638,6 +22280,10 @@ declare const PATTERN_REGISTRY: {
21638
22280
  types: string[];
21639
22281
  description: string;
21640
22282
  };
22283
+ retryEvent: {
22284
+ types: string[];
22285
+ description: string;
22286
+ };
21641
22287
  };
21642
22288
  };
21643
22289
  notification: {
@@ -21688,6 +22334,14 @@ declare const PATTERN_REGISTRY: {
21688
22334
  types: string[];
21689
22335
  description: string;
21690
22336
  };
22337
+ dismissEvent: {
22338
+ types: string[];
22339
+ description: string;
22340
+ };
22341
+ actionEvent: {
22342
+ types: string[];
22343
+ description: string;
22344
+ };
21691
22345
  };
21692
22346
  };
21693
22347
  stats: {
@@ -21848,6 +22502,10 @@ declare const PATTERN_REGISTRY: {
21848
22502
  types: string[];
21849
22503
  description: string;
21850
22504
  };
22505
+ closeEvent: {
22506
+ types: string[];
22507
+ description: string;
22508
+ };
21851
22509
  };
21852
22510
  };
21853
22511
  drawer: {
@@ -21901,6 +22559,10 @@ declare const PATTERN_REGISTRY: {
21901
22559
  types: string[];
21902
22560
  description: string;
21903
22561
  };
22562
+ closeEvent: {
22563
+ types: string[];
22564
+ description: string;
22565
+ };
21904
22566
  };
21905
22567
  };
21906
22568
  "confirm-dialog": {
@@ -22083,6 +22745,18 @@ declare const PATTERN_REGISTRY: {
22083
22745
  types: string[];
22084
22746
  description: string;
22085
22747
  };
22748
+ action: {
22749
+ types: string[];
22750
+ description: string;
22751
+ };
22752
+ actionPayload: {
22753
+ types: string[];
22754
+ description: string;
22755
+ };
22756
+ hoverEvent: {
22757
+ types: string[];
22758
+ description: string;
22759
+ };
22086
22760
  };
22087
22761
  };
22088
22762
  grid: {
@@ -22405,7 +23079,6 @@ declare const PATTERN_REGISTRY: {
22405
23079
  onSelectSlot: {
22406
23080
  types: string[];
22407
23081
  description: string;
22408
- required: boolean;
22409
23082
  };
22410
23083
  onUseItem: {
22411
23084
  types: string[];
@@ -22415,6 +23088,18 @@ declare const PATTERN_REGISTRY: {
22415
23088
  types: string[];
22416
23089
  description: string;
22417
23090
  };
23091
+ selectSlotEvent: {
23092
+ types: string[];
23093
+ description: string;
23094
+ };
23095
+ useItemEvent: {
23096
+ types: string[];
23097
+ description: string;
23098
+ };
23099
+ dropItemEvent: {
23100
+ types: string[];
23101
+ description: string;
23102
+ };
22418
23103
  showTooltips: {
22419
23104
  types: string[];
22420
23105
  description: string;
@@ -22461,6 +23146,18 @@ declare const PATTERN_REGISTRY: {
22461
23146
  types: string[];
22462
23147
  description: string;
22463
23148
  };
23149
+ completeEvent: {
23150
+ types: string[];
23151
+ description: string;
23152
+ };
23153
+ choiceEvent: {
23154
+ types: string[];
23155
+ description: string;
23156
+ };
23157
+ advanceEvent: {
23158
+ types: string[];
23159
+ description: string;
23160
+ };
22464
23161
  className: {
22465
23162
  types: string[];
22466
23163
  description: string;
@@ -22523,6 +23220,18 @@ declare const PATTERN_REGISTRY: {
22523
23220
  types: string[];
22524
23221
  description: string;
22525
23222
  };
23223
+ action: {
23224
+ types: string[];
23225
+ description: string;
23226
+ };
23227
+ actionPayload: {
23228
+ types: string[];
23229
+ description: string;
23230
+ };
23231
+ label: {
23232
+ types: string[];
23233
+ description: string;
23234
+ };
22526
23235
  };
22527
23236
  };
22528
23237
  badge: {
@@ -22589,6 +23298,14 @@ declare const PATTERN_REGISTRY: {
22589
23298
  types: string[];
22590
23299
  description: string;
22591
23300
  };
23301
+ action: {
23302
+ types: string[];
23303
+ description: string;
23304
+ };
23305
+ actionPayload: {
23306
+ types: string[];
23307
+ description: string;
23308
+ };
22592
23309
  };
22593
23310
  };
22594
23311
  icon: {
@@ -22667,6 +23384,10 @@ declare const PATTERN_REGISTRY: {
22667
23384
  types: string[];
22668
23385
  description: string;
22669
23386
  };
23387
+ action: {
23388
+ types: string[];
23389
+ description: string;
23390
+ };
22670
23391
  };
22671
23392
  };
22672
23393
  "progress-bar": {
@@ -22955,6 +23676,10 @@ declare const PATTERN_REGISTRY: {
22955
23676
  types: string[];
22956
23677
  description: string;
22957
23678
  };
23679
+ dismissEvent: {
23680
+ types: string[];
23681
+ description: string;
23682
+ };
22958
23683
  };
22959
23684
  };
22960
23685
  tooltip: {
@@ -23094,6 +23819,10 @@ declare const PATTERN_REGISTRY: {
23094
23819
  types: string[];
23095
23820
  description: string;
23096
23821
  };
23822
+ toggleEvent: {
23823
+ types: string[];
23824
+ description: string;
23825
+ };
23097
23826
  };
23098
23827
  };
23099
23828
  container: {
@@ -23329,6 +24058,10 @@ declare const PATTERN_REGISTRY: {
23329
24058
  types: string[];
23330
24059
  description: string;
23331
24060
  };
24061
+ action: {
24062
+ types: string[];
24063
+ description: string;
24064
+ };
23332
24065
  };
23333
24066
  };
23334
24067
  stack: {
@@ -23398,6 +24131,14 @@ declare const PATTERN_REGISTRY: {
23398
24131
  types: string[];
23399
24132
  description: string;
23400
24133
  };
24134
+ action: {
24135
+ types: string[];
24136
+ description: string;
24137
+ };
24138
+ actionPayload: {
24139
+ types: string[];
24140
+ description: string;
24141
+ };
23401
24142
  };
23402
24143
  };
23403
24144
  "text-highlight": {
@@ -23407,6 +24148,11 @@ declare const PATTERN_REGISTRY: {
23407
24148
  suggestedFor: string[];
23408
24149
  typicalSize: string;
23409
24150
  propsSchema: {
24151
+ highlightType: {
24152
+ types: string[];
24153
+ description: string;
24154
+ required: boolean;
24155
+ };
23410
24156
  isActive: {
23411
24157
  types: string[];
23412
24158
  description: string;
@@ -23436,10 +24182,13 @@ declare const PATTERN_REGISTRY: {
23436
24182
  description: string;
23437
24183
  required: boolean;
23438
24184
  };
23439
- highlightType: {
24185
+ action: {
24186
+ types: string[];
24187
+ description: string;
24188
+ };
24189
+ hoverEvent: {
23440
24190
  types: string[];
23441
24191
  description: string;
23442
- required: boolean;
23443
24192
  };
23444
24193
  };
23445
24194
  };
@@ -23564,6 +24313,14 @@ declare const PATTERN_REGISTRY: {
23564
24313
  types: string[];
23565
24314
  description: string;
23566
24315
  };
24316
+ pressEvent: {
24317
+ types: string[];
24318
+ description: string;
24319
+ };
24320
+ releaseEvent: {
24321
+ types: string[];
24322
+ description: string;
24323
+ };
23567
24324
  pressed: {
23568
24325
  types: string[];
23569
24326
  description: string;
@@ -23724,6 +24481,10 @@ declare const PATTERN_REGISTRY: {
23724
24481
  types: string[];
23725
24482
  description: string;
23726
24483
  };
24484
+ action: {
24485
+ types: string[];
24486
+ description: string;
24487
+ };
23727
24488
  };
23728
24489
  };
23729
24490
  "form-actions": {
@@ -24073,6 +24834,10 @@ declare const PATTERN_REGISTRY: {
24073
24834
  types: string[];
24074
24835
  description: string;
24075
24836
  };
24837
+ closeEvent: {
24838
+ types: string[];
24839
+ description: string;
24840
+ };
24076
24841
  };
24077
24842
  };
24078
24843
  "violation-alert": {
@@ -24128,7 +24893,10 @@ declare const PATTERN_REGISTRY: {
24128
24893
  onAction: {
24129
24894
  types: string[];
24130
24895
  description: string;
24131
- required: boolean;
24896
+ };
24897
+ actionEvent: {
24898
+ types: string[];
24899
+ description: string;
24132
24900
  };
24133
24901
  layout: {
24134
24902
  types: string[];
@@ -24158,7 +24926,10 @@ declare const PATTERN_REGISTRY: {
24158
24926
  onDirection: {
24159
24927
  types: string[];
24160
24928
  description: string;
24161
- required: boolean;
24929
+ };
24930
+ directionEvent: {
24931
+ types: string[];
24932
+ description: string;
24162
24933
  };
24163
24934
  size: {
24164
24935
  types: string[];
@@ -26065,6 +26836,10 @@ declare const PATTERN_REGISTRY: {
26065
26836
  types: string[];
26066
26837
  description: string;
26067
26838
  };
26839
+ completeEvent: {
26840
+ types: string[];
26841
+ description: string;
26842
+ };
26068
26843
  className: {
26069
26844
  types: string[];
26070
26845
  description: string;
@@ -26166,6 +26941,22 @@ declare const PATTERN_REGISTRY: {
26166
26941
  types: string[];
26167
26942
  description: string;
26168
26943
  };
26944
+ tileClickEvent: {
26945
+ types: string[];
26946
+ description: string;
26947
+ };
26948
+ unitClickEvent: {
26949
+ types: string[];
26950
+ description: string;
26951
+ };
26952
+ tileHoverEvent: {
26953
+ types: string[];
26954
+ description: string;
26955
+ };
26956
+ tileLeaveEvent: {
26957
+ types: string[];
26958
+ description: string;
26959
+ };
26169
26960
  scale: {
26170
26961
  types: string[];
26171
26962
  description: string;
@@ -26979,6 +27770,217 @@ declare const INTEGRATORS_REGISTRY: {
26979
27770
  };
26980
27771
  })[];
26981
27772
  };
27773
+ github: {
27774
+ name: string;
27775
+ description: string;
27776
+ category: string;
27777
+ actions: ({
27778
+ name: string;
27779
+ description: string;
27780
+ params: {
27781
+ name: string;
27782
+ type: string;
27783
+ required: boolean;
27784
+ description: string;
27785
+ }[];
27786
+ responseShape: {
27787
+ path: string;
27788
+ branch: string;
27789
+ hash?: undefined;
27790
+ message?: undefined;
27791
+ success?: undefined;
27792
+ number?: undefined;
27793
+ url?: undefined;
27794
+ comments?: undefined;
27795
+ issues?: undefined;
27796
+ title?: undefined;
27797
+ body?: undefined;
27798
+ state?: undefined;
27799
+ };
27800
+ } | {
27801
+ name: string;
27802
+ description: string;
27803
+ params: {
27804
+ name: string;
27805
+ type: string;
27806
+ required: boolean;
27807
+ description: string;
27808
+ }[];
27809
+ responseShape: {
27810
+ branch: string;
27811
+ path?: undefined;
27812
+ hash?: undefined;
27813
+ message?: undefined;
27814
+ success?: undefined;
27815
+ number?: undefined;
27816
+ url?: undefined;
27817
+ comments?: undefined;
27818
+ issues?: undefined;
27819
+ title?: undefined;
27820
+ body?: undefined;
27821
+ state?: undefined;
27822
+ };
27823
+ } | {
27824
+ name: string;
27825
+ description: string;
27826
+ params: {
27827
+ name: string;
27828
+ type: string;
27829
+ required: boolean;
27830
+ description: string;
27831
+ }[];
27832
+ responseShape: {
27833
+ hash: string;
27834
+ message: string;
27835
+ path?: undefined;
27836
+ branch?: undefined;
27837
+ success?: undefined;
27838
+ number?: undefined;
27839
+ url?: undefined;
27840
+ comments?: undefined;
27841
+ issues?: undefined;
27842
+ title?: undefined;
27843
+ body?: undefined;
27844
+ state?: undefined;
27845
+ };
27846
+ } | {
27847
+ name: string;
27848
+ description: string;
27849
+ params: {
27850
+ name: string;
27851
+ type: string;
27852
+ required: boolean;
27853
+ description: string;
27854
+ }[];
27855
+ responseShape: {
27856
+ success: string;
27857
+ path?: undefined;
27858
+ branch?: undefined;
27859
+ hash?: undefined;
27860
+ message?: undefined;
27861
+ number?: undefined;
27862
+ url?: undefined;
27863
+ comments?: undefined;
27864
+ issues?: undefined;
27865
+ title?: undefined;
27866
+ body?: undefined;
27867
+ state?: undefined;
27868
+ };
27869
+ } | {
27870
+ name: string;
27871
+ description: string;
27872
+ params: {
27873
+ name: string;
27874
+ type: string;
27875
+ required: boolean;
27876
+ description: string;
27877
+ }[];
27878
+ responseShape: {
27879
+ number: string;
27880
+ url: string;
27881
+ path?: undefined;
27882
+ branch?: undefined;
27883
+ hash?: undefined;
27884
+ message?: undefined;
27885
+ success?: undefined;
27886
+ comments?: undefined;
27887
+ issues?: undefined;
27888
+ title?: undefined;
27889
+ body?: undefined;
27890
+ state?: undefined;
27891
+ };
27892
+ } | {
27893
+ name: string;
27894
+ description: string;
27895
+ params: {
27896
+ name: string;
27897
+ type: string;
27898
+ required: boolean;
27899
+ description: string;
27900
+ }[];
27901
+ responseShape: {
27902
+ comments: string;
27903
+ path?: undefined;
27904
+ branch?: undefined;
27905
+ hash?: undefined;
27906
+ message?: undefined;
27907
+ success?: undefined;
27908
+ number?: undefined;
27909
+ url?: undefined;
27910
+ issues?: undefined;
27911
+ title?: undefined;
27912
+ body?: undefined;
27913
+ state?: undefined;
27914
+ };
27915
+ } | {
27916
+ name: string;
27917
+ description: string;
27918
+ params: {
27919
+ name: string;
27920
+ type: string;
27921
+ required: boolean;
27922
+ description: string;
27923
+ }[];
27924
+ responseShape: {
27925
+ issues: string;
27926
+ path?: undefined;
27927
+ branch?: undefined;
27928
+ hash?: undefined;
27929
+ message?: undefined;
27930
+ success?: undefined;
27931
+ number?: undefined;
27932
+ url?: undefined;
27933
+ comments?: undefined;
27934
+ title?: undefined;
27935
+ body?: undefined;
27936
+ state?: undefined;
27937
+ };
27938
+ } | {
27939
+ name: string;
27940
+ description: string;
27941
+ params: {
27942
+ name: string;
27943
+ type: string;
27944
+ required: boolean;
27945
+ description: string;
27946
+ }[];
27947
+ responseShape: {
27948
+ title: string;
27949
+ body: string;
27950
+ state: string;
27951
+ path?: undefined;
27952
+ branch?: undefined;
27953
+ hash?: undefined;
27954
+ message?: undefined;
27955
+ success?: undefined;
27956
+ number?: undefined;
27957
+ url?: undefined;
27958
+ comments?: undefined;
27959
+ issues?: undefined;
27960
+ };
27961
+ })[];
27962
+ };
27963
+ cli: {
27964
+ name: string;
27965
+ description: string;
27966
+ category: string;
27967
+ actions: {
27968
+ name: string;
27969
+ description: string;
27970
+ params: {
27971
+ name: string;
27972
+ type: string;
27973
+ required: boolean;
27974
+ description: string;
27975
+ }[];
27976
+ responseShape: {
27977
+ valid: string;
27978
+ errors: string;
27979
+ warnings: string;
27980
+ summary: string;
27981
+ };
27982
+ }[];
27983
+ };
26982
27984
  };
26983
27985
  categories: string[];
26984
27986
  };