@almadar/core 10.80.0 → 10.82.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.
Files changed (34) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +38 -0
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-C4uehm-r.d.ts → effect-Baldm2vM.d.ts} +369 -4
  5. package/dist/{entityAccess-BMKFgmsc.d.ts → entityAccess-CDYT7WWR.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +980 -10
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +38 -0
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/{index-DqUnw2Oo.d.ts → index-R8PyPrGg.d.ts} +4 -4
  13. package/dist/index.d.ts +10 -10
  14. package/dist/index.js +2135 -406
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/mock/index.js +38 -0
  18. package/dist/mock/index.js.map +1 -1
  19. package/dist/patterns/component-mapping.json +21 -1
  20. package/dist/patterns/event-contracts.json +1 -1
  21. package/dist/patterns/index.d.ts +4045 -608
  22. package/dist/patterns/index.js +1963 -405
  23. package/dist/patterns/index.js.map +1 -1
  24. package/dist/patterns/integrators-registry.json +1004 -402
  25. package/dist/patterns/patterns-registry.json +933 -1
  26. package/dist/patterns/registry.json +933 -1
  27. package/dist/patterns/services-registry.json +1171 -424
  28. package/dist/{schema-Cma07_18.d.ts → schema-1KQUz2pE.d.ts} +2 -2
  29. package/dist/{trait-BXkQKZbO.d.ts → trait-Dsp0vmGp.d.ts} +1 -1
  30. package/dist/types/index.d.ts +5 -5
  31. package/dist/types/index.js +176 -1
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-DoAKLgCZ.d.ts → types-DJYozDXK.d.ts} +2 -2
  34. package/package.json +1 -1
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  // src/patterns/patterns-registry.json
4
4
  var patterns_registry_default = {
5
5
  version: "1.0.0",
6
- exportedAt: "2026-09-02T20:03:03.703Z",
6
+ exportedAt: "2026-09-03T18:48:23.816Z",
7
7
  patterns: {
8
8
  "entity-table": {
9
9
  type: "entity-table",
@@ -26141,6 +26141,28 @@ var patterns_registry_default = {
26141
26141
  ],
26142
26142
  description: "Accessible label/tooltip for the row hover action."
26143
26143
  },
26144
+ onNodeReorder: {
26145
+ types: [
26146
+ "function"
26147
+ ],
26148
+ description: "Called when a row is dropped onto another, in flat `items` mode; carries the moved node's id, its new parent id (`null` for a root drop), and its index within the new parent's children. Presence-gated: binding this prop is what turns on row dragging.",
26149
+ kind: "callback",
26150
+ callbackArgs: [
26151
+ {
26152
+ name: "id",
26153
+ type: "string"
26154
+ },
26155
+ {
26156
+ name: "newParentId",
26157
+ type: "string"
26158
+ },
26159
+ {
26160
+ name: "index",
26161
+ type: "number"
26162
+ }
26163
+ ],
26164
+ default: ""
26165
+ },
26144
26166
  className: {
26145
26167
  types: [
26146
26168
  "string"
@@ -32689,6 +32711,20 @@ var patterns_registry_default = {
32689
32711
  "role",
32690
32712
  "category"
32691
32713
  ]
32714
+ },
32715
+ toggleEvent: {
32716
+ types: [
32717
+ "string"
32718
+ ],
32719
+ description: "Event dispatched via event bus on toggle, carrying the new muted state.",
32720
+ kind: "event-ref",
32721
+ emitPayloadSchema: [
32722
+ {
32723
+ name: "muted",
32724
+ type: "boolean",
32725
+ required: true
32726
+ }
32727
+ ]
32692
32728
  }
32693
32729
  }
32694
32730
  },
@@ -35160,6 +35196,19 @@ var patterns_registry_default = {
35160
35196
  "string"
35161
35197
  ],
35162
35198
  description: "Class for right/bottom pane"
35199
+ },
35200
+ onRatioChange: {
35201
+ types: [
35202
+ "function"
35203
+ ],
35204
+ description: "Called with the new ratio while dragging. Providing this makes `ratio` controlled \u2014 the rendered split always tracks the prop instead of internal state, mirroring a controlled input. Omit for uncontrolled (self-tracked) behavior.",
35205
+ kind: "callback",
35206
+ callbackArgs: [
35207
+ {
35208
+ name: "ratio",
35209
+ type: "number"
35210
+ }
35211
+ ]
35163
35212
  }
35164
35213
  }
35165
35214
  },
@@ -37778,6 +37827,92 @@ var patterns_registry_default = {
37778
37827
  ]
37779
37828
  }
37780
37829
  },
37830
+ editable: {
37831
+ types: [
37832
+ "boolean"
37833
+ ],
37834
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely",
37835
+ default: false
37836
+ },
37837
+ selectedId: {
37838
+ types: [
37839
+ "string"
37840
+ ],
37841
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none.",
37842
+ default: null
37843
+ },
37844
+ onSelect: {
37845
+ types: [
37846
+ "function"
37847
+ ],
37848
+ description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
37849
+ kind: "callback",
37850
+ callbackArgs: [
37851
+ {
37852
+ name: "id",
37853
+ type: "string"
37854
+ }
37855
+ ]
37856
+ },
37857
+ onMove: {
37858
+ types: [
37859
+ "function"
37860
+ ],
37861
+ description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
37862
+ kind: "callback",
37863
+ callbackArgs: [
37864
+ {
37865
+ name: "id",
37866
+ type: "string"
37867
+ },
37868
+ {
37869
+ name: "x",
37870
+ type: "number"
37871
+ },
37872
+ {
37873
+ name: "y",
37874
+ type: "number"
37875
+ }
37876
+ ]
37877
+ },
37878
+ selectEvent: {
37879
+ types: [
37880
+ "string"
37881
+ ],
37882
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
37883
+ kind: "event-ref",
37884
+ emitPayloadSchema: [
37885
+ {
37886
+ name: "id",
37887
+ type: "string",
37888
+ required: true
37889
+ }
37890
+ ]
37891
+ },
37892
+ moveEvent: {
37893
+ types: [
37894
+ "string"
37895
+ ],
37896
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
37897
+ kind: "event-ref",
37898
+ emitPayloadSchema: [
37899
+ {
37900
+ name: "id",
37901
+ type: "string",
37902
+ required: true
37903
+ },
37904
+ {
37905
+ name: "x",
37906
+ type: "number",
37907
+ required: true
37908
+ },
37909
+ {
37910
+ name: "y",
37911
+ type: "number",
37912
+ required: true
37913
+ }
37914
+ ]
37915
+ },
37781
37916
  camera: {
37782
37917
  types: [
37783
37918
  "string"
@@ -38953,6 +39088,12 @@ var patterns_registry_default = {
38953
39088
  ],
38954
39089
  description: "Background color (default transparent)."
38955
39090
  },
39091
+ fontFamily: {
39092
+ types: [
39093
+ "string"
39094
+ ],
39095
+ description: "Canvas text font family. Falls back to the theme's --font-family-body."
39096
+ },
38956
39097
  shapes: {
38957
39098
  types: [
38958
39099
  "array"
@@ -39077,6 +39218,11 @@ var patterns_registry_default = {
39077
39218
  "number"
39078
39219
  ]
39079
39220
  },
39221
+ fontFamily: {
39222
+ types: [
39223
+ "string"
39224
+ ]
39225
+ },
39080
39226
  align: {
39081
39227
  types: [
39082
39228
  "string"
@@ -40449,6 +40595,11 @@ var patterns_registry_default = {
40449
40595
  "number"
40450
40596
  ]
40451
40597
  },
40598
+ fontFamily: {
40599
+ types: [
40600
+ "string"
40601
+ ]
40602
+ },
40452
40603
  align: {
40453
40604
  types: [
40454
40605
  "string"
@@ -41724,6 +41875,11 @@ var patterns_registry_default = {
41724
41875
  "number"
41725
41876
  ]
41726
41877
  },
41878
+ fontFamily: {
41879
+ types: [
41880
+ "string"
41881
+ ]
41882
+ },
41727
41883
  align: {
41728
41884
  types: [
41729
41885
  "string"
@@ -42186,6 +42342,26 @@ var patterns_registry_default = {
42186
42342
  description: "Draw numeric labels on grid lines (default false).",
42187
42343
  default: false
42188
42344
  },
42345
+ tickLabelFontSize: {
42346
+ types: [
42347
+ "number"
42348
+ ],
42349
+ description: "Font size in px for axis tick labels (default 10).",
42350
+ default: 10
42351
+ },
42352
+ labelFontSize: {
42353
+ types: [
42354
+ "number"
42355
+ ],
42356
+ description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
42357
+ default: 12
42358
+ },
42359
+ fontFamily: {
42360
+ types: [
42361
+ "string"
42362
+ ],
42363
+ description: 'Canvas text font family. Accepts a known game-font key (e.g. "future-narrow") or a CSS font-family string.'
42364
+ },
42189
42365
  showCurveLabels: {
42190
42366
  types: [
42191
42367
  "boolean"
@@ -42763,6 +42939,11 @@ var patterns_registry_default = {
42763
42939
  "number"
42764
42940
  ]
42765
42941
  },
42942
+ fontFamily: {
42943
+ types: [
42944
+ "string"
42945
+ ]
42946
+ },
42766
42947
  align: {
42767
42948
  types: [
42768
42949
  "string"
@@ -44298,6 +44479,11 @@ var patterns_registry_default = {
44298
44479
  "number"
44299
44480
  ]
44300
44481
  },
44482
+ fontFamily: {
44483
+ types: [
44484
+ "string"
44485
+ ]
44486
+ },
44301
44487
  align: {
44302
44488
  types: [
44303
44489
  "string"
@@ -45507,6 +45693,11 @@ var patterns_registry_default = {
45507
45693
  "number"
45508
45694
  ]
45509
45695
  },
45696
+ fontFamily: {
45697
+ types: [
45698
+ "string"
45699
+ ]
45700
+ },
45510
45701
  align: {
45511
45702
  types: [
45512
45703
  "string"
@@ -48789,6 +48980,90 @@ var patterns_registry_default = {
48789
48980
  ]
48790
48981
  }
48791
48982
  },
48983
+ editable: {
48984
+ types: [
48985
+ "boolean"
48986
+ ],
48987
+ description: "--- Scene-edit mode (a game studio selecting/dragging drawables). Purely"
48988
+ },
48989
+ selectedId: {
48990
+ types: [
48991
+ "string"
48992
+ ],
48993
+ description: "The currently-selected drawable id (controlled); `null`/undefined = none."
48994
+ },
48995
+ onSelect: {
48996
+ types: [
48997
+ "function"
48998
+ ],
48999
+ description: "Fired on a click that changes selection \u2014 before `selectEvent`.",
49000
+ kind: "callback",
49001
+ callbackArgs: [
49002
+ {
49003
+ name: "id",
49004
+ type: "string"
49005
+ }
49006
+ ]
49007
+ },
49008
+ onMove: {
49009
+ types: [
49010
+ "function"
49011
+ ],
49012
+ description: "Fired once per drag gesture, on drop \u2014 before `moveEvent`.",
49013
+ kind: "callback",
49014
+ callbackArgs: [
49015
+ {
49016
+ name: "id",
49017
+ type: "string"
49018
+ },
49019
+ {
49020
+ name: "x",
49021
+ type: "number"
49022
+ },
49023
+ {
49024
+ name: "y",
49025
+ type: "number"
49026
+ }
49027
+ ]
49028
+ },
49029
+ selectEvent: {
49030
+ types: [
49031
+ "string"
49032
+ ],
49033
+ description: "Declarative selection event, `UI:{selectEvent} { id }`.",
49034
+ kind: "event-ref",
49035
+ emitPayloadSchema: [
49036
+ {
49037
+ name: "id",
49038
+ type: "string",
49039
+ required: true
49040
+ }
49041
+ ]
49042
+ },
49043
+ moveEvent: {
49044
+ types: [
49045
+ "string"
49046
+ ],
49047
+ description: "Declarative move event, `UI:{moveEvent} { id, x, y }` \u2014 fired once on drop.",
49048
+ kind: "event-ref",
49049
+ emitPayloadSchema: [
49050
+ {
49051
+ name: "id",
49052
+ type: "string",
49053
+ required: true
49054
+ },
49055
+ {
49056
+ name: "x",
49057
+ type: "number",
49058
+ required: true
49059
+ },
49060
+ {
49061
+ name: "y",
49062
+ type: "number",
49063
+ required: true
49064
+ }
49065
+ ]
49066
+ },
48792
49067
  children: {
48793
49068
  types: [
48794
49069
  "node"
@@ -50317,6 +50592,11 @@ var patterns_registry_default = {
50317
50592
  "number"
50318
50593
  ]
50319
50594
  },
50595
+ fontFamily: {
50596
+ types: [
50597
+ "string"
50598
+ ]
50599
+ },
50320
50600
  align: {
50321
50601
  types: [
50322
50602
  "string"
@@ -51566,6 +51846,658 @@ var patterns_registry_default = {
51566
51846
  description: "className prop"
51567
51847
  }
51568
51848
  }
51849
+ },
51850
+ "floating-toolbar": {
51851
+ type: "floating-toolbar",
51852
+ category: "component",
51853
+ tier: "molecules",
51854
+ family: "core",
51855
+ description: "FloatingToolbar component",
51856
+ suggestedFor: [
51857
+ "floating",
51858
+ "toolbar",
51859
+ "floating toolbar"
51860
+ ],
51861
+ typicalSize: "medium",
51862
+ propsSchema: {
51863
+ items: {
51864
+ types: [
51865
+ "array"
51866
+ ],
51867
+ description: "Tool items rendered as icon buttons",
51868
+ required: true,
51869
+ items: {
51870
+ types: [
51871
+ "object"
51872
+ ],
51873
+ properties: {
51874
+ id: {
51875
+ types: [
51876
+ "string"
51877
+ ]
51878
+ },
51879
+ icon: {
51880
+ types: [
51881
+ "icon",
51882
+ "string"
51883
+ ]
51884
+ },
51885
+ label: {
51886
+ types: [
51887
+ "string"
51888
+ ]
51889
+ },
51890
+ event: {
51891
+ types: [
51892
+ "string"
51893
+ ]
51894
+ },
51895
+ action: {
51896
+ types: [
51897
+ "string"
51898
+ ]
51899
+ },
51900
+ actionPayload: {
51901
+ types: [
51902
+ "object"
51903
+ ],
51904
+ freeform: true,
51905
+ eventPayloadBrand: true
51906
+ },
51907
+ active: {
51908
+ types: [
51909
+ "boolean"
51910
+ ]
51911
+ },
51912
+ disabled: {
51913
+ types: [
51914
+ "boolean"
51915
+ ]
51916
+ },
51917
+ testId: {
51918
+ types: [
51919
+ "string"
51920
+ ]
51921
+ }
51922
+ },
51923
+ required: [
51924
+ "id",
51925
+ "icon",
51926
+ "label"
51927
+ ]
51928
+ }
51929
+ },
51930
+ position: {
51931
+ types: [
51932
+ "string"
51933
+ ],
51934
+ description: "Strip position within the app frame.",
51935
+ enumValues: [
51936
+ "bottom-center",
51937
+ "bottom-left",
51938
+ "bottom-right"
51939
+ ],
51940
+ default: "bottom-center"
51941
+ },
51942
+ children: {
51943
+ types: [
51944
+ "node"
51945
+ ],
51946
+ description: "Custom cells appended after the items, separated by a divider"
51947
+ },
51948
+ className: {
51949
+ types: [
51950
+ "string"
51951
+ ],
51952
+ description: "Additional CSS classes on the positioned root"
51953
+ }
51954
+ }
51955
+ },
51956
+ "dock-layout": {
51957
+ type: "dock-layout",
51958
+ category: "layout",
51959
+ tier: "organisms",
51960
+ family: "core",
51961
+ description: "DockLayout component",
51962
+ suggestedFor: [
51963
+ "dock",
51964
+ "layout",
51965
+ "dock layout"
51966
+ ],
51967
+ typicalSize: "large",
51968
+ propsSchema: {
51969
+ rail: {
51970
+ types: [
51971
+ "node"
51972
+ ],
51973
+ description: "Fixed-width far-left vertical strip (e.g. an icon nav rail)."
51974
+ },
51975
+ sidebar: {
51976
+ types: [
51977
+ "node"
51978
+ ],
51979
+ description: "Collapsible, resizable left sidebar."
51980
+ },
51981
+ main: {
51982
+ types: [
51983
+ "node"
51984
+ ],
51985
+ description: "Required center region.",
51986
+ required: true
51987
+ },
51988
+ bottomPanel: {
51989
+ types: [
51990
+ "node"
51991
+ ],
51992
+ description: "Collapsible, resizable-height bottom panel."
51993
+ },
51994
+ statusBar: {
51995
+ types: [
51996
+ "node"
51997
+ ],
51998
+ description: "Slim strip pinned to the bottom of the frame, below the bottom panel."
51999
+ },
52000
+ secondarySidebar: {
52001
+ types: [
52002
+ "node"
52003
+ ],
52004
+ description: "Collapsible right sidebar."
52005
+ },
52006
+ railWidth: {
52007
+ types: [
52008
+ "number"
52009
+ ],
52010
+ description: "Width of `rail` in pixels. @default 56",
52011
+ default: 56
52012
+ },
52013
+ secondarySidebarWidth: {
52014
+ types: [
52015
+ "number"
52016
+ ],
52017
+ description: "Width of `secondarySidebar` in pixels (fixed \u2014 not resizable). @default 280",
52018
+ default: 280
52019
+ },
52020
+ sidebarCollapsed: {
52021
+ types: [
52022
+ "boolean"
52023
+ ],
52024
+ description: "Whether `sidebar` is collapsed. @default false",
52025
+ default: false
52026
+ },
52027
+ onSidebarCollapsedChange: {
52028
+ types: [
52029
+ "function"
52030
+ ],
52031
+ description: "onSidebarCollapsedChange prop",
52032
+ kind: "callback",
52033
+ callbackArgs: [
52034
+ {
52035
+ name: "collapsed",
52036
+ type: "boolean"
52037
+ }
52038
+ ]
52039
+ },
52040
+ sidebarWidth: {
52041
+ types: [
52042
+ "number"
52043
+ ],
52044
+ description: "Sidebar size as a SplitPane ratio (0-100, percentage of the sidebar/main split). @default 20",
52045
+ default: 20
52046
+ },
52047
+ onSidebarWidthChange: {
52048
+ types: [
52049
+ "function"
52050
+ ],
52051
+ description: "onSidebarWidthChange prop",
52052
+ kind: "callback",
52053
+ callbackArgs: [
52054
+ {
52055
+ name: "width",
52056
+ type: "number"
52057
+ }
52058
+ ]
52059
+ },
52060
+ sidebarMinSize: {
52061
+ types: [
52062
+ "number"
52063
+ ],
52064
+ description: "Minimum sidebar size in pixels, forwarded to SplitPane's `minSize`. @default 160",
52065
+ default: 160
52066
+ },
52067
+ bottomPanelCollapsed: {
52068
+ types: [
52069
+ "boolean"
52070
+ ],
52071
+ description: "Whether `bottomPanel` is collapsed. @default false",
52072
+ default: false
52073
+ },
52074
+ onBottomPanelCollapsedChange: {
52075
+ types: [
52076
+ "function"
52077
+ ],
52078
+ description: "onBottomPanelCollapsedChange prop",
52079
+ kind: "callback",
52080
+ callbackArgs: [
52081
+ {
52082
+ name: "collapsed",
52083
+ type: "boolean"
52084
+ }
52085
+ ]
52086
+ },
52087
+ bottomPanelHeight: {
52088
+ types: [
52089
+ "number"
52090
+ ],
52091
+ description: "Bottom panel size as a SplitPane ratio (0-100, percentage given to the panel). @default 30",
52092
+ default: 30
52093
+ },
52094
+ onBottomPanelHeightChange: {
52095
+ types: [
52096
+ "function"
52097
+ ],
52098
+ description: "onBottomPanelHeightChange prop",
52099
+ kind: "callback",
52100
+ callbackArgs: [
52101
+ {
52102
+ name: "height",
52103
+ type: "number"
52104
+ }
52105
+ ]
52106
+ },
52107
+ bottomPanelMinSize: {
52108
+ types: [
52109
+ "number"
52110
+ ],
52111
+ description: "Minimum bottom panel size in pixels, forwarded to SplitPane's `minSize`. @default 120",
52112
+ default: 120
52113
+ },
52114
+ secondarySidebarCollapsed: {
52115
+ types: [
52116
+ "boolean"
52117
+ ],
52118
+ description: "Whether `secondarySidebar` is collapsed. @default false",
52119
+ default: false
52120
+ },
52121
+ onSecondarySidebarCollapsedChange: {
52122
+ types: [
52123
+ "function"
52124
+ ],
52125
+ description: "onSecondarySidebarCollapsedChange prop",
52126
+ kind: "callback",
52127
+ callbackArgs: [
52128
+ {
52129
+ name: "collapsed",
52130
+ type: "boolean"
52131
+ }
52132
+ ]
52133
+ },
52134
+ className: {
52135
+ types: [
52136
+ "string"
52137
+ ],
52138
+ description: "Additional CSS classes on the root frame."
52139
+ },
52140
+ railClassName: {
52141
+ types: [
52142
+ "string"
52143
+ ],
52144
+ description: "railClassName prop"
52145
+ },
52146
+ sidebarClassName: {
52147
+ types: [
52148
+ "string"
52149
+ ],
52150
+ description: "sidebarClassName prop"
52151
+ },
52152
+ mainClassName: {
52153
+ types: [
52154
+ "string"
52155
+ ],
52156
+ description: "mainClassName prop"
52157
+ },
52158
+ bottomPanelClassName: {
52159
+ types: [
52160
+ "string"
52161
+ ],
52162
+ description: "bottomPanelClassName prop"
52163
+ },
52164
+ statusBarClassName: {
52165
+ types: [
52166
+ "string"
52167
+ ],
52168
+ description: "statusBarClassName prop"
52169
+ },
52170
+ secondarySidebarClassName: {
52171
+ types: [
52172
+ "string"
52173
+ ],
52174
+ description: "secondarySidebarClassName prop"
52175
+ }
52176
+ }
52177
+ },
52178
+ "command-palette": {
52179
+ type: "command-palette",
52180
+ category: "component",
52181
+ tier: "molecules",
52182
+ family: "core",
52183
+ description: "CommandPalette component",
52184
+ suggestedFor: [
52185
+ "command",
52186
+ "palette",
52187
+ "command palette"
52188
+ ],
52189
+ typicalSize: "medium",
52190
+ propsSchema: {
52191
+ open: {
52192
+ types: [
52193
+ "boolean"
52194
+ ],
52195
+ description: "Whether the palette overlay is open",
52196
+ required: true
52197
+ },
52198
+ onOpenChange: {
52199
+ types: [
52200
+ "function"
52201
+ ],
52202
+ description: "Called to open/close the overlay (Escape, overlay click, or a selection)",
52203
+ required: true,
52204
+ kind: "callback",
52205
+ callbackArgs: [
52206
+ {
52207
+ name: "open",
52208
+ type: "boolean"
52209
+ }
52210
+ ]
52211
+ },
52212
+ commands: {
52213
+ types: [
52214
+ "array"
52215
+ ],
52216
+ description: "Commands listed in the palette, filtered as the user types",
52217
+ required: true,
52218
+ items: {
52219
+ types: [
52220
+ "object"
52221
+ ],
52222
+ properties: {
52223
+ id: {
52224
+ types: [
52225
+ "string"
52226
+ ]
52227
+ },
52228
+ label: {
52229
+ types: [
52230
+ "string"
52231
+ ]
52232
+ },
52233
+ icon: {
52234
+ types: [
52235
+ "icon",
52236
+ "string"
52237
+ ]
52238
+ },
52239
+ shortcut: {
52240
+ types: [
52241
+ "string"
52242
+ ]
52243
+ },
52244
+ keywords: {
52245
+ types: [
52246
+ "array"
52247
+ ],
52248
+ items: {
52249
+ types: [
52250
+ "string"
52251
+ ]
52252
+ }
52253
+ },
52254
+ group: {
52255
+ types: [
52256
+ "string"
52257
+ ]
52258
+ },
52259
+ disabled: {
52260
+ types: [
52261
+ "boolean"
52262
+ ]
52263
+ },
52264
+ event: {
52265
+ types: [
52266
+ "string"
52267
+ ]
52268
+ },
52269
+ action: {
52270
+ types: [
52271
+ "string"
52272
+ ]
52273
+ },
52274
+ actionPayload: {
52275
+ types: [
52276
+ "object"
52277
+ ],
52278
+ freeform: true,
52279
+ eventPayloadBrand: true
52280
+ }
52281
+ },
52282
+ required: [
52283
+ "id",
52284
+ "label"
52285
+ ]
52286
+ }
52287
+ },
52288
+ onSelect: {
52289
+ types: [
52290
+ "function"
52291
+ ],
52292
+ description: "Called with the selected command (click, or Enter on the highlighted row)",
52293
+ kind: "callback",
52294
+ callbackArgs: [
52295
+ {
52296
+ name: "command",
52297
+ type: "object",
52298
+ schema: {
52299
+ types: [
52300
+ "object"
52301
+ ],
52302
+ properties: {
52303
+ id: {
52304
+ types: [
52305
+ "string"
52306
+ ]
52307
+ },
52308
+ label: {
52309
+ types: [
52310
+ "string"
52311
+ ]
52312
+ },
52313
+ icon: {
52314
+ types: [
52315
+ "icon",
52316
+ "string"
52317
+ ]
52318
+ },
52319
+ shortcut: {
52320
+ types: [
52321
+ "string"
52322
+ ]
52323
+ },
52324
+ keywords: {
52325
+ types: [
52326
+ "array"
52327
+ ],
52328
+ items: {
52329
+ types: [
52330
+ "string"
52331
+ ]
52332
+ }
52333
+ },
52334
+ group: {
52335
+ types: [
52336
+ "string"
52337
+ ]
52338
+ },
52339
+ disabled: {
52340
+ types: [
52341
+ "boolean"
52342
+ ]
52343
+ },
52344
+ event: {
52345
+ types: [
52346
+ "string"
52347
+ ]
52348
+ },
52349
+ action: {
52350
+ types: [
52351
+ "string"
52352
+ ]
52353
+ },
52354
+ actionPayload: {
52355
+ types: [
52356
+ "object"
52357
+ ],
52358
+ freeform: true,
52359
+ eventPayloadBrand: true
52360
+ }
52361
+ },
52362
+ required: [
52363
+ "id",
52364
+ "label"
52365
+ ]
52366
+ }
52367
+ }
52368
+ ]
52369
+ },
52370
+ placeholder: {
52371
+ types: [
52372
+ "string"
52373
+ ],
52374
+ description: "Search field placeholder. Consumers own i18n \u2014 plain string prop, no package-internal translation (matches FloatingToolbar's convention).",
52375
+ default: "Type a command..."
52376
+ },
52377
+ emptyLabel: {
52378
+ types: [
52379
+ "string"
52380
+ ],
52381
+ description: "Label shown when no command matches the query",
52382
+ default: "No matching commands"
52383
+ },
52384
+ className: {
52385
+ types: [
52386
+ "string"
52387
+ ],
52388
+ description: "Additional CSS classes on the overlay's dialog"
52389
+ }
52390
+ }
52391
+ },
52392
+ "game-audio-cue": {
52393
+ type: "game-audio-cue",
52394
+ category: "game",
52395
+ tier: "atoms",
52396
+ family: "game",
52397
+ description: "GameAudioCue component",
52398
+ suggestedFor: [
52399
+ "game",
52400
+ "audio",
52401
+ "cue",
52402
+ "game audio cue"
52403
+ ],
52404
+ typicalSize: "small",
52405
+ propsSchema: {
52406
+ cue: {
52407
+ types: [
52408
+ "string"
52409
+ ],
52410
+ description: "Manifest key played as a one-shot SFX each time `cueSeq` advances."
52411
+ },
52412
+ cueSeq: {
52413
+ types: [
52414
+ "number"
52415
+ ],
52416
+ description: "Monotonically increasing counter \u2014 bumping it re-triggers `cue`."
52417
+ },
52418
+ music: {
52419
+ types: [
52420
+ "string"
52421
+ ],
52422
+ description: "Manifest key to crossfade to as looping background music; unset/empty stops music."
52423
+ },
52424
+ muted: {
52425
+ types: [
52426
+ "boolean"
52427
+ ],
52428
+ description: "Muted state, owned externally and mirrored into the hook."
52429
+ },
52430
+ volume: {
52431
+ types: [
52432
+ "number"
52433
+ ],
52434
+ description: "Master volume 0-1, owned externally and mirrored into the hook."
52435
+ },
52436
+ manifest: {
52437
+ types: [
52438
+ "object"
52439
+ ],
52440
+ description: "Sound manifest \u2014 keys mapped to sound definitions (path, volume, loop, ...).",
52441
+ required: true,
52442
+ mapValue: {
52443
+ types: [
52444
+ "object"
52445
+ ],
52446
+ properties: {
52447
+ path: {
52448
+ types: [
52449
+ "string",
52450
+ "array"
52451
+ ],
52452
+ items: {
52453
+ types: [
52454
+ "string"
52455
+ ]
52456
+ }
52457
+ },
52458
+ volume: {
52459
+ types: [
52460
+ "number"
52461
+ ]
52462
+ },
52463
+ loop: {
52464
+ types: [
52465
+ "boolean"
52466
+ ]
52467
+ },
52468
+ poolSize: {
52469
+ types: [
52470
+ "number"
52471
+ ]
52472
+ },
52473
+ autostart: {
52474
+ types: [
52475
+ "boolean"
52476
+ ]
52477
+ },
52478
+ crossfade: {
52479
+ types: [
52480
+ "boolean"
52481
+ ]
52482
+ },
52483
+ crossfadeDurationMs: {
52484
+ types: [
52485
+ "number"
52486
+ ]
52487
+ }
52488
+ },
52489
+ required: [
52490
+ "path"
52491
+ ]
52492
+ }
52493
+ },
52494
+ baseUrl: {
52495
+ types: [
52496
+ "string"
52497
+ ],
52498
+ description: "Base URL prepended to every manifest path."
52499
+ }
52500
+ }
51569
52501
  }
51570
52502
  },
51571
52503
  categories: [
@@ -51591,7 +52523,7 @@ var patterns_registry_default = {
51591
52523
  // src/patterns/integrators-registry.json
51592
52524
  var integrators_registry_default = {
51593
52525
  version: "1.0.0",
51594
- exportedAt: "2026-08-29T08:09:09.100Z",
52526
+ exportedAt: "2026-09-03T18:48:24.308Z",
51595
52527
  integrators: {
51596
52528
  github: {
51597
52529
  name: "github",
@@ -51600,25 +52532,25 @@ var integrators_registry_default = {
51600
52532
  actions: [
51601
52533
  {
51602
52534
  name: "cloneRepo",
51603
- description: "",
52535
+ description: "Clone a repository via the git CLI into a local target directory, using the configured token for auth.",
51604
52536
  params: [
51605
52537
  {
51606
52538
  name: "repoUrl",
51607
52539
  type: "string",
51608
52540
  required: true,
51609
- description: ""
52541
+ description: "HTTPS clone URL, e.g. https://github.com/owner/repo. Owner/repo are parsed from it when not preconfigured."
51610
52542
  },
51611
52543
  {
51612
52544
  name: "targetDir",
51613
52545
  type: "string",
51614
52546
  required: true,
51615
- description: ""
52547
+ description: "Local directory to clone into."
51616
52548
  },
51617
52549
  {
51618
52550
  name: "branch",
51619
52551
  type: "string",
51620
52552
  required: false,
51621
- description: ""
52553
+ description: "Branch to check out after cloning; defaults to the repo's default branch."
51622
52554
  }
51623
52555
  ],
51624
52556
  responseShape: {
@@ -51627,19 +52559,19 @@ var integrators_registry_default = {
51627
52559
  },
51628
52560
  {
51629
52561
  name: "createBranch",
51630
- description: "",
52562
+ description: "Create a new local branch via the git CLI in the configured working directory.",
51631
52563
  params: [
51632
52564
  {
51633
52565
  name: "branchName",
51634
52566
  type: "string",
51635
52567
  required: true,
51636
- description: ""
52568
+ description: "Name of the branch to create."
51637
52569
  },
51638
52570
  {
51639
52571
  name: "baseBranch",
51640
52572
  type: "string",
51641
52573
  required: false,
51642
- description: ""
52574
+ description: "Branch to branch from; defaults to the current branch."
51643
52575
  }
51644
52576
  ],
51645
52577
  responseShape: {
@@ -51648,19 +52580,19 @@ var integrators_registry_default = {
51648
52580
  },
51649
52581
  {
51650
52582
  name: "commit",
51651
- description: "",
52583
+ description: "Commit staged (or given) changes via the git CLI in the configured working directory.",
51652
52584
  params: [
51653
52585
  {
51654
52586
  name: "message",
51655
52587
  type: "string",
51656
52588
  required: true,
51657
- description: ""
52589
+ description: "Commit message."
51658
52590
  },
51659
52591
  {
51660
52592
  name: "files",
51661
52593
  type: "string[]",
51662
52594
  required: false,
51663
- description: ""
52595
+ description: "Specific files to commit; when omitted, all changes are committed."
51664
52596
  }
51665
52597
  ],
51666
52598
  responseShape: {
@@ -51669,19 +52601,19 @@ var integrators_registry_default = {
51669
52601
  },
51670
52602
  {
51671
52603
  name: "push",
51672
- description: "",
52604
+ description: "Push a local branch to the remote via the git CLI, using the configured token for auth.",
51673
52605
  params: [
51674
52606
  {
51675
52607
  name: "branchName",
51676
52608
  type: "string",
51677
52609
  required: true,
51678
- description: ""
52610
+ description: "Branch name to push."
51679
52611
  },
51680
52612
  {
51681
52613
  name: "force",
51682
52614
  type: "boolean",
51683
52615
  required: false,
51684
- description: ""
52616
+ description: "Force-push (overwrites remote history); never set true in an agent context."
51685
52617
  }
51686
52618
  ],
51687
52619
  responseShape: {
@@ -51690,37 +52622,37 @@ var integrators_registry_default = {
51690
52622
  },
51691
52623
  {
51692
52624
  name: "createPR",
51693
- description: "",
52625
+ description: "Open a pull request via the GitHub REST API.",
51694
52626
  params: [
51695
52627
  {
51696
52628
  name: "title",
51697
52629
  type: "string",
51698
52630
  required: true,
51699
- description: ""
52631
+ description: "Pull request title."
51700
52632
  },
51701
52633
  {
51702
52634
  name: "body",
51703
52635
  type: "string",
51704
52636
  required: true,
51705
- description: ""
52637
+ description: "Pull request description body."
51706
52638
  },
51707
52639
  {
51708
52640
  name: "baseBranch",
51709
52641
  type: "string",
51710
52642
  required: true,
51711
- description: ""
52643
+ description: "Branch the PR merges into, e.g. main."
51712
52644
  },
51713
52645
  {
51714
52646
  name: "headBranch",
51715
52647
  type: "string",
51716
52648
  required: true,
51717
- description: ""
52649
+ description: "Branch the PR merges from (the feature branch)."
51718
52650
  },
51719
52651
  {
51720
52652
  name: "draft",
51721
52653
  type: "boolean",
51722
52654
  required: false,
51723
- description: ""
52655
+ description: "Open as a draft PR instead of ready-for-review."
51724
52656
  }
51725
52657
  ],
51726
52658
  responseShape: {
@@ -51731,55 +52663,93 @@ var integrators_registry_default = {
51731
52663
  },
51732
52664
  {
51733
52665
  name: "getPRComments",
51734
- description: "",
52666
+ description: "List review comments on a pull request via the GitHub REST API.",
51735
52667
  params: [
51736
52668
  {
51737
52669
  name: "prNumber",
51738
52670
  type: "number",
51739
52671
  required: true,
51740
- description: ""
52672
+ description: "Pull request number."
51741
52673
  }
51742
52674
  ],
51743
52675
  responseShape: {
51744
- comments: "array"
52676
+ comments: {
52677
+ type: "array",
52678
+ items: {
52679
+ type: "object",
52680
+ properties: {
52681
+ id: {
52682
+ type: "number",
52683
+ required: true
52684
+ },
52685
+ body: {
52686
+ type: "string",
52687
+ required: true
52688
+ },
52689
+ user: {
52690
+ type: "string",
52691
+ required: true
52692
+ }
52693
+ }
52694
+ }
52695
+ }
51745
52696
  }
51746
52697
  },
51747
52698
  {
51748
52699
  name: "listIssues",
51749
- description: "",
52700
+ description: "List issues on the configured repository via the GitHub REST API.",
51750
52701
  params: [
51751
52702
  {
51752
52703
  name: "state",
51753
52704
  type: "string",
51754
52705
  required: false,
51755
- description: ""
52706
+ description: "Issue state filter: 'open', 'closed', or 'all'; defaults to open."
51756
52707
  },
51757
52708
  {
51758
52709
  name: "labels",
51759
52710
  type: "string[]",
51760
52711
  required: false,
51761
- description: ""
52712
+ description: "Only issues carrying all of these labels."
51762
52713
  },
51763
52714
  {
51764
52715
  name: "per_page",
51765
52716
  type: "number",
51766
52717
  required: false,
51767
- description: ""
52718
+ description: "Page size for the GitHub API request."
51768
52719
  }
51769
52720
  ],
51770
52721
  responseShape: {
51771
- issues: "array"
52722
+ issues: {
52723
+ type: "array",
52724
+ items: {
52725
+ type: "object",
52726
+ properties: {
52727
+ number: {
52728
+ type: "number",
52729
+ required: true
52730
+ },
52731
+ title: {
52732
+ type: "string",
52733
+ required: true
52734
+ },
52735
+ state: {
52736
+ type: "string",
52737
+ required: true
52738
+ }
52739
+ }
52740
+ }
52741
+ }
51772
52742
  }
51773
52743
  },
51774
52744
  {
51775
52745
  name: "getIssue",
51776
- description: "",
52746
+ description: "Fetch a single issue's details via the GitHub REST API.",
51777
52747
  params: [
51778
52748
  {
51779
52749
  name: "issueNumber",
51780
52750
  type: "number",
51781
52751
  required: true,
51782
- description: ""
52752
+ description: "Issue number."
51783
52753
  }
51784
52754
  ],
51785
52755
  responseShape: {
@@ -51791,31 +52761,31 @@ var integrators_registry_default = {
51791
52761
  },
51792
52762
  {
51793
52763
  name: "getFile",
51794
- description: "",
52764
+ description: "Read a file's content from a repository at a given ref (declared intent \u2014 dispatch is being wired).",
51795
52765
  params: [
51796
52766
  {
51797
52767
  name: "owner",
51798
52768
  type: "string",
51799
52769
  required: true,
51800
- description: ""
52770
+ description: "Repository owner (user or org)."
51801
52771
  },
51802
52772
  {
51803
52773
  name: "repo",
51804
52774
  type: "string",
51805
52775
  required: true,
51806
- description: ""
52776
+ description: "Repository name."
51807
52777
  },
51808
52778
  {
51809
52779
  name: "path",
51810
52780
  type: "string",
51811
52781
  required: true,
51812
- description: ""
52782
+ description: "File path within the repository."
51813
52783
  },
51814
52784
  {
51815
52785
  name: "ref",
51816
52786
  type: "string",
51817
52787
  required: false,
51818
- description: ""
52788
+ description: "Branch, tag, or commit SHA to read from; defaults to the default branch."
51819
52789
  }
51820
52790
  ],
51821
52791
  responseShape: {
@@ -51827,76 +52797,99 @@ var integrators_registry_default = {
51827
52797
  },
51828
52798
  {
51829
52799
  name: "listCommits",
51830
- description: "",
52800
+ description: "List commits on a repository, optionally filtered by file path (declared intent \u2014 dispatch is being wired).",
51831
52801
  params: [
51832
52802
  {
51833
52803
  name: "owner",
51834
52804
  type: "string",
51835
52805
  required: true,
51836
- description: ""
52806
+ description: "Repository owner (user or org)."
51837
52807
  },
51838
52808
  {
51839
52809
  name: "repo",
51840
52810
  type: "string",
51841
52811
  required: true,
51842
- description: ""
52812
+ description: "Repository name."
51843
52813
  },
51844
52814
  {
51845
52815
  name: "path",
51846
52816
  type: "string",
51847
52817
  required: false,
51848
- description: ""
52818
+ description: "Only commits touching this file path."
51849
52819
  },
51850
52820
  {
51851
52821
  name: "ref",
51852
52822
  type: "string",
51853
52823
  required: false,
51854
- description: ""
52824
+ description: "Branch, tag, or commit SHA to start from; defaults to the default branch."
51855
52825
  },
51856
52826
  {
51857
52827
  name: "per_page",
51858
52828
  type: "number",
51859
52829
  required: false,
51860
- description: ""
52830
+ description: "Page size for the GitHub API request."
51861
52831
  }
51862
52832
  ],
51863
52833
  responseShape: {
51864
- commits: "array"
52834
+ commits: {
52835
+ type: "array",
52836
+ items: {
52837
+ type: "object",
52838
+ properties: {
52839
+ sha: {
52840
+ type: "string",
52841
+ required: true
52842
+ },
52843
+ message: {
52844
+ type: "string",
52845
+ required: true
52846
+ },
52847
+ author: {
52848
+ type: "string",
52849
+ required: true
52850
+ },
52851
+ date: {
52852
+ type: "string",
52853
+ required: true
52854
+ }
52855
+ }
52856
+ }
52857
+ }
51865
52858
  }
51866
52859
  },
51867
52860
  {
51868
52861
  name: "createIssue",
51869
- description: "",
52862
+ description: "Open a new issue on a repository (declared intent \u2014 dispatch is being wired).",
51870
52863
  params: [
51871
52864
  {
51872
52865
  name: "owner",
51873
52866
  type: "string",
51874
52867
  required: true,
51875
- description: ""
52868
+ description: "Repository owner (user or org)."
51876
52869
  },
51877
52870
  {
51878
52871
  name: "repo",
51879
52872
  type: "string",
51880
52873
  required: true,
51881
- description: ""
52874
+ description: "Repository name."
51882
52875
  },
51883
52876
  {
51884
52877
  name: "title",
51885
52878
  type: "string",
51886
52879
  required: true,
51887
- description: ""
52880
+ description: "Issue title."
51888
52881
  },
51889
52882
  {
51890
52883
  name: "body",
51891
52884
  type: "string",
51892
52885
  required: false,
51893
- description: ""
52886
+ description: "Issue body/description."
51894
52887
  },
51895
52888
  {
51896
52889
  name: "labels",
51897
52890
  type: "string[]",
51898
52891
  required: false,
51899
- description: ""
52892
+ description: "Labels to apply to the new issue."
51900
52893
  }
51901
52894
  ],
51902
52895
  responseShape: {
@@ -51914,25 +52907,25 @@ var integrators_registry_default = {
51914
52907
  actions: [
51915
52908
  {
51916
52909
  name: "createPaymentIntent",
51917
- description: "",
52910
+ description: "Create a Stripe PaymentIntent for a one-off charge.",
51918
52911
  params: [
51919
52912
  {
51920
52913
  name: "amount",
51921
52914
  type: "number",
51922
52915
  required: true,
51923
- description: ""
52916
+ description: "Charge amount in the currency's smallest unit (e.g. cents for USD)."
51924
52917
  },
51925
52918
  {
51926
52919
  name: "currency",
51927
52920
  type: "string",
51928
52921
  required: true,
51929
- description: ""
52922
+ description: "ISO 4217 currency code, e.g. usd."
51930
52923
  },
51931
52924
  {
51932
52925
  name: "metadata",
51933
52926
  type: "object",
51934
52927
  required: false,
51935
- description: ""
52928
+ description: "Arbitrary key-value tags attached to the PaymentIntent (string values only)."
51936
52929
  }
51937
52930
  ],
51938
52931
  responseShape: {
@@ -51941,17 +52934,18 @@ var integrators_registry_default = {
51941
52934
  status: "string",
51942
52935
  amount: "number",
51943
52936
  currency: "string"
51944
- }
52937
+ },
52938
+ synonyms: "charge, pay"
51945
52939
  },
51946
52940
  {
51947
52941
  name: "confirmPayment",
51948
- description: "",
52942
+ description: "Confirm a previously created PaymentIntent, attempting to complete the charge.",
51949
52943
  params: [
51950
52944
  {
51951
52945
  name: "paymentIntentId",
51952
52946
  type: "string",
51953
52947
  required: true,
51954
- description: ""
52948
+ description: "The PaymentIntent id returned by createPaymentIntent."
51955
52949
  }
51956
52950
  ],
51957
52951
  responseShape: {
@@ -51961,19 +52955,19 @@ var integrators_registry_default = {
51961
52955
  },
51962
52956
  {
51963
52957
  name: "refund",
51964
- description: "",
52958
+ description: "Refund a charged PaymentIntent, in full or in part.",
51965
52959
  params: [
51966
52960
  {
51967
52961
  name: "paymentIntentId",
51968
52962
  type: "string",
51969
52963
  required: true,
51970
- description: ""
52964
+ description: "The PaymentIntent id to refund."
51971
52965
  },
51972
52966
  {
51973
52967
  name: "amount",
51974
52968
  type: "number",
51975
52969
  required: false,
51976
- description: ""
52970
+ description: "Amount to refund in the currency's smallest unit; omit for a full refund."
51977
52971
  }
51978
52972
  ],
51979
52973
  responseShape: {
@@ -51991,65 +52985,85 @@ var integrators_registry_default = {
51991
52985
  actions: [
51992
52986
  {
51993
52987
  name: "generate",
51994
- description: "",
52988
+ description: "Generate free-form text from a prompt via the configured LLM provider (default 'You are a helpful assistant.' system prompt).",
51995
52989
  params: [
51996
52990
  {
51997
52991
  name: "userPrompt",
51998
52992
  type: "string",
51999
52993
  required: true,
52000
- description: ""
52994
+ description: "The user/task prompt sent to the model."
52001
52995
  },
52002
52996
  {
52003
52997
  name: "systemPrompt",
52004
52998
  type: "string",
52005
52999
  required: false,
52006
- description: ""
53000
+ description: "System prompt steering the model's behavior; defaults to a generic assistant prompt."
52007
53001
  },
52008
53002
  {
52009
53003
  name: "model",
52010
53004
  type: "string",
52011
53005
  required: false,
52012
- description: ""
53006
+ description: "Model id override; when set, a fresh client is built for this call instead of the shared one."
52013
53007
  },
52014
53008
  {
52015
53009
  name: "temperature",
52016
53010
  type: "number",
52017
53011
  required: false,
52018
- description: ""
53012
+ description: "Sampling temperature (0-1ish, provider-dependent); higher is more random."
52019
53013
  },
52020
53014
  {
52021
53015
  name: "maxTokens",
52022
53016
  type: "number",
52023
53017
  required: false,
52024
- description: ""
53018
+ description: "Maximum tokens to generate; defaults to 1024."
52025
53019
  }
52026
53020
  ],
52027
53021
  responseShape: {
52028
53022
  content: "string",
52029
- usage: "object"
53023
+ usage: {
53024
+ type: "object",
53025
+ properties: {
53026
+ promptTokens: {
53027
+ type: "number",
53028
+ required: false
53029
+ },
53030
+ completionTokens: {
53031
+ type: "number",
53032
+ required: false
53033
+ },
53034
+ totalTokens: {
53035
+ type: "number",
53036
+ required: false
53037
+ },
53038
+ tokens: {
53039
+ type: "number",
53040
+ required: false
53041
+ }
53042
+ }
53043
+ }
52030
53044
  }
52031
53045
  },
52032
53046
  {
52033
53047
  name: "classify",
52034
- description: "",
53048
+ description: "Classify text into exactly one of a caller-supplied category list, with a confidence score and reasoning.",
52035
53049
  params: [
52036
53050
  {
52037
53051
  name: "text",
52038
53052
  type: "string",
52039
53053
  required: true,
52040
- description: ""
53054
+ description: "Text to classify."
52041
53055
  },
52042
53056
  {
52043
53057
  name: "categories",
52044
53058
  type: "string[]",
52045
53059
  required: true,
52046
- description: ""
53060
+ description: "Closed set of category labels the model must choose from."
52047
53061
  },
52048
53062
  {
52049
53063
  name: "model",
52050
53064
  type: "string",
52051
53065
  required: false,
52052
- description: ""
53066
+ description: "Model id override."
52053
53067
  }
52054
53068
  ],
52055
53069
  responseShape: {
@@ -52060,56 +53074,56 @@ var integrators_registry_default = {
52060
53074
  },
52061
53075
  {
52062
53076
  name: "extract",
52063
- description: "",
53077
+ description: "Extract structured data from text according to a JSON-schema-shaped description; returned data is not validated against the schema.",
52064
53078
  params: [
52065
53079
  {
52066
53080
  name: "text",
52067
53081
  type: "string",
52068
53082
  required: true,
52069
- description: ""
53083
+ description: "Source text to extract data from."
52070
53084
  },
52071
53085
  {
52072
53086
  name: "schema",
52073
53087
  type: "IntegrationParams",
52074
53088
  required: true,
52075
- description: ""
53089
+ description: "JSON-schema-like description of the fields to extract; passed to the model as a prompt, not enforced structurally."
52076
53090
  },
52077
53091
  {
52078
53092
  name: "model",
52079
53093
  type: "string",
52080
53094
  required: false,
52081
- description: ""
53095
+ description: "Model id override."
52082
53096
  }
52083
53097
  ],
52084
53098
  responseShape: {}
52085
53099
  },
52086
53100
  {
52087
53101
  name: "summarize",
52088
- description: "",
53102
+ description: "Summarize text, optionally constrained by length and style, returning a summary plus key points.",
52089
53103
  params: [
52090
53104
  {
52091
53105
  name: "text",
52092
53106
  type: "string",
52093
53107
  required: true,
52094
- description: ""
53108
+ description: "Text to summarize."
52095
53109
  },
52096
53110
  {
52097
53111
  name: "maxLength",
52098
53112
  type: "number",
52099
53113
  required: false,
52100
- description: ""
53114
+ description: "Target maximum summary length in words."
52101
53115
  },
52102
53116
  {
52103
53117
  name: "style",
52104
53118
  type: "string",
52105
53119
  required: false,
52106
- description: ""
53120
+ description: "Summary style: 'bullet' for bullet points, 'detailed' for thorough, otherwise concise."
52107
53121
  },
52108
53122
  {
52109
53123
  name: "model",
52110
53124
  type: "string",
52111
53125
  required: false,
52112
- description: ""
53126
+ description: "Model id override."
52113
53127
  }
52114
53128
  ],
52115
53129
  responseShape: {
@@ -52119,19 +53133,19 @@ var integrators_registry_default = {
52119
53133
  },
52120
53134
  {
52121
53135
  name: "embed",
52122
- description: "",
53136
+ description: "Generate embedding vectors for an array of texts via the configured embedding model (default baai/bge-base-en-v1.5 on OpenRouter, independent of the chat provider).",
52123
53137
  params: [
52124
53138
  {
52125
53139
  name: "texts",
52126
53140
  type: "string[]",
52127
53141
  required: true,
52128
- description: ""
53142
+ description: "Texts to embed, one vector per entry, in order."
52129
53143
  },
52130
53144
  {
52131
53145
  name: "model",
52132
53146
  type: "string",
52133
53147
  required: false,
52134
- description: ""
53148
+ description: "Embedding model id override."
52135
53149
  }
52136
53150
  ],
52137
53151
  responseShape: {
@@ -52147,19 +53161,19 @@ var integrators_registry_default = {
52147
53161
  actions: [
52148
53162
  {
52149
53163
  name: "infer",
52150
- description: "",
53164
+ description: "Run inference against a deployed model-serving orbital by posting an INFER event and reading the prediction back out of the emitted INFERRED result; may cold-start (up to 60s default timeout).",
52151
53165
  params: [
52152
53166
  {
52153
53167
  name: "model",
52154
53168
  type: "string",
52155
53169
  required: true,
52156
- description: ""
53170
+ description: "Checkpoint or model identifier the serving orbital resolves."
52157
53171
  },
52158
53172
  {
52159
53173
  name: "input",
52160
53174
  type: "ServiceParamsValue",
52161
53175
  required: true,
52162
- description: ""
53176
+ description: "JSON-safe model input payload."
52163
53177
  }
52164
53178
  ],
52165
53179
  responseShape: {
@@ -52177,38 +53191,38 @@ var integrators_registry_default = {
52177
53191
  actions: [
52178
53192
  {
52179
53193
  name: "search",
52180
- description: "",
53194
+ description: "Search YouTube via the Data API and return matching video snippets.",
52181
53195
  params: [
52182
53196
  {
52183
53197
  name: "query",
52184
53198
  type: "string",
52185
53199
  required: true,
52186
- description: ""
53200
+ description: "Search query text."
52187
53201
  },
52188
53202
  {
52189
53203
  name: "maxResults",
52190
53204
  type: "number",
52191
53205
  required: false,
52192
- description: ""
53206
+ description: "Maximum number of results; defaults to 10."
52193
53207
  },
52194
53208
  {
52195
53209
  name: "type",
52196
53210
  type: "string",
52197
53211
  required: false,
52198
- description: ""
53212
+ description: "Resource type filter passed to the Data API (e.g. 'video', 'channel', 'playlist')."
52199
53213
  }
52200
53214
  ],
52201
53215
  responseShape: {}
52202
53216
  },
52203
53217
  {
52204
53218
  name: "getVideo",
52205
- description: "",
53219
+ description: "Fetch a video's snippet and statistics via the YouTube Data API.",
52206
53220
  params: [
52207
53221
  {
52208
53222
  name: "videoId",
52209
53223
  type: "string",
52210
53224
  required: true,
52211
- description: ""
53225
+ description: "YouTube video id."
52212
53226
  }
52213
53227
  ],
52214
53228
  responseShape: {
@@ -52220,13 +53234,13 @@ var integrators_registry_default = {
52220
53234
  },
52221
53235
  {
52222
53236
  name: "getChannel",
52223
- description: "",
53237
+ description: "Fetch a channel's snippet and statistics via the YouTube Data API.",
52224
53238
  params: [
52225
53239
  {
52226
53240
  name: "channelId",
52227
53241
  type: "string",
52228
53242
  required: true,
52229
- description: ""
53243
+ description: "YouTube channel id."
52230
53244
  }
52231
53245
  ],
52232
53246
  responseShape: {
@@ -52244,47 +53258,48 @@ var integrators_registry_default = {
52244
53258
  actions: [
52245
53259
  {
52246
53260
  name: "sendSMS",
52247
- description: "",
53261
+ description: "Send an SMS message via Twilio.",
52248
53262
  params: [
52249
53263
  {
52250
53264
  name: "to",
52251
53265
  type: "string",
52252
53266
  required: true,
52253
- description: ""
53267
+ description: "Destination phone number, E.164 format."
52254
53268
  },
52255
53269
  {
52256
53270
  name: "body",
52257
53271
  type: "string",
52258
53272
  required: true,
52259
- description: ""
53273
+ description: "Message text."
52260
53274
  },
52261
53275
  {
52262
53276
  name: "from",
52263
53277
  type: "string",
52264
53278
  required: false,
52265
- description: ""
53279
+ description: "Sender phone number; defaults to TWILIO_PHONE_NUMBER."
52266
53280
  }
52267
53281
  ],
52268
53282
  responseShape: {
52269
53283
  sid: "string",
52270
53284
  status: "string"
52271
- }
53285
+ },
53286
+ synonyms: "text message, text"
52272
53287
  },
52273
53288
  {
52274
53289
  name: "sendWhatsApp",
52275
- description: "",
53290
+ description: "Send a WhatsApp message via Twilio, using the configured phone number as sender on both ends.",
52276
53291
  params: [
52277
53292
  {
52278
53293
  name: "to",
52279
53294
  type: "string",
52280
53295
  required: true,
52281
- description: ""
53296
+ description: "Destination phone number, E.164 format (sent as whatsapp:number)."
52282
53297
  },
52283
53298
  {
52284
53299
  name: "body",
52285
53300
  type: "string",
52286
53301
  required: true,
52287
- description: ""
53302
+ description: "Message text."
52288
53303
  }
52289
53304
  ],
52290
53305
  responseShape: {
@@ -52301,31 +53316,31 @@ var integrators_registry_default = {
52301
53316
  actions: [
52302
53317
  {
52303
53318
  name: "send",
52304
- description: "",
53319
+ description: "Send a transactional email via the configured provider (SendGrid or Resend).",
52305
53320
  params: [
52306
53321
  {
52307
53322
  name: "to",
52308
53323
  type: "string",
52309
53324
  required: true,
52310
- description: ""
53325
+ description: "Recipient email address."
52311
53326
  },
52312
53327
  {
52313
53328
  name: "subject",
52314
53329
  type: "string",
52315
53330
  required: true,
52316
- description: ""
53331
+ description: "Email subject line."
52317
53332
  },
52318
53333
  {
52319
53334
  name: "body",
52320
53335
  type: "string",
52321
53336
  required: true,
52322
- description: ""
53337
+ description: "Plain-text (or HTML, if `htmlBody` is absent) body content."
52323
53338
  },
52324
53339
  {
52325
53340
  name: "from",
52326
53341
  type: "string",
52327
53342
  required: false,
52328
- description: ""
53343
+ description: "Sender address; defaults to FROM_EMAIL."
52329
53344
  },
52330
53345
  {
52331
53346
  name: "htmlBody",
@@ -52337,7 +53352,7 @@ var integrators_registry_default = {
52337
53352
  name: "replyTo",
52338
53353
  type: "string",
52339
53354
  required: false,
52340
- description: ""
53355
+ description: "Reply-To address."
52341
53356
  },
52342
53357
  {
52343
53358
  name: "templateId",
@@ -52360,31 +53375,31 @@ var integrators_registry_default = {
52360
53375
  actions: [
52361
53376
  {
52362
53377
  name: "send",
52363
- description: "",
53378
+ description: "POST a JSON event notification to an external URL, HMAC-SHA256-signed when a secret is configured; 5xx responses retry, 4xx do not.",
52364
53379
  params: [
52365
53380
  {
52366
53381
  name: "url",
52367
53382
  type: "string",
52368
53383
  required: true,
52369
- description: ""
53384
+ description: "Destination URL to POST to."
52370
53385
  },
52371
53386
  {
52372
53387
  name: "event",
52373
53388
  type: "string",
52374
53389
  required: true,
52375
- description: ""
53390
+ description: "Event name, carried in the body and the X-Almadar-Event header."
52376
53391
  },
52377
53392
  {
52378
53393
  name: "payload",
52379
53394
  type: "object",
52380
53395
  required: false,
52381
- description: ""
53396
+ description: "Event payload; defaults to an empty object."
52382
53397
  },
52383
53398
  {
52384
53399
  name: "secret",
52385
53400
  type: "string",
52386
53401
  required: false,
52387
- description: ""
53402
+ description: "Per-call HMAC signing secret, overriding WEBHOOK_SIGNING_SECRET."
52388
53403
  }
52389
53404
  ],
52390
53405
  responseShape: {
@@ -52402,37 +53417,57 @@ var integrators_registry_default = {
52402
53417
  actions: [
52403
53418
  {
52404
53419
  name: "send",
52405
- description: "",
53420
+ description: "Send a VAPID-signed Web Push notification to a browser PushSubscription endpoint.",
52406
53421
  params: [
52407
53422
  {
52408
53423
  name: "subscription",
52409
53424
  type: "object",
52410
53425
  required: true,
52411
- description: ""
53426
+ description: "Browser PushSubscription: endpoint URL plus the p256dh/auth encryption keys.",
53427
+ properties: {
53428
+ endpoint: {
53429
+ type: "string",
53430
+ required: true
53431
+ },
53432
+ keys: {
53433
+ type: "object",
53434
+ required: true,
53435
+ properties: {
53436
+ p256dh: {
53437
+ type: "string",
53438
+ required: true
53439
+ },
53440
+ auth: {
53441
+ type: "string",
53442
+ required: true
53443
+ }
53444
+ }
53445
+ }
53446
+ }
52412
53447
  },
52413
53448
  {
52414
53449
  name: "title",
52415
53450
  type: "string",
52416
53451
  required: true,
52417
- description: ""
53452
+ description: "Notification title."
52418
53453
  },
52419
53454
  {
52420
53455
  name: "body",
52421
53456
  type: "string",
52422
53457
  required: true,
52423
- description: ""
53458
+ description: "Notification body text."
52424
53459
  },
52425
53460
  {
52426
53461
  name: "url",
52427
53462
  type: "string",
52428
53463
  required: false,
52429
- description: ""
53464
+ description: "URL to open when the notification is clicked."
52430
53465
  },
52431
53466
  {
52432
53467
  name: "icon",
52433
53468
  type: "string",
52434
53469
  required: false,
52435
- description: ""
53470
+ description: "Notification icon URL."
52436
53471
  }
52437
53472
  ],
52438
53473
  responseShape: {
@@ -52450,89 +53485,128 @@ var integrators_registry_default = {
52450
53485
  actions: [
52451
53486
  {
52452
53487
  name: "listEvents",
52453
- description: "",
53488
+ description: "List events on a Google Calendar; pass `syncToken` for incremental sync instead of a time window (the API rejects combining them).",
52454
53489
  params: [
52455
53490
  {
52456
53491
  name: "calendarId",
52457
53492
  type: "string",
52458
53493
  required: false,
52459
- description: ""
53494
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID (or 'primary')."
52460
53495
  },
52461
53496
  {
52462
53497
  name: "timeMin",
52463
53498
  type: "string",
52464
53499
  required: false,
52465
- description: ""
53500
+ description: "ISO start of the time window (ignored when `syncToken` is set)."
52466
53501
  },
52467
53502
  {
52468
53503
  name: "timeMax",
52469
53504
  type: "string",
52470
53505
  required: false,
52471
- description: ""
53506
+ description: "ISO end of the time window (ignored when `syncToken` is set)."
52472
53507
  },
52473
53508
  {
52474
53509
  name: "syncToken",
52475
53510
  type: "string",
52476
53511
  required: false,
52477
- description: ""
53512
+ description: "Incremental-sync token from a previous call's `nextSyncToken`; supersedes timeMin/timeMax."
52478
53513
  },
52479
53514
  {
52480
53515
  name: "maxResults",
52481
53516
  type: "number",
52482
53517
  required: false,
52483
- description: ""
53518
+ description: "Maximum events to return; defaults to 250."
52484
53519
  }
52485
53520
  ],
52486
53521
  responseShape: {
52487
- events: "array",
53522
+ events: {
53523
+ type: "array",
53524
+ items: {
53525
+ type: "object",
53526
+ properties: {
53527
+ id: {
53528
+ type: "string",
53529
+ required: true
53530
+ },
53531
+ summary: {
53532
+ type: "string",
53533
+ required: true
53534
+ },
53535
+ description: {
53536
+ type: "string",
53537
+ required: true
53538
+ },
53539
+ location: {
53540
+ type: "string",
53541
+ required: true
53542
+ },
53543
+ start: {
53544
+ type: "string",
53545
+ required: true
53546
+ },
53547
+ end: {
53548
+ type: "string",
53549
+ required: true
53550
+ },
53551
+ status: {
53552
+ type: "string",
53553
+ required: true
53554
+ },
53555
+ updated: {
53556
+ type: "string",
53557
+ required: true
53558
+ }
53559
+ }
53560
+ }
53561
+ },
52488
53562
  nextSyncToken: "string | null"
52489
53563
  }
52490
53564
  },
52491
53565
  {
52492
53566
  name: "createEvent",
52493
- description: "",
53567
+ description: "Create a calendar event; an all-day event uses a 10-char (YYYY-MM-DD) start with no `end`/`durationMinutes`, defaulting to the next day.",
52494
53568
  params: [
52495
53569
  {
52496
53570
  name: "calendarId",
52497
53571
  type: "string",
52498
53572
  required: false,
52499
- description: ""
53573
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52500
53574
  },
52501
53575
  {
52502
53576
  name: "summary",
52503
53577
  type: "string",
52504
53578
  required: true,
52505
- description: ""
53579
+ description: "Event title."
52506
53580
  },
52507
53581
  {
52508
53582
  name: "description",
52509
53583
  type: "string",
52510
53584
  required: false,
52511
- description: ""
53585
+ description: "Event description."
52512
53586
  },
52513
53587
  {
52514
53588
  name: "location",
52515
53589
  type: "string",
52516
53590
  required: false,
52517
- description: ""
53591
+ description: "Event location text."
52518
53592
  },
52519
53593
  {
52520
53594
  name: "start",
52521
53595
  type: "string",
52522
53596
  required: true,
52523
- description: ""
53597
+ description: "ISO start (10 chars = all-day date, longer = dateTime)."
52524
53598
  },
52525
53599
  {
52526
53600
  name: "end",
52527
53601
  type: "string",
52528
53602
  required: false,
52529
- description: ""
53603
+ description: "ISO end; if omitted, derived from `durationMinutes` or the all-day next-day convention."
52530
53604
  },
52531
53605
  {
52532
53606
  name: "durationMinutes",
52533
53607
  type: "number",
52534
53608
  required: false,
52535
- description: ""
53609
+ description: "Duration in minutes used to derive `end` when `end` is omitted (non-all-day events only)."
52536
53610
  }
52537
53611
  ],
52538
53612
  responseShape: {
@@ -52543,49 +53617,49 @@ var integrators_registry_default = {
52543
53617
  },
52544
53618
  {
52545
53619
  name: "updateEvent",
52546
- description: "",
53620
+ description: "Patch an existing event's fields; only fields present in params are changed.",
52547
53621
  params: [
52548
53622
  {
52549
53623
  name: "calendarId",
52550
53624
  type: "string",
52551
53625
  required: false,
52552
- description: ""
53626
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52553
53627
  },
52554
53628
  {
52555
53629
  name: "eventId",
52556
53630
  type: "string",
52557
53631
  required: true,
52558
- description: ""
53632
+ description: "Id of the event to update."
52559
53633
  },
52560
53634
  {
52561
53635
  name: "summary",
52562
53636
  type: "string",
52563
53637
  required: false,
52564
- description: ""
53638
+ description: "New event title."
52565
53639
  },
52566
53640
  {
52567
53641
  name: "description",
52568
53642
  type: "string",
52569
53643
  required: false,
52570
- description: ""
53644
+ description: "New event description."
52571
53645
  },
52572
53646
  {
52573
53647
  name: "location",
52574
53648
  type: "string",
52575
53649
  required: false,
52576
- description: ""
53650
+ description: "New event location text."
52577
53651
  },
52578
53652
  {
52579
53653
  name: "start",
52580
53654
  type: "string",
52581
53655
  required: false,
52582
- description: ""
53656
+ description: "New ISO start."
52583
53657
  },
52584
53658
  {
52585
53659
  name: "end",
52586
53660
  type: "string",
52587
53661
  required: false,
52588
- description: ""
53662
+ description: "New ISO end."
52589
53663
  }
52590
53664
  ],
52591
53665
  responseShape: {
@@ -52595,19 +53669,19 @@ var integrators_registry_default = {
52595
53669
  },
52596
53670
  {
52597
53671
  name: "deleteEvent",
52598
- description: "",
53672
+ description: "Delete a calendar event.",
52599
53673
  params: [
52600
53674
  {
52601
53675
  name: "calendarId",
52602
53676
  type: "string",
52603
53677
  required: false,
52604
- description: ""
53678
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52605
53679
  },
52606
53680
  {
52607
53681
  name: "eventId",
52608
53682
  type: "string",
52609
53683
  required: true,
52610
- description: ""
53684
+ description: "Id of the event to delete."
52611
53685
  }
52612
53686
  ],
52613
53687
  responseShape: {
@@ -52617,58 +53691,73 @@ var integrators_registry_default = {
52617
53691
  },
52618
53692
  {
52619
53693
  name: "freeBusy",
52620
- description: "",
53694
+ description: "Query busy time blocks on a calendar within a window.",
52621
53695
  params: [
52622
53696
  {
52623
53697
  name: "calendarId",
52624
53698
  type: "string",
52625
53699
  required: false,
52626
- description: ""
53700
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52627
53701
  },
52628
53702
  {
52629
53703
  name: "timeMin",
52630
53704
  type: "string",
52631
53705
  required: true,
52632
- description: ""
53706
+ description: "ISO start of the query window."
52633
53707
  },
52634
53708
  {
52635
53709
  name: "timeMax",
52636
53710
  type: "string",
52637
53711
  required: true,
52638
- description: ""
53712
+ description: "ISO end of the query window."
52639
53713
  }
52640
53714
  ],
52641
53715
  responseShape: {
52642
- busy: "array"
53716
+ busy: {
53717
+ type: "array",
53718
+ items: {
53719
+ type: "object",
53720
+ properties: {
53721
+ start: {
53722
+ type: "string",
53723
+ required: true
53724
+ },
53725
+ end: {
53726
+ type: "string",
53727
+ required: true
53728
+ }
53729
+ }
53730
+ }
53731
+ }
52643
53732
  }
52644
53733
  },
52645
53734
  {
52646
53735
  name: "watch",
52647
- description: "",
53736
+ description: "Register a push-notification channel for calendar change events (Google Calendar API watch).",
52648
53737
  params: [
52649
53738
  {
52650
53739
  name: "calendarId",
52651
53740
  type: "string",
52652
53741
  required: false,
52653
- description: ""
53742
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52654
53743
  },
52655
53744
  {
52656
53745
  name: "channelId",
52657
53746
  type: "string",
52658
53747
  required: true,
52659
- description: ""
53748
+ description: "Caller-chosen id identifying this notification channel."
52660
53749
  },
52661
53750
  {
52662
53751
  name: "address",
52663
53752
  type: "string",
52664
53753
  required: true,
52665
- description: ""
53754
+ description: "HTTPS callback URL Google POSTs change notifications to."
52666
53755
  },
52667
53756
  {
52668
53757
  name: "ttlSeconds",
52669
53758
  type: "number",
52670
53759
  required: false,
52671
- description: ""
53760
+ description: "Requested channel time-to-live in seconds."
52672
53761
  }
52673
53762
  ],
52674
53763
  responseShape: {
@@ -52679,19 +53768,19 @@ var integrators_registry_default = {
52679
53768
  },
52680
53769
  {
52681
53770
  name: "stopWatch",
52682
- description: "",
53771
+ description: "Stop an active watch channel, ending calendar change notifications.",
52683
53772
  params: [
52684
53773
  {
52685
53774
  name: "channelId",
52686
53775
  type: "string",
52687
53776
  required: true,
52688
- description: ""
53777
+ description: "The channel id from the corresponding `watch` call."
52689
53778
  },
52690
53779
  {
52691
53780
  name: "resourceId",
52692
53781
  type: "string",
52693
53782
  required: true,
52694
- description: ""
53783
+ description: "The resourceId returned by the corresponding `watch` call."
52695
53784
  }
52696
53785
  ],
52697
53786
  responseShape: {
@@ -52707,40 +53796,71 @@ var integrators_registry_default = {
52707
53796
  actions: [
52708
53797
  {
52709
53798
  name: "listFiles",
52710
- description: "",
53799
+ description: "List non-trashed files in a Google Drive folder, optionally filtered by a Drive API query clause.",
52711
53800
  params: [
52712
53801
  {
52713
53802
  name: "folderId",
52714
53803
  type: "string",
52715
53804
  required: false,
52716
- description: ""
53805
+ description: "Restrict to files whose parents include this folder id."
52717
53806
  },
52718
53807
  {
52719
53808
  name: "query",
52720
53809
  type: "string",
52721
53810
  required: false,
52722
- description: ""
53811
+ description: "Extra Drive API query clause, ANDed with the folder/trashed filters."
52723
53812
  },
52724
53813
  {
52725
53814
  name: "maxResults",
52726
53815
  type: "number",
52727
53816
  required: false,
52728
- description: ""
53817
+ description: "Maximum files to return; defaults to 100."
52729
53818
  }
52730
53819
  ],
52731
53820
  responseShape: {
52732
- files: "array"
53821
+ files: {
53822
+ type: "array",
53823
+ items: {
53824
+ type: "object",
53825
+ properties: {
53826
+ id: {
53827
+ type: "string",
53828
+ required: true
53829
+ },
53830
+ name: {
53831
+ type: "string",
53832
+ required: true
53833
+ },
53834
+ mimeType: {
53835
+ type: "string",
53836
+ required: true
53837
+ },
53838
+ size: {
53839
+ type: "number",
53840
+ required: true
53841
+ },
53842
+ modifiedTime: {
53843
+ type: "string",
53844
+ required: true
53845
+ },
53846
+ webViewLink: {
53847
+ type: "string",
53848
+ required: true
53849
+ }
53850
+ }
53851
+ }
53852
+ }
52733
53853
  }
52734
53854
  },
52735
53855
  {
52736
53856
  name: "getFile",
52737
- description: "",
53857
+ description: "Download a file's content, base64-encoded.",
52738
53858
  params: [
52739
53859
  {
52740
53860
  name: "fileId",
52741
53861
  type: "string",
52742
53862
  required: true,
52743
- description: ""
53863
+ description: "Drive file id."
52744
53864
  }
52745
53865
  ],
52746
53866
  responseShape: {
@@ -52753,54 +53873,55 @@ var integrators_registry_default = {
52753
53873
  },
52754
53874
  {
52755
53875
  name: "uploadFile",
52756
- description: "",
53876
+ description: "Upload a file to Drive; writes go through the user OAuth client when configured (service-account uploads have no storage quota on personal accounts).",
52757
53877
  params: [
52758
53878
  {
52759
53879
  name: "name",
52760
53880
  type: "string",
52761
53881
  required: true,
52762
- description: ""
53882
+ description: "File name to create."
52763
53883
  },
52764
53884
  {
52765
53885
  name: "content",
52766
53886
  type: "string",
52767
53887
  required: true,
52768
- description: ""
53888
+ description: "File content as a base64 data URL (data:mime;base64,...) or raw base64/plain text."
52769
53889
  },
52770
53890
  {
52771
53891
  name: "mimeType",
52772
53892
  type: "string",
52773
53893
  required: false,
52774
- description: ""
53894
+ description: "MIME type; inferred from a data URL when omitted."
52775
53895
  },
52776
53896
  {
52777
53897
  name: "folderId",
52778
53898
  type: "string",
52779
53899
  required: false,
52780
- description: ""
53900
+ description: "Parent folder id; defaults to GOOGLE_DRIVE_FOLDER_ID."
52781
53901
  }
52782
53902
  ],
52783
53903
  responseShape: {
52784
53904
  id: "string",
52785
53905
  name: "string",
52786
53906
  webViewLink: "string"
52787
- }
53907
+ },
53908
+ synonyms: "upload file"
52788
53909
  },
52789
53910
  {
52790
53911
  name: "createFolder",
52791
- description: "",
53912
+ description: "Create a new Drive folder.",
52792
53913
  params: [
52793
53914
  {
52794
53915
  name: "name",
52795
53916
  type: "string",
52796
53917
  required: true,
52797
- description: ""
53918
+ description: "Folder name to create."
52798
53919
  },
52799
53920
  {
52800
53921
  name: "parentId",
52801
53922
  type: "string",
52802
53923
  required: false,
52803
- description: ""
53924
+ description: "Parent folder id; defaults to GOOGLE_DRIVE_FOLDER_ID."
52804
53925
  }
52805
53926
  ],
52806
53927
  responseShape: {
@@ -52810,25 +53931,25 @@ var integrators_registry_default = {
52810
53931
  },
52811
53932
  {
52812
53933
  name: "shareFile",
52813
- description: "",
53934
+ description: "Grant a user permission on a Drive file.",
52814
53935
  params: [
52815
53936
  {
52816
53937
  name: "fileId",
52817
53938
  type: "string",
52818
53939
  required: true,
52819
- description: ""
53940
+ description: "Drive file id."
52820
53941
  },
52821
53942
  {
52822
53943
  name: "email",
52823
53944
  type: "string",
52824
53945
  required: true,
52825
- description: ""
53946
+ description: "Email address of the grantee."
52826
53947
  },
52827
53948
  {
52828
53949
  name: "role",
52829
53950
  type: "'reader' | 'writer' | 'commenter'",
52830
53951
  required: false,
52831
- description: ""
53952
+ description: "Permission level; defaults to 'reader'."
52832
53953
  }
52833
53954
  ],
52834
53955
  responseShape: {
@@ -52845,31 +53966,25 @@ var integrators_registry_default = {
52845
53966
  actions: [
52846
53967
  {
52847
53968
  name: "getSpend",
52848
- description: "",
53969
+ description: "Fetch total ad spend, impressions, and clicks for an account over a date range via the Meta Graph API Marketing Insights endpoint (read-only).",
52849
53970
  params: [
52850
53971
  {
52851
53972
  name: "accountId",
52852
53973
  type: "string",
52853
53974
  required: false,
52854
- description: ""
53975
+ description: "Ad account id (with or without the `act_` prefix); defaults to META_AD_ACCOUNT_ID."
52855
53976
  },
52856
53977
  {
52857
53978
  name: "since",
52858
53979
  type: "string",
52859
53980
  required: true,
52860
- description: ""
53981
+ description: "Range start date (YYYY-MM-DD)."
52861
53982
  },
52862
53983
  {
52863
53984
  name: "until",
52864
53985
  type: "string",
52865
53986
  required: true,
52866
- description: ""
52867
- },
52868
- {
52869
- name: "clientTag",
52870
- type: "string",
52871
- required: false,
52872
- description: ""
53987
+ description: "Range end date (YYYY-MM-DD)."
52873
53988
  }
52874
53989
  ],
52875
53990
  responseShape: {
@@ -52881,23 +53996,46 @@ var integrators_registry_default = {
52881
53996
  },
52882
53997
  {
52883
53998
  name: "listCampaigns",
52884
- description: "",
53999
+ description: "List campaigns on an ad account via the Meta Graph API (read-only); dailyBudget is converted from Meta's minor-unit reporting.",
52885
54000
  params: [
52886
54001
  {
52887
54002
  name: "accountId",
52888
54003
  type: "string",
52889
54004
  required: false,
52890
- description: ""
54005
+ description: "Ad account id (with or without the `act_` prefix); defaults to META_AD_ACCOUNT_ID."
52891
54006
  },
52892
54007
  {
52893
54008
  name: "status",
52894
54009
  type: "string",
52895
54010
  required: false,
52896
- description: ""
54011
+ description: "Filter by campaign effective_status (e.g. 'ACTIVE', 'PAUSED')."
52897
54012
  }
52898
54013
  ],
52899
54014
  responseShape: {
52900
- campaigns: "array"
54015
+ campaigns: {
54016
+ type: "array",
54017
+ items: {
54018
+ type: "object",
54019
+ properties: {
54020
+ id: {
54021
+ type: "string",
54022
+ required: true
54023
+ },
54024
+ name: {
54025
+ type: "string",
54026
+ required: true
54027
+ },
54028
+ status: {
54029
+ type: "string",
54030
+ required: true
54031
+ },
54032
+ dailyBudget: {
54033
+ type: "number",
54034
+ required: true
54035
+ }
54036
+ }
54037
+ }
54038
+ }
52901
54039
  }
52902
54040
  }
52903
54041
  ]
@@ -52909,19 +54047,64 @@ var integrators_registry_default = {
52909
54047
  actions: [
52910
54048
  {
52911
54049
  name: "exportInvoices",
52912
- description: "",
54050
+ description: "Shape invoice rows into an import-ready CSV export (no accounting-vendor connection \u2014 generic column set).",
52913
54051
  params: [
52914
54052
  {
52915
54053
  name: "invoices",
52916
54054
  type: "array",
52917
54055
  required: true,
52918
- description: ""
54056
+ description: "Invoice rows to export, in column order id/number/customer/issuedAt/dueAt/currency/net/tax/gross/status.",
54057
+ items: {
54058
+ type: "object",
54059
+ properties: {
54060
+ id: {
54061
+ type: "string",
54062
+ required: true
54063
+ },
54064
+ number: {
54065
+ type: "string",
54066
+ required: true
54067
+ },
54068
+ customer: {
54069
+ type: "string",
54070
+ required: true
54071
+ },
54072
+ issuedAt: {
54073
+ type: "string",
54074
+ required: true
54075
+ },
54076
+ dueAt: {
54077
+ type: "string",
54078
+ required: true
54079
+ },
54080
+ currency: {
54081
+ type: "string",
54082
+ required: true
54083
+ },
54084
+ net: {
54085
+ type: "number",
54086
+ required: true
54087
+ },
54088
+ tax: {
54089
+ type: "number",
54090
+ required: true
54091
+ },
54092
+ gross: {
54093
+ type: "number",
54094
+ required: true
54095
+ },
54096
+ status: {
54097
+ type: "string",
54098
+ required: true
54099
+ }
54100
+ }
54101
+ }
52919
54102
  },
52920
54103
  {
52921
54104
  name: "format",
52922
54105
  type: "'csv'",
52923
54106
  required: false,
52924
- description: ""
54107
+ description: "Export format; only 'csv' is currently supported."
52925
54108
  }
52926
54109
  ],
52927
54110
  responseShape: {
@@ -52932,19 +54115,48 @@ var integrators_registry_default = {
52932
54115
  },
52933
54116
  {
52934
54117
  name: "exportJournal",
52935
- description: "",
54118
+ description: "Shape journal entry rows into an import-ready CSV export.",
52936
54119
  params: [
52937
54120
  {
52938
54121
  name: "entries",
52939
54122
  type: "array",
52940
54123
  required: true,
52941
- description: ""
54124
+ description: "Journal entry rows to export, in column order date/account/description/debit/credit/reference.",
54125
+ items: {
54126
+ type: "object",
54127
+ properties: {
54128
+ date: {
54129
+ type: "string",
54130
+ required: true
54131
+ },
54132
+ account: {
54133
+ type: "string",
54134
+ required: true
54135
+ },
54136
+ description: {
54137
+ type: "string",
54138
+ required: true
54139
+ },
54140
+ debit: {
54141
+ type: "number",
54142
+ required: true
54143
+ },
54144
+ credit: {
54145
+ type: "number",
54146
+ required: true
54147
+ },
54148
+ reference: {
54149
+ type: "string",
54150
+ required: true
54151
+ }
54152
+ }
54153
+ }
52942
54154
  },
52943
54155
  {
52944
54156
  name: "format",
52945
54157
  type: "'csv'",
52946
54158
  required: false,
52947
- description: ""
54159
+ description: "Export format; only 'csv' is currently supported."
52948
54160
  }
52949
54161
  ],
52950
54162
  responseShape: {
@@ -52962,25 +54174,25 @@ var integrators_registry_default = {
52962
54174
  actions: [
52963
54175
  {
52964
54176
  name: "createRequisition",
52965
- description: "",
54177
+ description: "Start a GoCardless Bank Account Data requisition (bank-connection consent flow); the returned `link` is where the end user authorizes access.",
52966
54178
  params: [
52967
54179
  {
52968
54180
  name: "institutionId",
52969
54181
  type: "string",
52970
54182
  required: true,
52971
- description: ""
54183
+ description: "GoCardless institution id (the bank to connect)."
52972
54184
  },
52973
54185
  {
52974
54186
  name: "redirectUrl",
52975
54187
  type: "string",
52976
54188
  required: true,
52977
- description: ""
54189
+ description: "URL GoCardless redirects the user to after consent."
52978
54190
  },
52979
54191
  {
52980
54192
  name: "reference",
52981
54193
  type: "string",
52982
54194
  required: false,
52983
- description: ""
54195
+ description: "Caller-chosen reference to correlate the requisition."
52984
54196
  }
52985
54197
  ],
52986
54198
  responseShape: {
@@ -52990,13 +54202,13 @@ var integrators_registry_default = {
52990
54202
  },
52991
54203
  {
52992
54204
  name: "listAccounts",
52993
- description: "",
54205
+ description: "List account ids linked under a completed requisition.",
52994
54206
  params: [
52995
54207
  {
52996
54208
  name: "requisitionId",
52997
54209
  type: "string",
52998
54210
  required: true,
52999
- description: ""
54211
+ description: "Requisition id from createRequisition."
53000
54212
  }
53001
54213
  ],
53002
54214
  responseShape: {
@@ -53005,29 +54217,60 @@ var integrators_registry_default = {
53005
54217
  },
53006
54218
  {
53007
54219
  name: "listTransactions",
53008
- description: "",
54220
+ description: "List booked transactions on a linked bank account, optionally filtered by date range.",
53009
54221
  params: [
53010
54222
  {
53011
54223
  name: "accountId",
53012
54224
  type: "string",
53013
54225
  required: true,
53014
- description: ""
54226
+ description: "GoCardless account id."
53015
54227
  },
53016
54228
  {
53017
54229
  name: "dateFrom",
53018
54230
  type: "string",
53019
54231
  required: false,
53020
- description: ""
54232
+ description: "Only transactions booked on/after this date (YYYY-MM-DD)."
53021
54233
  },
53022
54234
  {
53023
54235
  name: "dateTo",
53024
54236
  type: "string",
53025
54237
  required: false,
53026
- description: ""
54238
+ description: "Only transactions booked on/before this date (YYYY-MM-DD)."
53027
54239
  }
53028
54240
  ],
53029
54241
  responseShape: {
53030
- transactions: "array"
54242
+ transactions: {
54243
+ type: "array",
54244
+ items: {
54245
+ type: "object",
54246
+ properties: {
54247
+ id: {
54248
+ type: "string",
54249
+ required: true
54250
+ },
54251
+ amount: {
54252
+ type: "number",
54253
+ required: true
54254
+ },
54255
+ currency: {
54256
+ type: "string",
54257
+ required: true
54258
+ },
54259
+ date: {
54260
+ type: "string",
54261
+ required: true
54262
+ },
54263
+ description: {
54264
+ type: "string",
54265
+ required: true
54266
+ },
54267
+ counterparty: {
54268
+ type: "string",
54269
+ required: true
54270
+ }
54271
+ }
54272
+ }
54273
+ }
53031
54274
  }
53032
54275
  }
53033
54276
  ]
@@ -53039,37 +54282,37 @@ var integrators_registry_default = {
53039
54282
  actions: [
53040
54283
  {
53041
54284
  name: "sendEnvelope",
53042
- description: "",
54285
+ description: "Send a document for e-signature via DocuSign; accepts the document content as a data URL or raw base64.",
53043
54286
  params: [
53044
54287
  {
53045
54288
  name: "recipientEmail",
53046
54289
  type: "string",
53047
54290
  required: true,
53048
- description: ""
54291
+ description: "Signer's email address."
53049
54292
  },
53050
54293
  {
53051
54294
  name: "recipientName",
53052
54295
  type: "string",
53053
54296
  required: true,
53054
- description: ""
54297
+ description: "Signer's display name."
53055
54298
  },
53056
54299
  {
53057
54300
  name: "documentName",
53058
54301
  type: "string",
53059
54302
  required: true,
53060
- description: ""
54303
+ description: "Document file name (its extension also picks the DocuSign fileExtension)."
53061
54304
  },
53062
54305
  {
53063
54306
  name: "documentContent",
53064
54307
  type: "string",
53065
54308
  required: true,
53066
- description: ""
54309
+ description: "Document content as a base64 data URL or raw base64."
53067
54310
  },
53068
54311
  {
53069
54312
  name: "emailSubject",
53070
54313
  type: "string",
53071
54314
  required: false,
53072
- description: ""
54315
+ description: 'Envelope email subject; defaults to "Please sign: " + documentName.'
53073
54316
  }
53074
54317
  ],
53075
54318
  responseShape: {
@@ -53079,13 +54322,13 @@ var integrators_registry_default = {
53079
54322
  },
53080
54323
  {
53081
54324
  name: "getEnvelopeStatus",
53082
- description: "",
54325
+ description: "Poll a DocuSign envelope's signing status.",
53083
54326
  params: [
53084
54327
  {
53085
54328
  name: "envelopeId",
53086
54329
  type: "string",
53087
54330
  required: true,
53088
- description: ""
54331
+ description: "DocuSign envelope id from sendEnvelope."
53089
54332
  }
53090
54333
  ],
53091
54334
  responseShape: {
@@ -53095,13 +54338,13 @@ var integrators_registry_default = {
53095
54338
  },
53096
54339
  {
53097
54340
  name: "downloadDocument",
53098
- description: "",
54341
+ description: "Download the combined signed document(s) for a completed envelope, base64-encoded PDF.",
53099
54342
  params: [
53100
54343
  {
53101
54344
  name: "envelopeId",
53102
54345
  type: "string",
53103
54346
  required: true,
53104
- description: ""
54347
+ description: "DocuSign envelope id."
53105
54348
  }
53106
54349
  ],
53107
54350
  responseShape: {
@@ -53118,31 +54361,31 @@ var integrators_registry_default = {
53118
54361
  actions: [
53119
54362
  {
53120
54363
  name: "build",
53121
- description: "",
54364
+ description: "Simulate building a container image (in-memory backend \u2014 no real Docker daemon/SDK; a real build is not yet implemented).",
53122
54365
  params: [
53123
54366
  {
53124
54367
  name: "tag",
53125
54368
  type: "string",
53126
54369
  required: true,
53127
- description: ""
54370
+ description: "Image tag to build, e.g. myapp:latest."
53128
54371
  },
53129
54372
  {
53130
54373
  name: "dockerfile",
53131
54374
  type: "string",
53132
54375
  required: false,
53133
- description: ""
54376
+ description: "Dockerfile path; defaults to 'Dockerfile'."
53134
54377
  },
53135
54378
  {
53136
54379
  name: "context",
53137
54380
  type: "string",
53138
54381
  required: false,
53139
- description: ""
54382
+ description: "Build context directory; defaults to '.'."
53140
54383
  },
53141
54384
  {
53142
54385
  name: "buildArgs",
53143
54386
  type: "object",
53144
54387
  required: false,
53145
- description: ""
54388
+ description: "Build-time --build-arg values."
53146
54389
  }
53147
54390
  ],
53148
54391
  responseShape: {
@@ -53154,61 +54397,110 @@ var integrators_registry_default = {
53154
54397
  },
53155
54398
  {
53156
54399
  name: "run",
53157
- description: "",
54400
+ description: "Simulate starting a container from an image (in-memory backend).",
53158
54401
  params: [
53159
54402
  {
53160
54403
  name: "image",
53161
54404
  type: "string",
53162
54405
  required: true,
53163
- description: ""
54406
+ description: "Image to run (as built/tagged by the `build` action, or an arbitrary name)."
53164
54407
  },
53165
54408
  {
53166
54409
  name: "name",
53167
54410
  type: "string",
53168
54411
  required: false,
53169
- description: ""
54412
+ description: "Container name; auto-generated when omitted."
53170
54413
  },
53171
54414
  {
53172
54415
  name: "ports",
53173
54416
  type: "array",
53174
54417
  required: false,
53175
- description: ""
54418
+ description: "Host/container port mappings.",
54419
+ items: {
54420
+ type: "object",
54421
+ properties: {
54422
+ host: {
54423
+ type: "number",
54424
+ required: true
54425
+ },
54426
+ container: {
54427
+ type: "number",
54428
+ required: true
54429
+ },
54430
+ protocol: {
54431
+ type: "string",
54432
+ required: false
54433
+ }
54434
+ }
54435
+ }
53176
54436
  },
53177
54437
  {
53178
54438
  name: "env",
53179
54439
  type: "object",
53180
54440
  required: false,
53181
- description: ""
54441
+ description: "Environment variables set inside the container."
53182
54442
  },
53183
54443
  {
53184
54444
  name: "volumes",
53185
54445
  type: "array",
53186
54446
  required: false,
53187
- description: ""
54447
+ description: "Host/container path mounts.",
54448
+ items: {
54449
+ type: "object",
54450
+ properties: {
54451
+ host: {
54452
+ type: "string",
54453
+ required: true
54454
+ },
54455
+ container: {
54456
+ type: "string",
54457
+ required: true
54458
+ }
54459
+ }
54460
+ }
53188
54461
  },
53189
54462
  {
53190
54463
  name: "command",
53191
54464
  type: "string",
53192
54465
  required: false,
53193
- description: ""
54466
+ description: "Override command run inside the container."
53194
54467
  }
53195
54468
  ],
53196
54469
  responseShape: {
53197
54470
  containerId: "string",
53198
54471
  name: "string",
53199
54472
  status: "string",
53200
- ports: "array"
54473
+ ports: {
54474
+ type: "array",
54475
+ items: {
54476
+ type: "object",
54477
+ properties: {
54478
+ host: {
54479
+ type: "number",
54480
+ required: true
54481
+ },
54482
+ container: {
54483
+ type: "number",
54484
+ required: true
54485
+ },
54486
+ protocol: {
54487
+ type: "string",
54488
+ required: true
54489
+ }
54490
+ }
54491
+ }
54492
+ }
53201
54493
  }
53202
54494
  },
53203
54495
  {
53204
54496
  name: "stop",
53205
- description: "",
54497
+ description: "Stop a running (or paused) simulated container.",
53206
54498
  params: [
53207
54499
  {
53208
54500
  name: "containerId",
53209
54501
  type: "string",
53210
54502
  required: true,
53211
- description: ""
54503
+ description: "Container id, or a unique id prefix."
53212
54504
  }
53213
54505
  ],
53214
54506
  responseShape: {
@@ -53219,19 +54511,19 @@ var integrators_registry_default = {
53219
54511
  },
53220
54512
  {
53221
54513
  name: "remove",
53222
- description: "",
54514
+ description: "Remove a simulated container; fails if it is running unless `force` is set.",
53223
54515
  params: [
53224
54516
  {
53225
54517
  name: "containerId",
53226
54518
  type: "string",
53227
54519
  required: true,
53228
- description: ""
54520
+ description: "Container id, or a unique id prefix."
53229
54521
  },
53230
54522
  {
53231
54523
  name: "force",
53232
54524
  type: "boolean",
53233
54525
  required: false,
53234
- description: ""
54526
+ description: "Remove even if the container is currently running."
53235
54527
  }
53236
54528
  ],
53237
54529
  responseShape: {
@@ -53241,25 +54533,25 @@ var integrators_registry_default = {
53241
54533
  },
53242
54534
  {
53243
54535
  name: "logs",
53244
- description: "",
54536
+ description: "Fetch generated log lines for a simulated container.",
53245
54537
  params: [
53246
54538
  {
53247
54539
  name: "containerId",
53248
54540
  type: "string",
53249
54541
  required: true,
53250
- description: ""
54542
+ description: "Container id, or a unique id prefix."
53251
54543
  },
53252
54544
  {
53253
54545
  name: "tail",
53254
54546
  type: "number",
53255
54547
  required: false,
53256
- description: ""
54548
+ description: "Number of most-recent lines to return; defaults to 100."
53257
54549
  },
53258
54550
  {
53259
54551
  name: "since",
53260
54552
  type: "string",
53261
54553
  required: false,
53262
- description: ""
54554
+ description: "Only lines timestamped at/after this ISO time."
53263
54555
  }
53264
54556
  ],
53265
54557
  responseShape: {
@@ -53270,13 +54562,13 @@ var integrators_registry_default = {
53270
54562
  },
53271
54563
  {
53272
54564
  name: "status",
53273
- description: "",
54565
+ description: "Fetch a simulated container's current status and metadata.",
53274
54566
  params: [
53275
54567
  {
53276
54568
  name: "containerId",
53277
54569
  type: "string",
53278
54570
  required: true,
53279
- description: ""
54571
+ description: "Container id, or a unique id prefix."
53280
54572
  }
53281
54573
  ],
53282
54574
  responseShape: {
@@ -53284,7 +54576,26 @@ var integrators_registry_default = {
53284
54576
  name: "string",
53285
54577
  image: "string",
53286
54578
  status: "string",
53287
- ports: "array",
54579
+ ports: {
54580
+ type: "array",
54581
+ items: {
54582
+ type: "object",
54583
+ properties: {
54584
+ host: {
54585
+ type: "number",
54586
+ required: true
54587
+ },
54588
+ container: {
54589
+ type: "number",
54590
+ required: true
54591
+ },
54592
+ protocol: {
54593
+ type: "string",
54594
+ required: true
54595
+ }
54596
+ }
54597
+ }
54598
+ },
53288
54599
  createdAt: "number",
53289
54600
  startedAt: "number | null",
53290
54601
  stoppedAt: "number | null"
@@ -53292,23 +54603,71 @@ var integrators_registry_default = {
53292
54603
  },
53293
54604
  {
53294
54605
  name: "list",
53295
- description: "",
54606
+ description: "List simulated containers; by default only running ones (like `docker ps`).",
53296
54607
  params: [
53297
54608
  {
53298
54609
  name: "all",
53299
54610
  type: "boolean",
53300
54611
  required: false,
53301
- description: ""
54612
+ description: "Include stopped/exited containers, not just running ones."
53302
54613
  },
53303
54614
  {
53304
54615
  name: "filterByLabel",
53305
54616
  type: "string",
53306
54617
  required: false,
53307
- description: ""
54618
+ description: "Filter by a `key` or `key=value` label match."
53308
54619
  }
53309
54620
  ],
53310
54621
  responseShape: {
53311
- containers: "array",
54622
+ containers: {
54623
+ type: "array",
54624
+ items: {
54625
+ type: "object",
54626
+ properties: {
54627
+ id: {
54628
+ type: "string",
54629
+ required: true
54630
+ },
54631
+ name: {
54632
+ type: "string",
54633
+ required: true
54634
+ },
54635
+ image: {
54636
+ type: "string",
54637
+ required: true
54638
+ },
54639
+ status: {
54640
+ type: "string",
54641
+ required: true
54642
+ },
54643
+ ports: {
54644
+ type: "array",
54645
+ required: true,
54646
+ items: {
54647
+ type: "object",
54648
+ properties: {
54649
+ host: {
54650
+ type: "number",
54651
+ required: true
54652
+ },
54653
+ container: {
54654
+ type: "number",
54655
+ required: true
54656
+ },
54657
+ protocol: {
54658
+ type: "string",
54659
+ required: true
54660
+ }
54661
+ }
54662
+ }
54663
+ },
54664
+ createdAt: {
54665
+ type: "number",
54666
+ required: true
54667
+ }
54668
+ }
54669
+ }
54670
+ },
53312
54671
  total: "number"
53313
54672
  }
53314
54673
  }
@@ -53321,55 +54680,73 @@ var integrators_registry_default = {
53321
54680
  actions: [
53322
54681
  {
53323
54682
  name: "upload",
53324
- description: "",
54683
+ description: "Upload an object to an S3-compatible bucket (real S3/R2/MinIO backend when storage credentials are configured, in-memory dev fallback otherwise \u2014 refused in production). Admits either the canonical `key`+`content` pair or the file-form `file` payload (UploadDropZone's `{ name, size, type, content }` shape); when `file` is present its `key`/`content` are derived from it.",
53325
54684
  params: [
53326
54685
  {
53327
54686
  name: "bucket",
53328
54687
  type: "string",
53329
54688
  required: true,
53330
- description: ""
54689
+ description: "Target bucket; defaults to STORAGE_BUCKET."
53331
54690
  },
53332
54691
  {
53333
54692
  name: "key",
53334
54693
  type: "string",
53335
54694
  required: false,
53336
- description: ""
54695
+ description: "Object key to store under (canonical shape); ignored when `file` is present."
53337
54696
  },
53338
54697
  {
53339
54698
  name: "content",
53340
54699
  type: "string",
53341
54700
  required: false,
53342
- description: ""
54701
+ description: "Object content as a base64 data URL, raw base64, or plain text (canonical shape); ignored when `file` is present."
53343
54702
  },
53344
54703
  {
53345
54704
  name: "contentType",
53346
54705
  type: "string",
53347
54706
  required: false,
53348
- description: ""
54707
+ description: "MIME type override for the canonical shape; inferred from a data URL when omitted."
53349
54708
  },
53350
54709
  {
53351
54710
  name: "file",
53352
54711
  type: "object",
53353
54712
  required: false,
53354
- description: ""
54713
+ description: "File-form upload payload (as emitted by UploadDropZone); `content` is a base64 data URL.",
54714
+ properties: {
54715
+ name: {
54716
+ type: "string",
54717
+ required: true
54718
+ },
54719
+ size: {
54720
+ type: "number",
54721
+ required: true
54722
+ },
54723
+ type: {
54724
+ type: "string",
54725
+ required: true
54726
+ },
54727
+ content: {
54728
+ type: "string",
54729
+ required: false
54730
+ }
54731
+ }
53355
54732
  },
53356
54733
  {
53357
54734
  name: "acl",
53358
54735
  type: "'public' | 'private'",
53359
54736
  required: false,
53360
- description: ""
54737
+ description: "Object ACL \u2014 'public' produces a public URL, otherwise the URL is signed/private."
53361
54738
  },
53362
54739
  {
53363
54740
  name: "maxSize",
53364
54741
  type: "number",
53365
54742
  required: false,
53366
- description: ""
54743
+ description: "Reject the upload if the file-form payload's declared size exceeds this many bytes."
53367
54744
  },
53368
54745
  {
53369
54746
  name: "metadata",
53370
54747
  type: "IntegrationParams",
53371
54748
  required: false,
53372
- description: ""
54749
+ description: "Arbitrary metadata stored alongside the object (in-memory backend only)."
53373
54750
  }
53374
54751
  ],
53375
54752
  responseShape: {
@@ -53379,57 +54756,110 @@ var integrators_registry_default = {
53379
54756
  etag: "string",
53380
54757
  id: "string",
53381
54758
  url: "string"
53382
- }
54759
+ },
54760
+ synonyms: "upload file, upload object"
53383
54761
  },
53384
54762
  {
53385
54763
  name: "uploadMany",
53386
- description: "",
54764
+ description: "Upload a whole UploadDropZone batch in one call, one item per file \u2014 the FSM-friendly shape for bulk-persisting uploaded-file rows.",
53387
54765
  params: [
53388
54766
  {
53389
54767
  name: "bucket",
53390
54768
  type: "string",
53391
54769
  required: true,
53392
- description: ""
54770
+ description: "Target bucket; defaults to STORAGE_BUCKET."
53393
54771
  },
53394
54772
  {
53395
54773
  name: "files",
53396
54774
  type: "array",
53397
54775
  required: true,
53398
- description: ""
54776
+ description: "Files to upload, in UploadDropZone's `{ name, size, type, content }` shape.",
54777
+ items: {
54778
+ type: "object",
54779
+ properties: {
54780
+ name: {
54781
+ type: "string",
54782
+ required: true
54783
+ },
54784
+ size: {
54785
+ type: "number",
54786
+ required: true
54787
+ },
54788
+ type: {
54789
+ type: "string",
54790
+ required: true
54791
+ },
54792
+ content: {
54793
+ type: "string",
54794
+ required: false
54795
+ }
54796
+ }
54797
+ }
53399
54798
  },
53400
54799
  {
53401
54800
  name: "acl",
53402
54801
  type: "'public' | 'private'",
53403
54802
  required: false,
53404
- description: ""
54803
+ description: "Object ACL applied to every file in the batch."
53405
54804
  },
53406
54805
  {
53407
54806
  name: "maxSize",
53408
54807
  type: "number",
53409
54808
  required: false,
53410
- description: ""
54809
+ description: "Reject any file whose declared size exceeds this many bytes."
53411
54810
  }
53412
54811
  ],
53413
54812
  responseShape: {
53414
- items: "array",
54813
+ items: {
54814
+ type: "array",
54815
+ items: {
54816
+ type: "object",
54817
+ properties: {
54818
+ id: {
54819
+ type: "string",
54820
+ required: true
54821
+ },
54822
+ key: {
54823
+ type: "string",
54824
+ required: true
54825
+ },
54826
+ url: {
54827
+ type: "string",
54828
+ required: true
54829
+ },
54830
+ name: {
54831
+ type: "string",
54832
+ required: true
54833
+ },
54834
+ sizeBytes: {
54835
+ type: "number",
54836
+ required: true
54837
+ },
54838
+ mimeType: {
54839
+ type: "string",
54840
+ required: true
54841
+ }
54842
+ }
54843
+ }
54844
+ },
53415
54845
  count: "number"
53416
54846
  }
53417
54847
  },
53418
54848
  {
53419
54849
  name: "download",
53420
- description: "",
54850
+ description: "Download an object's content, base64-encoded.",
53421
54851
  params: [
53422
54852
  {
53423
54853
  name: "bucket",
53424
54854
  type: "string",
53425
54855
  required: true,
53426
- description: ""
54856
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53427
54857
  },
53428
54858
  {
53429
54859
  name: "key",
53430
54860
  type: "string",
53431
54861
  required: true,
53432
- description: ""
54862
+ description: "Object key."
53433
54863
  }
53434
54864
  ],
53435
54865
  responseShape: {
@@ -53441,54 +54871,73 @@ var integrators_registry_default = {
53441
54871
  },
53442
54872
  {
53443
54873
  name: "list",
53444
- description: "",
54874
+ description: "List object keys in a bucket, optionally prefix-filtered, one page at a time.",
53445
54875
  params: [
53446
54876
  {
53447
54877
  name: "bucket",
53448
54878
  type: "string",
53449
54879
  required: true,
53450
- description: ""
54880
+ description: "Bucket to list; defaults to STORAGE_BUCKET."
53451
54881
  },
53452
54882
  {
53453
54883
  name: "prefix",
53454
54884
  type: "string",
53455
54885
  required: false,
53456
- description: ""
54886
+ description: "Only keys starting with this prefix."
53457
54887
  },
53458
54888
  {
53459
54889
  name: "maxKeys",
53460
54890
  type: "number",
53461
54891
  required: false,
53462
- description: ""
54892
+ description: "Maximum keys per page; defaults to 1000."
53463
54893
  },
53464
54894
  {
53465
54895
  name: "continuationToken",
53466
54896
  type: "string",
53467
54897
  required: false,
53468
- description: ""
54898
+ description: "Pagination token from a previous call's `nextToken`."
53469
54899
  }
53470
54900
  ],
53471
54901
  responseShape: {
53472
- keys: "array",
54902
+ keys: {
54903
+ type: "array",
54904
+ items: {
54905
+ type: "object",
54906
+ properties: {
54907
+ key: {
54908
+ type: "string",
54909
+ required: true
54910
+ },
54911
+ size: {
54912
+ type: "number",
54913
+ required: true
54914
+ },
54915
+ lastModified: {
54916
+ type: "number",
54917
+ required: true
54918
+ }
54919
+ }
54920
+ }
54921
+ },
53473
54922
  truncated: "boolean",
53474
54923
  nextToken: "string"
53475
54924
  }
53476
54925
  },
53477
54926
  {
53478
54927
  name: "delete",
53479
- description: "",
54928
+ description: "Delete an object from a bucket.",
53480
54929
  params: [
53481
54930
  {
53482
54931
  name: "bucket",
53483
54932
  type: "string",
53484
54933
  required: true,
53485
- description: ""
54934
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53486
54935
  },
53487
54936
  {
53488
54937
  name: "key",
53489
54938
  type: "string",
53490
54939
  required: true,
53491
- description: ""
54940
+ description: "Object key to delete."
53492
54941
  }
53493
54942
  ],
53494
54943
  responseShape: {
@@ -53497,31 +54946,31 @@ var integrators_registry_default = {
53497
54946
  },
53498
54947
  {
53499
54948
  name: "getSignedUrl",
53500
- description: "",
54949
+ description: "Generate a time-limited pre-signed URL for direct GET or PUT access to an object.",
53501
54950
  params: [
53502
54951
  {
53503
54952
  name: "bucket",
53504
54953
  type: "string",
53505
54954
  required: true,
53506
- description: ""
54955
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53507
54956
  },
53508
54957
  {
53509
54958
  name: "key",
53510
54959
  type: "string",
53511
54960
  required: true,
53512
- description: ""
54961
+ description: "Object key."
53513
54962
  },
53514
54963
  {
53515
54964
  name: "expiresIn",
53516
54965
  type: "number",
53517
54966
  required: false,
53518
- description: ""
54967
+ description: "URL validity window in seconds; defaults to 3600."
53519
54968
  },
53520
54969
  {
53521
54970
  name: "operation",
53522
54971
  type: "'get' | 'put'",
53523
54972
  required: false,
53524
- description: ""
54973
+ description: "Whether the URL authorizes a read or a write; defaults to 'get'."
53525
54974
  }
53526
54975
  ],
53527
54976
  responseShape: {
@@ -53538,31 +54987,31 @@ var integrators_registry_default = {
53538
54987
  actions: [
53539
54988
  {
53540
54989
  name: "enqueue",
53541
- description: "",
54990
+ description: "Add a job to an in-memory job queue, ordered by priority (higher first) among ready jobs.",
53542
54991
  params: [
53543
54992
  {
53544
54993
  name: "queue",
53545
54994
  type: "string",
53546
54995
  required: true,
53547
- description: ""
54996
+ description: "Queue name."
53548
54997
  },
53549
54998
  {
53550
54999
  name: "payload",
53551
55000
  type: "ServiceParams",
53552
55001
  required: true,
53553
- description: ""
55002
+ description: "Arbitrary job payload."
53554
55003
  },
53555
55004
  {
53556
55005
  name: "delay",
53557
55006
  type: "number",
53558
55007
  required: false,
53559
- description: ""
55008
+ description: "Delay before the job becomes eligible for dequeue, in milliseconds."
53560
55009
  },
53561
55010
  {
53562
55011
  name: "priority",
53563
55012
  type: "number",
53564
55013
  required: false,
53565
- description: ""
55014
+ description: "Priority \u2014 higher values are dequeued before lower ones."
53566
55015
  }
53567
55016
  ],
53568
55017
  responseShape: {
@@ -53572,13 +55021,13 @@ var integrators_registry_default = {
53572
55021
  },
53573
55022
  {
53574
55023
  name: "dequeue",
53575
- description: "",
55024
+ description: "Pop the highest-priority pending job whose delay has elapsed, marking it 'processing'; returns null if none is ready.",
53576
55025
  params: [
53577
55026
  {
53578
55027
  name: "queue",
53579
55028
  type: "string",
53580
55029
  required: true,
53581
- description: ""
55030
+ description: "Queue name."
53582
55031
  }
53583
55032
  ],
53584
55033
  responseShape: {
@@ -53587,13 +55036,13 @@ var integrators_registry_default = {
53587
55036
  },
53588
55037
  {
53589
55038
  name: "status",
53590
- description: "",
55039
+ description: "Look up a job's current status by id.",
53591
55040
  params: [
53592
55041
  {
53593
55042
  name: "jobId",
53594
55043
  type: "string",
53595
55044
  required: true,
53596
- description: ""
55045
+ description: "Job id from enqueue."
53597
55046
  }
53598
55047
  ],
53599
55048
  responseShape: {
@@ -53603,19 +55052,19 @@ var integrators_registry_default = {
53603
55052
  },
53604
55053
  {
53605
55054
  name: "complete",
53606
- description: "",
55055
+ description: "Mark a 'processing' job completed and store its result; no-op (returns false) if the job isn't in 'processing' state.",
53607
55056
  params: [
53608
55057
  {
53609
55058
  name: "jobId",
53610
55059
  type: "string",
53611
55060
  required: true,
53612
- description: ""
55061
+ description: "Job id."
53613
55062
  },
53614
55063
  {
53615
55064
  name: "result",
53616
55065
  type: "ServiceParams",
53617
55066
  required: false,
53618
- description: ""
55067
+ description: "Result payload to attach to the job."
53619
55068
  }
53620
55069
  ],
53621
55070
  responseShape: {
@@ -53624,19 +55073,19 @@ var integrators_registry_default = {
53624
55073
  },
53625
55074
  {
53626
55075
  name: "fail",
53627
- description: "",
55076
+ description: "Mark a 'processing' job failed; no-op (returns false) if the job isn't in 'processing' state.",
53628
55077
  params: [
53629
55078
  {
53630
55079
  name: "jobId",
53631
55080
  type: "string",
53632
55081
  required: true,
53633
- description: ""
55082
+ description: "Job id."
53634
55083
  },
53635
55084
  {
53636
55085
  name: "error",
53637
55086
  type: "string",
53638
55087
  required: false,
53639
- description: ""
55088
+ description: "Failure reason to attach to the job."
53640
55089
  }
53641
55090
  ],
53642
55091
  responseShape: {
@@ -53645,13 +55094,13 @@ var integrators_registry_default = {
53645
55094
  },
53646
55095
  {
53647
55096
  name: "cancel",
53648
- description: "",
55097
+ description: "Remove a 'pending' job from its queue; no-op (returns false) once it has been dequeued.",
53649
55098
  params: [
53650
55099
  {
53651
55100
  name: "jobId",
53652
55101
  type: "string",
53653
55102
  required: true,
53654
- description: ""
55103
+ description: "Job id."
53655
55104
  }
53656
55105
  ],
53657
55106
  responseShape: {
@@ -53660,13 +55109,13 @@ var integrators_registry_default = {
53660
55109
  },
53661
55110
  {
53662
55111
  name: "size",
53663
- description: "",
55112
+ description: "Count pending and processing jobs in a queue.",
53664
55113
  params: [
53665
55114
  {
53666
55115
  name: "queue",
53667
55116
  type: "string",
53668
55117
  required: true,
53669
- description: ""
55118
+ description: "Queue name."
53670
55119
  }
53671
55120
  ],
53672
55121
  responseShape: {
@@ -53684,13 +55133,13 @@ var integrators_registry_default = {
53684
55133
  actions: [
53685
55134
  {
53686
55135
  name: "get",
53687
- description: "",
55136
+ description: "Read a key's value from the in-memory cache; returns null (as `value`) if absent or expired.",
53688
55137
  params: [
53689
55138
  {
53690
55139
  name: "key",
53691
55140
  type: "string",
53692
55141
  required: true,
53693
- description: ""
55142
+ description: "Cache key."
53694
55143
  }
53695
55144
  ],
53696
55145
  responseShape: {
@@ -53699,25 +55148,25 @@ var integrators_registry_default = {
53699
55148
  },
53700
55149
  {
53701
55150
  name: "set",
53702
- description: "",
55151
+ description: "Write a key's value, optionally with an expiry.",
53703
55152
  params: [
53704
55153
  {
53705
55154
  name: "key",
53706
55155
  type: "string",
53707
55156
  required: true,
53708
- description: ""
55157
+ description: "Cache key."
53709
55158
  },
53710
55159
  {
53711
55160
  name: "value",
53712
55161
  type: "ServiceParams",
53713
55162
  required: true,
53714
- description: ""
55163
+ description: "Value to store."
53715
55164
  },
53716
55165
  {
53717
55166
  name: "ttl",
53718
55167
  type: "number",
53719
55168
  required: false,
53720
- description: ""
55169
+ description: "Time-to-live in seconds; omit for no expiry."
53721
55170
  }
53722
55171
  ],
53723
55172
  responseShape: {
@@ -53726,13 +55175,13 @@ var integrators_registry_default = {
53726
55175
  },
53727
55176
  {
53728
55177
  name: "delete",
53729
- description: "",
55178
+ description: "Delete a key.",
53730
55179
  params: [
53731
55180
  {
53732
55181
  name: "key",
53733
55182
  type: "string",
53734
55183
  required: true,
53735
- description: ""
55184
+ description: "Cache key."
53736
55185
  }
53737
55186
  ],
53738
55187
  responseShape: {
@@ -53741,19 +55190,19 @@ var integrators_registry_default = {
53741
55190
  },
53742
55191
  {
53743
55192
  name: "lock",
53744
- description: "",
55193
+ description: "Acquire a mutex on a key; fails (returns acquired:false) if another lock on the key is still alive.",
53745
55194
  params: [
53746
55195
  {
53747
55196
  name: "key",
53748
55197
  type: "string",
53749
55198
  required: true,
53750
- description: ""
55199
+ description: "Lock key."
53751
55200
  },
53752
55201
  {
53753
55202
  name: "ttl",
53754
55203
  type: "number",
53755
55204
  required: false,
53756
- description: ""
55205
+ description: "Lock time-to-live in milliseconds; defaults to 30000 (30s)."
53757
55206
  }
53758
55207
  ],
53759
55208
  responseShape: {
@@ -53763,19 +55212,19 @@ var integrators_registry_default = {
53763
55212
  },
53764
55213
  {
53765
55214
  name: "unlock",
53766
- description: "",
55215
+ description: "Release a lock; only succeeds when `lockId` matches the current holder.",
53767
55216
  params: [
53768
55217
  {
53769
55218
  name: "key",
53770
55219
  type: "string",
53771
55220
  required: true,
53772
- description: ""
55221
+ description: "Lock key."
53773
55222
  },
53774
55223
  {
53775
55224
  name: "lockId",
53776
55225
  type: "string",
53777
55226
  required: true,
53778
- description: ""
55227
+ description: "Lock id returned by the corresponding `lock` call."
53779
55228
  }
53780
55229
  ],
53781
55230
  responseShape: {
@@ -53784,19 +55233,19 @@ var integrators_registry_default = {
53784
55233
  },
53785
55234
  {
53786
55235
  name: "increment",
53787
- description: "",
55236
+ description: "Atomically add to a numeric key's value (creating it at 0 if absent), preserving any existing TTL.",
53788
55237
  params: [
53789
55238
  {
53790
55239
  name: "key",
53791
55240
  type: "string",
53792
55241
  required: true,
53793
- description: ""
55242
+ description: "Cache key."
53794
55243
  },
53795
55244
  {
53796
55245
  name: "by",
53797
55246
  type: "number",
53798
55247
  required: false,
53799
- description: ""
55248
+ description: "Amount to add; defaults to 1 (can be negative to decrement)."
53800
55249
  }
53801
55250
  ],
53802
55251
  responseShape: {
@@ -53805,19 +55254,19 @@ var integrators_registry_default = {
53805
55254
  },
53806
55255
  {
53807
55256
  name: "expire",
53808
- description: "",
55257
+ description: "Set (or reset) a key's expiry; no-op (returns set:false) if the key doesn't exist or is already expired.",
53809
55258
  params: [
53810
55259
  {
53811
55260
  name: "key",
53812
55261
  type: "string",
53813
55262
  required: true,
53814
- description: ""
55263
+ description: "Cache key."
53815
55264
  },
53816
55265
  {
53817
55266
  name: "ttl",
53818
55267
  type: "number",
53819
55268
  required: true,
53820
- description: ""
55269
+ description: "New time-to-live in seconds."
53821
55270
  }
53822
55271
  ],
53823
55272
  responseShape: {
@@ -53826,19 +55275,19 @@ var integrators_registry_default = {
53826
55275
  },
53827
55276
  {
53828
55277
  name: "publish",
53829
- description: "",
55278
+ description: "Publish a message to a channel; delivered synchronously to in-process subscriber callbacks only.",
53830
55279
  params: [
53831
55280
  {
53832
55281
  name: "channel",
53833
55282
  type: "string",
53834
55283
  required: true,
53835
- description: ""
55284
+ description: "Channel name."
53836
55285
  },
53837
55286
  {
53838
55287
  name: "message",
53839
55288
  type: "ServiceParams",
53840
55289
  required: true,
53841
- description: ""
55290
+ description: "Message payload."
53842
55291
  }
53843
55292
  ],
53844
55293
  responseShape: {
@@ -53847,13 +55296,13 @@ var integrators_registry_default = {
53847
55296
  },
53848
55297
  {
53849
55298
  name: "subscribe",
53850
- description: "",
55299
+ description: "Register interest in a channel; does not itself wire a callback (that happens at a higher-level API).",
53851
55300
  params: [
53852
55301
  {
53853
55302
  name: "channel",
53854
55303
  type: "string",
53855
55304
  required: true,
53856
- description: ""
55305
+ description: "Channel name."
53857
55306
  }
53858
55307
  ],
53859
55308
  responseShape: {
@@ -53869,25 +55318,25 @@ var integrators_registry_default = {
53869
55318
  actions: [
53870
55319
  {
53871
55320
  name: "authorize",
53872
- description: "",
55321
+ description: "Build the provider authorization URL (PKCE + state) for an OAuth/OIDC login redirect; real OIDC discovery when OAUTH_CLIENT_ID/SECRET are configured, an in-memory mock otherwise.",
53873
55322
  params: [
53874
55323
  {
53875
55324
  name: "provider",
53876
55325
  type: "'google' | 'github' | 'auth0'",
53877
55326
  required: true,
53878
- description: ""
55327
+ description: "Identity provider; OIDC issuer defaults to Google unless OIDC_ISSUER_URL overrides it."
53879
55328
  },
53880
55329
  {
53881
55330
  name: "scopes",
53882
55331
  type: "string[]",
53883
55332
  required: true,
53884
- description: ""
55333
+ description: "OAuth scopes to request."
53885
55334
  },
53886
55335
  {
53887
55336
  name: "redirectUri",
53888
55337
  type: "string",
53889
55338
  required: true,
53890
- description: ""
55339
+ description: "Callback URL the provider redirects back to after consent."
53891
55340
  }
53892
55341
  ],
53893
55342
  responseShape: {
@@ -53897,19 +55346,19 @@ var integrators_registry_default = {
53897
55346
  },
53898
55347
  {
53899
55348
  name: "token",
53900
- description: "",
55349
+ description: "Exchange an authorization code for tokens, consuming the one-time-use `state` from the matching `authorize` call.",
53901
55350
  params: [
53902
55351
  {
53903
55352
  name: "code",
53904
55353
  type: "string",
53905
55354
  required: true,
53906
- description: ""
55355
+ description: "Authorization code from the provider's redirect callback."
53907
55356
  },
53908
55357
  {
53909
55358
  name: "state",
53910
55359
  type: "string",
53911
55360
  required: true,
53912
- description: ""
55361
+ description: "The `state` value returned by `authorize`."
53913
55362
  }
53914
55363
  ],
53915
55364
  responseShape: {
@@ -53921,13 +55370,13 @@ var integrators_registry_default = {
53921
55370
  },
53922
55371
  {
53923
55372
  name: "refresh",
53924
- description: "",
55373
+ description: "Exchange a refresh token for a new access token.",
53925
55374
  params: [
53926
55375
  {
53927
55376
  name: "refreshToken",
53928
55377
  type: "string",
53929
55378
  required: true,
53930
- description: ""
55379
+ description: "Refresh token from a prior `token` call."
53931
55380
  }
53932
55381
  ],
53933
55382
  responseShape: {
@@ -53937,13 +55386,13 @@ var integrators_registry_default = {
53937
55386
  },
53938
55387
  {
53939
55388
  name: "revoke",
53940
- description: "",
55389
+ description: "Revoke an access or refresh token.",
53941
55390
  params: [
53942
55391
  {
53943
55392
  name: "token",
53944
55393
  type: "string",
53945
55394
  required: true,
53946
- description: ""
55395
+ description: "The access or refresh token to revoke."
53947
55396
  }
53948
55397
  ],
53949
55398
  responseShape: {
@@ -53952,13 +55401,13 @@ var integrators_registry_default = {
53952
55401
  },
53953
55402
  {
53954
55403
  name: "userinfo",
53955
- description: "",
55404
+ description: "Fetch the authenticated user's profile claims for an access token.",
53956
55405
  params: [
53957
55406
  {
53958
55407
  name: "accessToken",
53959
55408
  type: "string",
53960
55409
  required: true,
53961
- description: ""
55410
+ description: "Access token from a prior `token`/`refresh` call."
53962
55411
  }
53963
55412
  ],
53964
55413
  responseShape: {
@@ -53977,41 +55426,76 @@ var integrators_registry_default = {
53977
55426
  actions: [
53978
55427
  {
53979
55428
  name: "list",
53980
- description: "",
55429
+ description: "List declared credentials and their masked (last-4) configuration status; open to any caller.",
53981
55430
  params: [
53982
55431
  {
53983
55432
  name: "service",
53984
55433
  type: "string",
53985
55434
  required: false,
53986
- description: ""
55435
+ description: "Restrict the listing to one service's declared credentials; omit for all services."
53987
55436
  }
53988
55437
  ],
53989
55438
  responseShape: {
53990
55439
  enabled: "boolean",
53991
- entries: "array"
55440
+ entries: {
55441
+ type: "array",
55442
+ items: {
55443
+ type: "object",
55444
+ properties: {
55445
+ service: {
55446
+ type: "string",
55447
+ required: true
55448
+ },
55449
+ envVar: {
55450
+ type: "string",
55451
+ required: true
55452
+ },
55453
+ required: {
55454
+ type: "boolean",
55455
+ required: true
55456
+ },
55457
+ description: {
55458
+ type: "string",
55459
+ required: true
55460
+ },
55461
+ configured: {
55462
+ type: "boolean",
55463
+ required: true
55464
+ },
55465
+ source: {
55466
+ type: "'store' | 'env' | 'none'",
55467
+ required: true
55468
+ },
55469
+ last4: {
55470
+ type: "string",
55471
+ required: true
55472
+ }
55473
+ }
55474
+ }
55475
+ }
53992
55476
  }
53993
55477
  },
53994
55478
  {
53995
55479
  name: "set",
53996
- description: "",
55480
+ description: "Save a credential value into the hosted store; the env var must be one declared for the service (or a well-formed connection-ref name for `database`). Admin/owner role required.",
53997
55481
  params: [
53998
55482
  {
53999
55483
  name: "service",
54000
55484
  type: "string",
54001
55485
  required: true,
54002
- description: ""
55486
+ description: "Integration name the credential belongs to."
54003
55487
  },
54004
55488
  {
54005
55489
  name: "envVar",
54006
55490
  type: "string",
54007
55491
  required: true,
54008
- description: ""
55492
+ description: "Declared env-var name being set."
54009
55493
  },
54010
55494
  {
54011
55495
  name: "value",
54012
55496
  type: "string",
54013
55497
  required: true,
54014
- description: ""
55498
+ description: "Secret value to store; never logged."
54015
55499
  }
54016
55500
  ],
54017
55501
  responseShape: {
@@ -54023,19 +55507,19 @@ var integrators_registry_default = {
54023
55507
  },
54024
55508
  {
54025
55509
  name: "remove",
54026
- description: "",
55510
+ description: "Delete a stored credential from the hosted store. Admin/owner role required.",
54027
55511
  params: [
54028
55512
  {
54029
55513
  name: "service",
54030
55514
  type: "string",
54031
55515
  required: true,
54032
- description: ""
55516
+ description: "Integration name the credential belongs to."
54033
55517
  },
54034
55518
  {
54035
55519
  name: "envVar",
54036
55520
  type: "string",
54037
55521
  required: true,
54038
- description: ""
55522
+ description: "Env-var name to remove."
54039
55523
  }
54040
55524
  ],
54041
55525
  responseShape: {
@@ -54044,13 +55528,13 @@ var integrators_registry_default = {
54044
55528
  },
54045
55529
  {
54046
55530
  name: "test",
54047
- description: "",
55531
+ description: "Check whether a service's required credentials are present and, if a live probe is declared for it, exercise the service to confirm they actually work. Admin/owner role required.",
54048
55532
  params: [
54049
55533
  {
54050
55534
  name: "service",
54051
55535
  type: "string",
54052
55536
  required: true,
54053
- description: ""
55537
+ description: "Integration name to test."
54054
55538
  }
54055
55539
  ],
54056
55540
  responseShape: {
@@ -54064,7 +55548,7 @@ var integrators_registry_default = {
54064
55548
  },
54065
55549
  {
54066
55550
  name: "rotate",
54067
- description: "",
55551
+ description: "Re-encrypt all stored credentials under the current master key (ALMADAR_CREDENTIAL_MASTER_KEY), retiring ALMADAR_CREDENTIAL_MASTER_KEY_PREVIOUS. Admin/owner role required.",
54068
55552
  params: [],
54069
55553
  responseShape: {
54070
55554
  rotated: "number",
@@ -54081,25 +55565,25 @@ var integrators_registry_default = {
54081
55565
  actions: [
54082
55566
  {
54083
55567
  name: "startSpan",
54084
- description: "",
55568
+ description: "Start a trace span (in-memory backend \u2014 no OpenTelemetry SDK/exporter).",
54085
55569
  params: [
54086
55570
  {
54087
55571
  name: "name",
54088
55572
  type: "string",
54089
55573
  required: true,
54090
- description: ""
55574
+ description: "Span name."
54091
55575
  },
54092
55576
  {
54093
55577
  name: "attributes",
54094
55578
  type: "IntegrationParams",
54095
55579
  required: false,
54096
- description: ""
55580
+ description: "Key-value attributes attached to the span."
54097
55581
  },
54098
55582
  {
54099
55583
  name: "traceId",
54100
55584
  type: "string",
54101
55585
  required: false,
54102
- description: ""
55586
+ description: "Existing trace id to attach this span to; a new one is generated when omitted."
54103
55587
  }
54104
55588
  ],
54105
55589
  responseShape: {
@@ -54109,19 +55593,19 @@ var integrators_registry_default = {
54109
55593
  },
54110
55594
  {
54111
55595
  name: "endSpan",
54112
- description: "",
55596
+ description: "Mark a span ended, optionally recording its final status; no-op (returns ended:false) for an unknown span id.",
54113
55597
  params: [
54114
55598
  {
54115
55599
  name: "spanId",
54116
55600
  type: "string",
54117
55601
  required: true,
54118
- description: ""
55602
+ description: "Span id from startSpan."
54119
55603
  },
54120
55604
  {
54121
55605
  name: "status",
54122
55606
  type: "'ok' | 'error'",
54123
55607
  required: false,
54124
- description: ""
55608
+ description: "Final span status."
54125
55609
  }
54126
55610
  ],
54127
55611
  responseShape: {
@@ -54130,25 +55614,25 @@ var integrators_registry_default = {
54130
55614
  },
54131
55615
  {
54132
55616
  name: "addEvent",
54133
- description: "",
55617
+ description: "Attach a timestamped event to an open span; no-op (returns added:false) for an unknown span id.",
54134
55618
  params: [
54135
55619
  {
54136
55620
  name: "spanId",
54137
55621
  type: "string",
54138
55622
  required: true,
54139
- description: ""
55623
+ description: "Span id from startSpan."
54140
55624
  },
54141
55625
  {
54142
55626
  name: "name",
54143
55627
  type: "string",
54144
55628
  required: true,
54145
- description: ""
55629
+ description: "Event name."
54146
55630
  },
54147
55631
  {
54148
55632
  name: "attributes",
54149
55633
  type: "IntegrationParams",
54150
55634
  required: false,
54151
- description: ""
55635
+ description: "Key-value attributes attached to the event."
54152
55636
  }
54153
55637
  ],
54154
55638
  responseShape: {
@@ -54157,31 +55641,31 @@ var integrators_registry_default = {
54157
55641
  },
54158
55642
  {
54159
55643
  name: "recordMetric",
54160
- description: "",
55644
+ description: "Record a metric sample: counters accumulate, gauges overwrite, histograms append to the sample list.",
54161
55645
  params: [
54162
55646
  {
54163
55647
  name: "name",
54164
55648
  type: "string",
54165
55649
  required: true,
54166
- description: ""
55650
+ description: "Metric name."
54167
55651
  },
54168
55652
  {
54169
55653
  name: "value",
54170
55654
  type: "number",
54171
55655
  required: true,
54172
- description: ""
55656
+ description: "Sample value."
54173
55657
  },
54174
55658
  {
54175
55659
  name: "type",
54176
55660
  type: "'counter' | 'gauge' | 'histogram'",
54177
55661
  required: false,
54178
- description: ""
55662
+ description: "Aggregation kind; defaults to 'counter'."
54179
55663
  },
54180
55664
  {
54181
55665
  name: "labels",
54182
55666
  type: "IntegrationParams",
54183
55667
  required: false,
54184
- description: ""
55668
+ description: "Key-value labels attached to the metric (replaces prior labels on the same name)."
54185
55669
  }
54186
55670
  ],
54187
55671
  responseShape: {
@@ -54190,20 +55674,20 @@ var integrators_registry_default = {
54190
55674
  },
54191
55675
  {
54192
55676
  name: "getSpan",
54193
- description: "",
55677
+ description: "Fetch a stored span's full record by id; null if unknown.",
54194
55678
  params: [
54195
55679
  {
54196
55680
  name: "spanId",
54197
55681
  type: "string",
54198
55682
  required: true,
54199
- description: ""
55683
+ description: "Span id from startSpan."
54200
55684
  }
54201
55685
  ],
54202
55686
  responseShape: {}
54203
55687
  },
54204
55688
  {
54205
55689
  name: "getMetrics",
54206
- description: "",
55690
+ description: "Fetch all recorded metrics, keyed by metric name.",
54207
55691
  params: [],
54208
55692
  responseShape: {}
54209
55693
  }
@@ -54216,13 +55700,13 @@ var integrators_registry_default = {
54216
55700
  actions: [
54217
55701
  {
54218
55702
  name: "validate",
54219
- description: "",
55703
+ description: "Validate an orbital schema by writing it to a temp file and shelling out to `npx",
54220
55704
  params: [
54221
55705
  {
54222
55706
  name: "schema",
54223
55707
  type: "string",
54224
55708
  required: true,
54225
- description: ""
55709
+ description: "Raw .orb schema content to validate."
54226
55710
  }
54227
55711
  ],
54228
55712
  responseShape: {
@@ -54241,31 +55725,31 @@ var integrators_registry_default = {
54241
55725
  actions: [
54242
55726
  {
54243
55727
  name: "sendMessage",
54244
- description: "",
55728
+ description: "Send a chat message to the DeepAgent server (POST /api/agent/message), continuing an existing thread or starting one.",
54245
55729
  params: [
54246
55730
  {
54247
55731
  name: "message",
54248
55732
  type: "string",
54249
55733
  required: true,
54250
- description: ""
55734
+ description: "Message text."
54251
55735
  },
54252
55736
  {
54253
55737
  name: "threadId",
54254
55738
  type: "string",
54255
55739
  required: false,
54256
- description: ""
55740
+ description: "Existing thread id to continue; a new thread starts when omitted."
54257
55741
  },
54258
55742
  {
54259
55743
  name: "skill",
54260
55744
  type: "string",
54261
55745
  required: false,
54262
- description: ""
55746
+ description: "Named skill to invoke for this message."
54263
55747
  },
54264
55748
  {
54265
55749
  name: "context",
54266
55750
  type: "IntegrationParams",
54267
55751
  required: false,
54268
- description: ""
55752
+ description: "Extra context passed through to the agent."
54269
55753
  }
54270
55754
  ],
54271
55755
  responseShape: {
@@ -54275,13 +55759,13 @@ var integrators_registry_default = {
54275
55759
  },
54276
55760
  {
54277
55761
  name: "cancelGeneration",
54278
- description: "",
55762
+ description: "Cancel an in-flight generation on a DeepAgent thread (POST /api/agent/cancel).",
54279
55763
  params: [
54280
55764
  {
54281
55765
  name: "threadId",
54282
55766
  type: "string",
54283
55767
  required: true,
54284
- description: ""
55768
+ description: "Thread whose generation to cancel."
54285
55769
  }
54286
55770
  ],
54287
55771
  responseShape: {
@@ -54290,13 +55774,13 @@ var integrators_registry_default = {
54290
55774
  },
54291
55775
  {
54292
55776
  name: "validateSchema",
54293
- description: "",
55777
+ description: "Validate a schema via the DeepAgent server (POST /api/schema/validate).",
54294
55778
  params: [
54295
55779
  {
54296
55780
  name: "schema",
54297
55781
  type: "string",
54298
55782
  required: true,
54299
- description: ""
55783
+ description: "Schema content to validate."
54300
55784
  }
54301
55785
  ],
54302
55786
  responseShape: {
@@ -54306,19 +55790,19 @@ var integrators_registry_default = {
54306
55790
  },
54307
55791
  {
54308
55792
  name: "compileSchema",
54309
- description: "",
55793
+ description: "Compile a schema to a target shell via the DeepAgent server (POST /api/schema/compile).",
54310
55794
  params: [
54311
55795
  {
54312
55796
  name: "schema",
54313
55797
  type: "string",
54314
55798
  required: true,
54315
- description: ""
55799
+ description: "Schema content to compile."
54316
55800
  },
54317
55801
  {
54318
55802
  name: "shell",
54319
55803
  type: "string",
54320
55804
  required: false,
54321
- description: ""
55805
+ description: "Target codegen shell (e.g. 'typescript')."
54322
55806
  }
54323
55807
  ],
54324
55808
  responseShape: {
@@ -54328,17 +55812,36 @@ var integrators_registry_default = {
54328
55812
  },
54329
55813
  {
54330
55814
  name: "getThreadHistory",
54331
- description: "",
55815
+ description: "Fetch a thread's message history via the DeepAgent server (POST /api/agent/history).",
54332
55816
  params: [
54333
55817
  {
54334
55818
  name: "threadId",
54335
55819
  type: "string",
54336
55820
  required: true,
54337
- description: ""
55821
+ description: "Thread id."
54338
55822
  }
54339
55823
  ],
54340
55824
  responseShape: {
54341
- messages: "array"
55825
+ messages: {
55826
+ type: "array",
55827
+ items: {
55828
+ type: "object",
55829
+ properties: {
55830
+ role: {
55831
+ type: "string",
55832
+ required: true
55833
+ },
55834
+ content: {
55835
+ type: "string",
55836
+ required: true
55837
+ },
55838
+ timestamp: {
55839
+ type: "number",
55840
+ required: true
55841
+ }
55842
+ }
55843
+ }
55844
+ }
54342
55845
  }
54343
55846
  }
54344
55847
  ]
@@ -54350,25 +55853,25 @@ var integrators_registry_default = {
54350
55853
  actions: [
54351
55854
  {
54352
55855
  name: "query",
54353
- description: "",
55856
+ description: "Run a single read-only SELECT against a Postgres connection (write statements and multi-statement SQL are rejected before execution).",
54354
55857
  params: [
54355
55858
  {
54356
55859
  name: "connectionRef",
54357
55860
  type: "string",
54358
55861
  required: true,
54359
- description: ""
55862
+ description: "Env-var NAME whose value is the Postgres connection string \u2014 never the secret itself; resolved from the credential store/environment at run time."
54360
55863
  },
54361
55864
  {
54362
55865
  name: "sql",
54363
55866
  type: "string",
54364
55867
  required: true,
54365
- description: ""
55868
+ description: "SQL text; must be exactly one SELECT statement."
54366
55869
  },
54367
55870
  {
54368
55871
  name: "params",
54369
55872
  type: "DatabaseQueryParamValue[]",
54370
55873
  required: false,
54371
- description: ""
55874
+ description: "Positional bind parameters for the query."
54372
55875
  }
54373
55876
  ],
54374
55877
  responseShape: {
@@ -54385,13 +55888,13 @@ var integrators_registry_default = {
54385
55888
  actions: [
54386
55889
  {
54387
55890
  name: "getPage",
54388
- description: "",
55891
+ description: "Look up a Wikipedia page (redirect-resolved): a one-line description, a Commons thumbnail, and the lead-section extract; empty fields on a miss.",
54389
55892
  params: [
54390
55893
  {
54391
55894
  name: "title",
54392
55895
  type: "string",
54393
55896
  required: true,
54394
- description: ""
55897
+ description: "Page title to look up."
54395
55898
  }
54396
55899
  ],
54397
55900
  responseShape: {
@@ -54410,13 +55913,13 @@ var integrators_registry_default = {
54410
55913
  actions: [
54411
55914
  {
54412
55915
  name: "svgExists",
54413
- description: "",
55916
+ description: "Check whether an icon exists at the given Iconify API path (a GET, not a HEAD, despite the name).",
54414
55917
  params: [
54415
55918
  {
54416
55919
  name: "path",
54417
55920
  type: "string",
54418
55921
  required: true,
54419
- description: ""
55922
+ description: "Iconify API path segment to probe, e.g. 'prefix/name.svg'."
54420
55923
  }
54421
55924
  ],
54422
55925
  responseShape: {
@@ -54425,19 +55928,19 @@ var integrators_registry_default = {
54425
55928
  },
54426
55929
  {
54427
55930
  name: "search",
54428
- description: "",
55931
+ description: "Search Iconify's icon sets by relevance.",
54429
55932
  params: [
54430
55933
  {
54431
55934
  name: "query",
54432
55935
  type: "string",
54433
55936
  required: true,
54434
- description: ""
55937
+ description: "Search query text."
54435
55938
  },
54436
55939
  {
54437
55940
  name: "limit",
54438
55941
  type: "number",
54439
55942
  required: false,
54440
- description: ""
55943
+ description: "Maximum icon ids to return; defaults to 1."
54441
55944
  }
54442
55945
  ],
54443
55946
  responseShape: {
@@ -54446,13 +55949,13 @@ var integrators_registry_default = {
54446
55949
  },
54447
55950
  {
54448
55951
  name: "getIconBody",
54449
- description: "",
55952
+ description: "Fetch an icon's raw SVG body (for color-tone classification); null if the icon or its collection isn't found.",
54450
55953
  params: [
54451
55954
  {
54452
55955
  name: "iconId",
54453
55956
  type: "string",
54454
55957
  required: true,
54455
- description: ""
55958
+ description: 'Icon id in "prefix:name" form.'
54456
55959
  }
54457
55960
  ],
54458
55961
  responseShape: {
@@ -54468,23 +55971,54 @@ var integrators_registry_default = {
54468
55971
  actions: [
54469
55972
  {
54470
55973
  name: "search",
54471
- description: "",
55974
+ description: "Search arXiv's public Atom API by relevance.",
54472
55975
  params: [
54473
55976
  {
54474
55977
  name: "query",
54475
55978
  type: "string",
54476
55979
  required: true,
54477
- description: ""
55980
+ description: "Search query text (matched across all fields)."
54478
55981
  },
54479
55982
  {
54480
55983
  name: "maxResults",
54481
55984
  type: "number",
54482
55985
  required: false,
54483
- description: ""
55986
+ description: "Maximum results to return; defaults to 8."
54484
55987
  }
54485
55988
  ],
54486
55989
  responseShape: {
54487
- results: "array"
55990
+ results: {
55991
+ type: "array",
55992
+ items: {
55993
+ type: "object",
55994
+ properties: {
55995
+ id: {
55996
+ type: "string",
55997
+ required: true
55998
+ },
55999
+ title: {
56000
+ type: "string",
56001
+ required: true
56002
+ },
56003
+ summary: {
56004
+ type: "string",
56005
+ required: true
56006
+ },
56007
+ authors: {
56008
+ type: "string[]",
56009
+ required: true
56010
+ },
56011
+ published: {
56012
+ type: "string",
56013
+ required: true
56014
+ },
56015
+ url: {
56016
+ type: "string",
56017
+ required: true
56018
+ }
56019
+ }
56020
+ }
56021
+ }
54488
56022
  }
54489
56023
  }
54490
56024
  ]
@@ -54507,7 +56041,7 @@ var integrators_registry_default = {
54507
56041
  // src/patterns/component-mapping.json
54508
56042
  var component_mapping_default = {
54509
56043
  version: "1.0.0",
54510
- exportedAt: "2026-09-02T20:03:03.703Z",
56044
+ exportedAt: "2026-09-03T18:48:23.816Z",
54511
56045
  mappings: {
54512
56046
  "page-header": {
54513
56047
  component: "PageHeader",
@@ -55920,6 +57454,26 @@ var component_mapping_default = {
55920
57454
  component: "DocumentDetails",
55921
57455
  importPath: "@/components/core/molecules/DocumentDetails",
55922
57456
  category: "display"
57457
+ },
57458
+ "floating-toolbar": {
57459
+ component: "FloatingToolbar",
57460
+ importPath: "@/components/core/molecules/FloatingToolbar",
57461
+ category: "component"
57462
+ },
57463
+ "dock-layout": {
57464
+ component: "DockLayout",
57465
+ importPath: "@/components/core/organisms/DockLayout",
57466
+ category: "layout"
57467
+ },
57468
+ "command-palette": {
57469
+ component: "CommandPalette",
57470
+ importPath: "@/components/core/molecules/CommandPalette",
57471
+ category: "component"
57472
+ },
57473
+ "game-audio-cue": {
57474
+ component: "GameAudioCue",
57475
+ importPath: "@/components/game/atoms/GameAudioCue",
57476
+ category: "game"
55923
57477
  }
55924
57478
  }
55925
57479
  };
@@ -55927,7 +57481,7 @@ var component_mapping_default = {
55927
57481
  // src/patterns/event-contracts.json
55928
57482
  var event_contracts_default = {
55929
57483
  version: "1.0.0",
55930
- exportedAt: "2026-09-02T20:03:03.703Z",
57484
+ exportedAt: "2026-09-03T18:48:23.816Z",
55931
57485
  contracts: {
55932
57486
  form: {
55933
57487
  emits: [
@@ -57142,6 +58696,7 @@ var PATTERN_TYPES = [
57142
58696
  "choice-button",
57143
58697
  "code-block",
57144
58698
  "code-runner-panel",
58699
+ "command-palette",
57145
58700
  "community-links",
57146
58701
  "conditional-wrapper",
57147
58702
  "confetti-effect",
@@ -57170,6 +58725,7 @@ var PATTERN_TYPES = [
57170
58725
  "doc-search",
57171
58726
  "doc-sidebar",
57172
58727
  "doc-toc",
58728
+ "dock-layout",
57173
58729
  "document-details",
57174
58730
  "document-panel",
57175
58731
  "document-viewer",
@@ -57203,6 +58759,7 @@ var PATTERN_TYPES = [
57203
58759
  "flip-card",
57204
58760
  "flip-container",
57205
58761
  "floating-action-button",
58762
+ "floating-toolbar",
57206
58763
  "form",
57207
58764
  "form-actions",
57208
58765
  "form-field",
@@ -57210,6 +58767,7 @@ var PATTERN_TYPES = [
57210
58767
  "form-section",
57211
58768
  "form-section-header",
57212
58769
  "fx-overlay",
58770
+ "game-audio-cue",
57213
58771
  "game-audio-toggle",
57214
58772
  "game-hud",
57215
58773
  "game-icon",