@almadar/core 10.80.0 → 10.81.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 +28 -0
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-C4uehm-r.d.ts → effect-BHoSW19_.d.ts} +259 -4
  5. package/dist/{entityAccess-BMKFgmsc.d.ts → entityAccess-0POr1WuY.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +400 -0
  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 +28 -0
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/{index-DqUnw2Oo.d.ts → index-rVlLkZJu.d.ts} +4 -4
  13. package/dist/index.d.ts +10 -10
  14. package/dist/index.js +1553 -406
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/mock/index.js +28 -0
  18. package/dist/mock/index.js.map +1 -1
  19. package/dist/patterns/component-mapping.json +11 -1
  20. package/dist/patterns/event-contracts.json +1 -1
  21. package/dist/patterns/index.d.ts +2611 -438
  22. package/dist/patterns/index.js +1391 -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 +373 -1
  26. package/dist/patterns/registry.json +373 -1
  27. package/dist/patterns/services-registry.json +1171 -424
  28. package/dist/{schema-Cma07_18.d.ts → schema-CkTTGH6l.d.ts} +2 -2
  29. package/dist/{trait-BXkQKZbO.d.ts → trait-D269f6pt.d.ts} +1 -1
  30. package/dist/types/index.d.ts +5 -5
  31. package/dist/types/index.js +164 -1
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-DoAKLgCZ.d.ts → types-7PHjoE7m.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-03T03:26:05.097Z",
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"
@@ -35160,6 +35182,19 @@ var patterns_registry_default = {
35160
35182
  "string"
35161
35183
  ],
35162
35184
  description: "Class for right/bottom pane"
35185
+ },
35186
+ onRatioChange: {
35187
+ types: [
35188
+ "function"
35189
+ ],
35190
+ 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.",
35191
+ kind: "callback",
35192
+ callbackArgs: [
35193
+ {
35194
+ name: "ratio",
35195
+ type: "number"
35196
+ }
35197
+ ]
35163
35198
  }
35164
35199
  }
35165
35200
  },
@@ -42186,6 +42221,20 @@ var patterns_registry_default = {
42186
42221
  description: "Draw numeric labels on grid lines (default false).",
42187
42222
  default: false
42188
42223
  },
42224
+ tickLabelFontSize: {
42225
+ types: [
42226
+ "number"
42227
+ ],
42228
+ description: "Font size in px for axis tick labels (default 10).",
42229
+ default: 10
42230
+ },
42231
+ labelFontSize: {
42232
+ types: [
42233
+ "number"
42234
+ ],
42235
+ description: "Base font size in px for all other canvas annotations (points, vectors, guides, curves, regions, angles, hops; default 12).",
42236
+ default: 12
42237
+ },
42189
42238
  showCurveLabels: {
42190
42239
  types: [
42191
42240
  "boolean"
@@ -51566,6 +51615,329 @@ var patterns_registry_default = {
51566
51615
  description: "className prop"
51567
51616
  }
51568
51617
  }
51618
+ },
51619
+ "floating-toolbar": {
51620
+ type: "floating-toolbar",
51621
+ category: "component",
51622
+ tier: "molecules",
51623
+ family: "core",
51624
+ description: "FloatingToolbar component",
51625
+ suggestedFor: [
51626
+ "floating",
51627
+ "toolbar",
51628
+ "floating toolbar"
51629
+ ],
51630
+ typicalSize: "medium",
51631
+ propsSchema: {
51632
+ items: {
51633
+ types: [
51634
+ "array"
51635
+ ],
51636
+ description: "Tool items rendered as icon buttons",
51637
+ required: true,
51638
+ items: {
51639
+ types: [
51640
+ "object"
51641
+ ],
51642
+ properties: {
51643
+ id: {
51644
+ types: [
51645
+ "string"
51646
+ ]
51647
+ },
51648
+ icon: {
51649
+ types: [
51650
+ "icon",
51651
+ "string"
51652
+ ]
51653
+ },
51654
+ label: {
51655
+ types: [
51656
+ "string"
51657
+ ]
51658
+ },
51659
+ event: {
51660
+ types: [
51661
+ "string"
51662
+ ]
51663
+ },
51664
+ action: {
51665
+ types: [
51666
+ "string"
51667
+ ]
51668
+ },
51669
+ actionPayload: {
51670
+ types: [
51671
+ "object"
51672
+ ],
51673
+ freeform: true,
51674
+ eventPayloadBrand: true
51675
+ },
51676
+ active: {
51677
+ types: [
51678
+ "boolean"
51679
+ ]
51680
+ },
51681
+ disabled: {
51682
+ types: [
51683
+ "boolean"
51684
+ ]
51685
+ }
51686
+ },
51687
+ required: [
51688
+ "id",
51689
+ "icon",
51690
+ "label"
51691
+ ]
51692
+ }
51693
+ },
51694
+ position: {
51695
+ types: [
51696
+ "string"
51697
+ ],
51698
+ description: "Strip position within the app frame.",
51699
+ enumValues: [
51700
+ "bottom-center",
51701
+ "bottom-left",
51702
+ "bottom-right"
51703
+ ],
51704
+ default: "bottom-center"
51705
+ },
51706
+ children: {
51707
+ types: [
51708
+ "node"
51709
+ ],
51710
+ description: "Custom cells appended after the items, separated by a divider"
51711
+ },
51712
+ className: {
51713
+ types: [
51714
+ "string"
51715
+ ],
51716
+ description: "Additional CSS classes on the positioned root"
51717
+ }
51718
+ }
51719
+ },
51720
+ "dock-layout": {
51721
+ type: "dock-layout",
51722
+ category: "layout",
51723
+ tier: "organisms",
51724
+ family: "core",
51725
+ description: "DockLayout component",
51726
+ suggestedFor: [
51727
+ "dock",
51728
+ "layout",
51729
+ "dock layout"
51730
+ ],
51731
+ typicalSize: "large",
51732
+ propsSchema: {
51733
+ rail: {
51734
+ types: [
51735
+ "node"
51736
+ ],
51737
+ description: "Fixed-width far-left vertical strip (e.g. an icon nav rail)."
51738
+ },
51739
+ sidebar: {
51740
+ types: [
51741
+ "node"
51742
+ ],
51743
+ description: "Collapsible, resizable left sidebar."
51744
+ },
51745
+ main: {
51746
+ types: [
51747
+ "node"
51748
+ ],
51749
+ description: "Required center region.",
51750
+ required: true
51751
+ },
51752
+ bottomPanel: {
51753
+ types: [
51754
+ "node"
51755
+ ],
51756
+ description: "Collapsible, resizable-height bottom panel."
51757
+ },
51758
+ statusBar: {
51759
+ types: [
51760
+ "node"
51761
+ ],
51762
+ description: "Slim strip pinned to the bottom of the frame, below the bottom panel."
51763
+ },
51764
+ secondarySidebar: {
51765
+ types: [
51766
+ "node"
51767
+ ],
51768
+ description: "Collapsible right sidebar."
51769
+ },
51770
+ railWidth: {
51771
+ types: [
51772
+ "number"
51773
+ ],
51774
+ description: "Width of `rail` in pixels. @default 56",
51775
+ default: 56
51776
+ },
51777
+ secondarySidebarWidth: {
51778
+ types: [
51779
+ "number"
51780
+ ],
51781
+ description: "Width of `secondarySidebar` in pixels (fixed \u2014 not resizable). @default 280",
51782
+ default: 280
51783
+ },
51784
+ sidebarCollapsed: {
51785
+ types: [
51786
+ "boolean"
51787
+ ],
51788
+ description: "Whether `sidebar` is collapsed. @default false",
51789
+ default: false
51790
+ },
51791
+ onSidebarCollapsedChange: {
51792
+ types: [
51793
+ "function"
51794
+ ],
51795
+ description: "onSidebarCollapsedChange prop",
51796
+ kind: "callback",
51797
+ callbackArgs: [
51798
+ {
51799
+ name: "collapsed",
51800
+ type: "boolean"
51801
+ }
51802
+ ]
51803
+ },
51804
+ sidebarWidth: {
51805
+ types: [
51806
+ "number"
51807
+ ],
51808
+ description: "Sidebar size as a SplitPane ratio (0-100, percentage of the sidebar/main split). @default 20",
51809
+ default: 20
51810
+ },
51811
+ onSidebarWidthChange: {
51812
+ types: [
51813
+ "function"
51814
+ ],
51815
+ description: "onSidebarWidthChange prop",
51816
+ kind: "callback",
51817
+ callbackArgs: [
51818
+ {
51819
+ name: "width",
51820
+ type: "number"
51821
+ }
51822
+ ]
51823
+ },
51824
+ sidebarMinSize: {
51825
+ types: [
51826
+ "number"
51827
+ ],
51828
+ description: "Minimum sidebar size in pixels, forwarded to SplitPane's `minSize`. @default 160",
51829
+ default: 160
51830
+ },
51831
+ bottomPanelCollapsed: {
51832
+ types: [
51833
+ "boolean"
51834
+ ],
51835
+ description: "Whether `bottomPanel` is collapsed. @default false",
51836
+ default: false
51837
+ },
51838
+ onBottomPanelCollapsedChange: {
51839
+ types: [
51840
+ "function"
51841
+ ],
51842
+ description: "onBottomPanelCollapsedChange prop",
51843
+ kind: "callback",
51844
+ callbackArgs: [
51845
+ {
51846
+ name: "collapsed",
51847
+ type: "boolean"
51848
+ }
51849
+ ]
51850
+ },
51851
+ bottomPanelHeight: {
51852
+ types: [
51853
+ "number"
51854
+ ],
51855
+ description: "Bottom panel size as a SplitPane ratio (0-100, percentage given to the panel). @default 30",
51856
+ default: 30
51857
+ },
51858
+ onBottomPanelHeightChange: {
51859
+ types: [
51860
+ "function"
51861
+ ],
51862
+ description: "onBottomPanelHeightChange prop",
51863
+ kind: "callback",
51864
+ callbackArgs: [
51865
+ {
51866
+ name: "height",
51867
+ type: "number"
51868
+ }
51869
+ ]
51870
+ },
51871
+ bottomPanelMinSize: {
51872
+ types: [
51873
+ "number"
51874
+ ],
51875
+ description: "Minimum bottom panel size in pixels, forwarded to SplitPane's `minSize`. @default 120",
51876
+ default: 120
51877
+ },
51878
+ secondarySidebarCollapsed: {
51879
+ types: [
51880
+ "boolean"
51881
+ ],
51882
+ description: "Whether `secondarySidebar` is collapsed. @default false",
51883
+ default: false
51884
+ },
51885
+ onSecondarySidebarCollapsedChange: {
51886
+ types: [
51887
+ "function"
51888
+ ],
51889
+ description: "onSecondarySidebarCollapsedChange prop",
51890
+ kind: "callback",
51891
+ callbackArgs: [
51892
+ {
51893
+ name: "collapsed",
51894
+ type: "boolean"
51895
+ }
51896
+ ]
51897
+ },
51898
+ className: {
51899
+ types: [
51900
+ "string"
51901
+ ],
51902
+ description: "Additional CSS classes on the root frame."
51903
+ },
51904
+ railClassName: {
51905
+ types: [
51906
+ "string"
51907
+ ],
51908
+ description: "railClassName prop"
51909
+ },
51910
+ sidebarClassName: {
51911
+ types: [
51912
+ "string"
51913
+ ],
51914
+ description: "sidebarClassName prop"
51915
+ },
51916
+ mainClassName: {
51917
+ types: [
51918
+ "string"
51919
+ ],
51920
+ description: "mainClassName prop"
51921
+ },
51922
+ bottomPanelClassName: {
51923
+ types: [
51924
+ "string"
51925
+ ],
51926
+ description: "bottomPanelClassName prop"
51927
+ },
51928
+ statusBarClassName: {
51929
+ types: [
51930
+ "string"
51931
+ ],
51932
+ description: "statusBarClassName prop"
51933
+ },
51934
+ secondarySidebarClassName: {
51935
+ types: [
51936
+ "string"
51937
+ ],
51938
+ description: "secondarySidebarClassName prop"
51939
+ }
51940
+ }
51569
51941
  }
51570
51942
  },
51571
51943
  categories: [
@@ -51591,7 +51963,7 @@ var patterns_registry_default = {
51591
51963
  // src/patterns/integrators-registry.json
51592
51964
  var integrators_registry_default = {
51593
51965
  version: "1.0.0",
51594
- exportedAt: "2026-08-29T08:09:09.100Z",
51966
+ exportedAt: "2026-09-03T08:33:38.850Z",
51595
51967
  integrators: {
51596
51968
  github: {
51597
51969
  name: "github",
@@ -51600,25 +51972,25 @@ var integrators_registry_default = {
51600
51972
  actions: [
51601
51973
  {
51602
51974
  name: "cloneRepo",
51603
- description: "",
51975
+ description: "Clone a repository via the git CLI into a local target directory, using the configured token for auth.",
51604
51976
  params: [
51605
51977
  {
51606
51978
  name: "repoUrl",
51607
51979
  type: "string",
51608
51980
  required: true,
51609
- description: ""
51981
+ description: "HTTPS clone URL, e.g. https://github.com/owner/repo. Owner/repo are parsed from it when not preconfigured."
51610
51982
  },
51611
51983
  {
51612
51984
  name: "targetDir",
51613
51985
  type: "string",
51614
51986
  required: true,
51615
- description: ""
51987
+ description: "Local directory to clone into."
51616
51988
  },
51617
51989
  {
51618
51990
  name: "branch",
51619
51991
  type: "string",
51620
51992
  required: false,
51621
- description: ""
51993
+ description: "Branch to check out after cloning; defaults to the repo's default branch."
51622
51994
  }
51623
51995
  ],
51624
51996
  responseShape: {
@@ -51627,19 +51999,19 @@ var integrators_registry_default = {
51627
51999
  },
51628
52000
  {
51629
52001
  name: "createBranch",
51630
- description: "",
52002
+ description: "Create a new local branch via the git CLI in the configured working directory.",
51631
52003
  params: [
51632
52004
  {
51633
52005
  name: "branchName",
51634
52006
  type: "string",
51635
52007
  required: true,
51636
- description: ""
52008
+ description: "Name of the branch to create."
51637
52009
  },
51638
52010
  {
51639
52011
  name: "baseBranch",
51640
52012
  type: "string",
51641
52013
  required: false,
51642
- description: ""
52014
+ description: "Branch to branch from; defaults to the current branch."
51643
52015
  }
51644
52016
  ],
51645
52017
  responseShape: {
@@ -51648,19 +52020,19 @@ var integrators_registry_default = {
51648
52020
  },
51649
52021
  {
51650
52022
  name: "commit",
51651
- description: "",
52023
+ description: "Commit staged (or given) changes via the git CLI in the configured working directory.",
51652
52024
  params: [
51653
52025
  {
51654
52026
  name: "message",
51655
52027
  type: "string",
51656
52028
  required: true,
51657
- description: ""
52029
+ description: "Commit message."
51658
52030
  },
51659
52031
  {
51660
52032
  name: "files",
51661
52033
  type: "string[]",
51662
52034
  required: false,
51663
- description: ""
52035
+ description: "Specific files to commit; when omitted, all changes are committed."
51664
52036
  }
51665
52037
  ],
51666
52038
  responseShape: {
@@ -51669,19 +52041,19 @@ var integrators_registry_default = {
51669
52041
  },
51670
52042
  {
51671
52043
  name: "push",
51672
- description: "",
52044
+ description: "Push a local branch to the remote via the git CLI, using the configured token for auth.",
51673
52045
  params: [
51674
52046
  {
51675
52047
  name: "branchName",
51676
52048
  type: "string",
51677
52049
  required: true,
51678
- description: ""
52050
+ description: "Branch name to push."
51679
52051
  },
51680
52052
  {
51681
52053
  name: "force",
51682
52054
  type: "boolean",
51683
52055
  required: false,
51684
- description: ""
52056
+ description: "Force-push (overwrites remote history); never set true in an agent context."
51685
52057
  }
51686
52058
  ],
51687
52059
  responseShape: {
@@ -51690,37 +52062,37 @@ var integrators_registry_default = {
51690
52062
  },
51691
52063
  {
51692
52064
  name: "createPR",
51693
- description: "",
52065
+ description: "Open a pull request via the GitHub REST API.",
51694
52066
  params: [
51695
52067
  {
51696
52068
  name: "title",
51697
52069
  type: "string",
51698
52070
  required: true,
51699
- description: ""
52071
+ description: "Pull request title."
51700
52072
  },
51701
52073
  {
51702
52074
  name: "body",
51703
52075
  type: "string",
51704
52076
  required: true,
51705
- description: ""
52077
+ description: "Pull request description body."
51706
52078
  },
51707
52079
  {
51708
52080
  name: "baseBranch",
51709
52081
  type: "string",
51710
52082
  required: true,
51711
- description: ""
52083
+ description: "Branch the PR merges into, e.g. main."
51712
52084
  },
51713
52085
  {
51714
52086
  name: "headBranch",
51715
52087
  type: "string",
51716
52088
  required: true,
51717
- description: ""
52089
+ description: "Branch the PR merges from (the feature branch)."
51718
52090
  },
51719
52091
  {
51720
52092
  name: "draft",
51721
52093
  type: "boolean",
51722
52094
  required: false,
51723
- description: ""
52095
+ description: "Open as a draft PR instead of ready-for-review."
51724
52096
  }
51725
52097
  ],
51726
52098
  responseShape: {
@@ -51731,55 +52103,93 @@ var integrators_registry_default = {
51731
52103
  },
51732
52104
  {
51733
52105
  name: "getPRComments",
51734
- description: "",
52106
+ description: "List review comments on a pull request via the GitHub REST API.",
51735
52107
  params: [
51736
52108
  {
51737
52109
  name: "prNumber",
51738
52110
  type: "number",
51739
52111
  required: true,
51740
- description: ""
52112
+ description: "Pull request number."
51741
52113
  }
51742
52114
  ],
51743
52115
  responseShape: {
51744
- comments: "array"
52116
+ comments: {
52117
+ type: "array",
52118
+ items: {
52119
+ type: "object",
52120
+ properties: {
52121
+ id: {
52122
+ type: "number",
52123
+ required: true
52124
+ },
52125
+ body: {
52126
+ type: "string",
52127
+ required: true
52128
+ },
52129
+ user: {
52130
+ type: "string",
52131
+ required: true
52132
+ }
52133
+ }
52134
+ }
52135
+ }
51745
52136
  }
51746
52137
  },
51747
52138
  {
51748
52139
  name: "listIssues",
51749
- description: "",
52140
+ description: "List issues on the configured repository via the GitHub REST API.",
51750
52141
  params: [
51751
52142
  {
51752
52143
  name: "state",
51753
52144
  type: "string",
51754
52145
  required: false,
51755
- description: ""
52146
+ description: "Issue state filter: 'open', 'closed', or 'all'; defaults to open."
51756
52147
  },
51757
52148
  {
51758
52149
  name: "labels",
51759
52150
  type: "string[]",
51760
52151
  required: false,
51761
- description: ""
52152
+ description: "Only issues carrying all of these labels."
51762
52153
  },
51763
52154
  {
51764
52155
  name: "per_page",
51765
52156
  type: "number",
51766
52157
  required: false,
51767
- description: ""
52158
+ description: "Page size for the GitHub API request."
51768
52159
  }
51769
52160
  ],
51770
52161
  responseShape: {
51771
- issues: "array"
52162
+ issues: {
52163
+ type: "array",
52164
+ items: {
52165
+ type: "object",
52166
+ properties: {
52167
+ number: {
52168
+ type: "number",
52169
+ required: true
52170
+ },
52171
+ title: {
52172
+ type: "string",
52173
+ required: true
52174
+ },
52175
+ state: {
52176
+ type: "string",
52177
+ required: true
52178
+ }
52179
+ }
52180
+ }
52181
+ }
51772
52182
  }
51773
52183
  },
51774
52184
  {
51775
52185
  name: "getIssue",
51776
- description: "",
52186
+ description: "Fetch a single issue's details via the GitHub REST API.",
51777
52187
  params: [
51778
52188
  {
51779
52189
  name: "issueNumber",
51780
52190
  type: "number",
51781
52191
  required: true,
51782
- description: ""
52192
+ description: "Issue number."
51783
52193
  }
51784
52194
  ],
51785
52195
  responseShape: {
@@ -51791,31 +52201,31 @@ var integrators_registry_default = {
51791
52201
  },
51792
52202
  {
51793
52203
  name: "getFile",
51794
- description: "",
52204
+ description: "Read a file's content from a repository at a given ref (declared intent \u2014 dispatch is being wired).",
51795
52205
  params: [
51796
52206
  {
51797
52207
  name: "owner",
51798
52208
  type: "string",
51799
52209
  required: true,
51800
- description: ""
52210
+ description: "Repository owner (user or org)."
51801
52211
  },
51802
52212
  {
51803
52213
  name: "repo",
51804
52214
  type: "string",
51805
52215
  required: true,
51806
- description: ""
52216
+ description: "Repository name."
51807
52217
  },
51808
52218
  {
51809
52219
  name: "path",
51810
52220
  type: "string",
51811
52221
  required: true,
51812
- description: ""
52222
+ description: "File path within the repository."
51813
52223
  },
51814
52224
  {
51815
52225
  name: "ref",
51816
52226
  type: "string",
51817
52227
  required: false,
51818
- description: ""
52228
+ description: "Branch, tag, or commit SHA to read from; defaults to the default branch."
51819
52229
  }
51820
52230
  ],
51821
52231
  responseShape: {
@@ -51827,76 +52237,99 @@ var integrators_registry_default = {
51827
52237
  },
51828
52238
  {
51829
52239
  name: "listCommits",
51830
- description: "",
52240
+ description: "List commits on a repository, optionally filtered by file path (declared intent \u2014 dispatch is being wired).",
51831
52241
  params: [
51832
52242
  {
51833
52243
  name: "owner",
51834
52244
  type: "string",
51835
52245
  required: true,
51836
- description: ""
52246
+ description: "Repository owner (user or org)."
51837
52247
  },
51838
52248
  {
51839
52249
  name: "repo",
51840
52250
  type: "string",
51841
52251
  required: true,
51842
- description: ""
52252
+ description: "Repository name."
51843
52253
  },
51844
52254
  {
51845
52255
  name: "path",
51846
52256
  type: "string",
51847
52257
  required: false,
51848
- description: ""
52258
+ description: "Only commits touching this file path."
51849
52259
  },
51850
52260
  {
51851
52261
  name: "ref",
51852
52262
  type: "string",
51853
52263
  required: false,
51854
- description: ""
52264
+ description: "Branch, tag, or commit SHA to start from; defaults to the default branch."
51855
52265
  },
51856
52266
  {
51857
52267
  name: "per_page",
51858
52268
  type: "number",
51859
52269
  required: false,
51860
- description: ""
52270
+ description: "Page size for the GitHub API request."
51861
52271
  }
51862
52272
  ],
51863
52273
  responseShape: {
51864
- commits: "array"
52274
+ commits: {
52275
+ type: "array",
52276
+ items: {
52277
+ type: "object",
52278
+ properties: {
52279
+ sha: {
52280
+ type: "string",
52281
+ required: true
52282
+ },
52283
+ message: {
52284
+ type: "string",
52285
+ required: true
52286
+ },
52287
+ author: {
52288
+ type: "string",
52289
+ required: true
52290
+ },
52291
+ date: {
52292
+ type: "string",
52293
+ required: true
52294
+ }
52295
+ }
52296
+ }
52297
+ }
51865
52298
  }
51866
52299
  },
51867
52300
  {
51868
52301
  name: "createIssue",
51869
- description: "",
52302
+ description: "Open a new issue on a repository (declared intent \u2014 dispatch is being wired).",
51870
52303
  params: [
51871
52304
  {
51872
52305
  name: "owner",
51873
52306
  type: "string",
51874
52307
  required: true,
51875
- description: ""
52308
+ description: "Repository owner (user or org)."
51876
52309
  },
51877
52310
  {
51878
52311
  name: "repo",
51879
52312
  type: "string",
51880
52313
  required: true,
51881
- description: ""
52314
+ description: "Repository name."
51882
52315
  },
51883
52316
  {
51884
52317
  name: "title",
51885
52318
  type: "string",
51886
52319
  required: true,
51887
- description: ""
52320
+ description: "Issue title."
51888
52321
  },
51889
52322
  {
51890
52323
  name: "body",
51891
52324
  type: "string",
51892
52325
  required: false,
51893
- description: ""
52326
+ description: "Issue body/description."
51894
52327
  },
51895
52328
  {
51896
52329
  name: "labels",
51897
52330
  type: "string[]",
51898
52331
  required: false,
51899
- description: ""
52332
+ description: "Labels to apply to the new issue."
51900
52333
  }
51901
52334
  ],
51902
52335
  responseShape: {
@@ -51914,25 +52347,25 @@ var integrators_registry_default = {
51914
52347
  actions: [
51915
52348
  {
51916
52349
  name: "createPaymentIntent",
51917
- description: "",
52350
+ description: "Create a Stripe PaymentIntent for a one-off charge.",
51918
52351
  params: [
51919
52352
  {
51920
52353
  name: "amount",
51921
52354
  type: "number",
51922
52355
  required: true,
51923
- description: ""
52356
+ description: "Charge amount in the currency's smallest unit (e.g. cents for USD)."
51924
52357
  },
51925
52358
  {
51926
52359
  name: "currency",
51927
52360
  type: "string",
51928
52361
  required: true,
51929
- description: ""
52362
+ description: "ISO 4217 currency code, e.g. usd."
51930
52363
  },
51931
52364
  {
51932
52365
  name: "metadata",
51933
52366
  type: "object",
51934
52367
  required: false,
51935
- description: ""
52368
+ description: "Arbitrary key-value tags attached to the PaymentIntent (string values only)."
51936
52369
  }
51937
52370
  ],
51938
52371
  responseShape: {
@@ -51941,17 +52374,18 @@ var integrators_registry_default = {
51941
52374
  status: "string",
51942
52375
  amount: "number",
51943
52376
  currency: "string"
51944
- }
52377
+ },
52378
+ synonyms: "charge, pay"
51945
52379
  },
51946
52380
  {
51947
52381
  name: "confirmPayment",
51948
- description: "",
52382
+ description: "Confirm a previously created PaymentIntent, attempting to complete the charge.",
51949
52383
  params: [
51950
52384
  {
51951
52385
  name: "paymentIntentId",
51952
52386
  type: "string",
51953
52387
  required: true,
51954
- description: ""
52388
+ description: "The PaymentIntent id returned by createPaymentIntent."
51955
52389
  }
51956
52390
  ],
51957
52391
  responseShape: {
@@ -51961,19 +52395,19 @@ var integrators_registry_default = {
51961
52395
  },
51962
52396
  {
51963
52397
  name: "refund",
51964
- description: "",
52398
+ description: "Refund a charged PaymentIntent, in full or in part.",
51965
52399
  params: [
51966
52400
  {
51967
52401
  name: "paymentIntentId",
51968
52402
  type: "string",
51969
52403
  required: true,
51970
- description: ""
52404
+ description: "The PaymentIntent id to refund."
51971
52405
  },
51972
52406
  {
51973
52407
  name: "amount",
51974
52408
  type: "number",
51975
52409
  required: false,
51976
- description: ""
52410
+ description: "Amount to refund in the currency's smallest unit; omit for a full refund."
51977
52411
  }
51978
52412
  ],
51979
52413
  responseShape: {
@@ -51991,65 +52425,85 @@ var integrators_registry_default = {
51991
52425
  actions: [
51992
52426
  {
51993
52427
  name: "generate",
51994
- description: "",
52428
+ description: "Generate free-form text from a prompt via the configured LLM provider (default 'You are a helpful assistant.' system prompt).",
51995
52429
  params: [
51996
52430
  {
51997
52431
  name: "userPrompt",
51998
52432
  type: "string",
51999
52433
  required: true,
52000
- description: ""
52434
+ description: "The user/task prompt sent to the model."
52001
52435
  },
52002
52436
  {
52003
52437
  name: "systemPrompt",
52004
52438
  type: "string",
52005
52439
  required: false,
52006
- description: ""
52440
+ description: "System prompt steering the model's behavior; defaults to a generic assistant prompt."
52007
52441
  },
52008
52442
  {
52009
52443
  name: "model",
52010
52444
  type: "string",
52011
52445
  required: false,
52012
- description: ""
52446
+ description: "Model id override; when set, a fresh client is built for this call instead of the shared one."
52013
52447
  },
52014
52448
  {
52015
52449
  name: "temperature",
52016
52450
  type: "number",
52017
52451
  required: false,
52018
- description: ""
52452
+ description: "Sampling temperature (0-1ish, provider-dependent); higher is more random."
52019
52453
  },
52020
52454
  {
52021
52455
  name: "maxTokens",
52022
52456
  type: "number",
52023
52457
  required: false,
52024
- description: ""
52458
+ description: "Maximum tokens to generate; defaults to 1024."
52025
52459
  }
52026
52460
  ],
52027
52461
  responseShape: {
52028
52462
  content: "string",
52029
- usage: "object"
52463
+ usage: {
52464
+ type: "object",
52465
+ properties: {
52466
+ promptTokens: {
52467
+ type: "number",
52468
+ required: false
52469
+ },
52470
+ completionTokens: {
52471
+ type: "number",
52472
+ required: false
52473
+ },
52474
+ totalTokens: {
52475
+ type: "number",
52476
+ required: false
52477
+ },
52478
+ tokens: {
52479
+ type: "number",
52480
+ required: false
52481
+ }
52482
+ }
52483
+ }
52030
52484
  }
52031
52485
  },
52032
52486
  {
52033
52487
  name: "classify",
52034
- description: "",
52488
+ description: "Classify text into exactly one of a caller-supplied category list, with a confidence score and reasoning.",
52035
52489
  params: [
52036
52490
  {
52037
52491
  name: "text",
52038
52492
  type: "string",
52039
52493
  required: true,
52040
- description: ""
52494
+ description: "Text to classify."
52041
52495
  },
52042
52496
  {
52043
52497
  name: "categories",
52044
52498
  type: "string[]",
52045
52499
  required: true,
52046
- description: ""
52500
+ description: "Closed set of category labels the model must choose from."
52047
52501
  },
52048
52502
  {
52049
52503
  name: "model",
52050
52504
  type: "string",
52051
52505
  required: false,
52052
- description: ""
52506
+ description: "Model id override."
52053
52507
  }
52054
52508
  ],
52055
52509
  responseShape: {
@@ -52060,56 +52514,56 @@ var integrators_registry_default = {
52060
52514
  },
52061
52515
  {
52062
52516
  name: "extract",
52063
- description: "",
52517
+ description: "Extract structured data from text according to a JSON-schema-shaped description; returned data is not validated against the schema.",
52064
52518
  params: [
52065
52519
  {
52066
52520
  name: "text",
52067
52521
  type: "string",
52068
52522
  required: true,
52069
- description: ""
52523
+ description: "Source text to extract data from."
52070
52524
  },
52071
52525
  {
52072
52526
  name: "schema",
52073
52527
  type: "IntegrationParams",
52074
52528
  required: true,
52075
- description: ""
52529
+ description: "JSON-schema-like description of the fields to extract; passed to the model as a prompt, not enforced structurally."
52076
52530
  },
52077
52531
  {
52078
52532
  name: "model",
52079
52533
  type: "string",
52080
52534
  required: false,
52081
- description: ""
52535
+ description: "Model id override."
52082
52536
  }
52083
52537
  ],
52084
52538
  responseShape: {}
52085
52539
  },
52086
52540
  {
52087
52541
  name: "summarize",
52088
- description: "",
52542
+ description: "Summarize text, optionally constrained by length and style, returning a summary plus key points.",
52089
52543
  params: [
52090
52544
  {
52091
52545
  name: "text",
52092
52546
  type: "string",
52093
52547
  required: true,
52094
- description: ""
52548
+ description: "Text to summarize."
52095
52549
  },
52096
52550
  {
52097
52551
  name: "maxLength",
52098
52552
  type: "number",
52099
52553
  required: false,
52100
- description: ""
52554
+ description: "Target maximum summary length in words."
52101
52555
  },
52102
52556
  {
52103
52557
  name: "style",
52104
52558
  type: "string",
52105
52559
  required: false,
52106
- description: ""
52560
+ description: "Summary style: 'bullet' for bullet points, 'detailed' for thorough, otherwise concise."
52107
52561
  },
52108
52562
  {
52109
52563
  name: "model",
52110
52564
  type: "string",
52111
52565
  required: false,
52112
- description: ""
52566
+ description: "Model id override."
52113
52567
  }
52114
52568
  ],
52115
52569
  responseShape: {
@@ -52119,19 +52573,19 @@ var integrators_registry_default = {
52119
52573
  },
52120
52574
  {
52121
52575
  name: "embed",
52122
- description: "",
52576
+ 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
52577
  params: [
52124
52578
  {
52125
52579
  name: "texts",
52126
52580
  type: "string[]",
52127
52581
  required: true,
52128
- description: ""
52582
+ description: "Texts to embed, one vector per entry, in order."
52129
52583
  },
52130
52584
  {
52131
52585
  name: "model",
52132
52586
  type: "string",
52133
52587
  required: false,
52134
- description: ""
52588
+ description: "Embedding model id override."
52135
52589
  }
52136
52590
  ],
52137
52591
  responseShape: {
@@ -52147,19 +52601,19 @@ var integrators_registry_default = {
52147
52601
  actions: [
52148
52602
  {
52149
52603
  name: "infer",
52150
- description: "",
52604
+ 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
52605
  params: [
52152
52606
  {
52153
52607
  name: "model",
52154
52608
  type: "string",
52155
52609
  required: true,
52156
- description: ""
52610
+ description: "Checkpoint or model identifier the serving orbital resolves."
52157
52611
  },
52158
52612
  {
52159
52613
  name: "input",
52160
52614
  type: "ServiceParamsValue",
52161
52615
  required: true,
52162
- description: ""
52616
+ description: "JSON-safe model input payload."
52163
52617
  }
52164
52618
  ],
52165
52619
  responseShape: {
@@ -52177,38 +52631,38 @@ var integrators_registry_default = {
52177
52631
  actions: [
52178
52632
  {
52179
52633
  name: "search",
52180
- description: "",
52634
+ description: "Search YouTube via the Data API and return matching video snippets.",
52181
52635
  params: [
52182
52636
  {
52183
52637
  name: "query",
52184
52638
  type: "string",
52185
52639
  required: true,
52186
- description: ""
52640
+ description: "Search query text."
52187
52641
  },
52188
52642
  {
52189
52643
  name: "maxResults",
52190
52644
  type: "number",
52191
52645
  required: false,
52192
- description: ""
52646
+ description: "Maximum number of results; defaults to 10."
52193
52647
  },
52194
52648
  {
52195
52649
  name: "type",
52196
52650
  type: "string",
52197
52651
  required: false,
52198
- description: ""
52652
+ description: "Resource type filter passed to the Data API (e.g. 'video', 'channel', 'playlist')."
52199
52653
  }
52200
52654
  ],
52201
52655
  responseShape: {}
52202
52656
  },
52203
52657
  {
52204
52658
  name: "getVideo",
52205
- description: "",
52659
+ description: "Fetch a video's snippet and statistics via the YouTube Data API.",
52206
52660
  params: [
52207
52661
  {
52208
52662
  name: "videoId",
52209
52663
  type: "string",
52210
52664
  required: true,
52211
- description: ""
52665
+ description: "YouTube video id."
52212
52666
  }
52213
52667
  ],
52214
52668
  responseShape: {
@@ -52220,13 +52674,13 @@ var integrators_registry_default = {
52220
52674
  },
52221
52675
  {
52222
52676
  name: "getChannel",
52223
- description: "",
52677
+ description: "Fetch a channel's snippet and statistics via the YouTube Data API.",
52224
52678
  params: [
52225
52679
  {
52226
52680
  name: "channelId",
52227
52681
  type: "string",
52228
52682
  required: true,
52229
- description: ""
52683
+ description: "YouTube channel id."
52230
52684
  }
52231
52685
  ],
52232
52686
  responseShape: {
@@ -52244,47 +52698,48 @@ var integrators_registry_default = {
52244
52698
  actions: [
52245
52699
  {
52246
52700
  name: "sendSMS",
52247
- description: "",
52701
+ description: "Send an SMS message via Twilio.",
52248
52702
  params: [
52249
52703
  {
52250
52704
  name: "to",
52251
52705
  type: "string",
52252
52706
  required: true,
52253
- description: ""
52707
+ description: "Destination phone number, E.164 format."
52254
52708
  },
52255
52709
  {
52256
52710
  name: "body",
52257
52711
  type: "string",
52258
52712
  required: true,
52259
- description: ""
52713
+ description: "Message text."
52260
52714
  },
52261
52715
  {
52262
52716
  name: "from",
52263
52717
  type: "string",
52264
52718
  required: false,
52265
- description: ""
52719
+ description: "Sender phone number; defaults to TWILIO_PHONE_NUMBER."
52266
52720
  }
52267
52721
  ],
52268
52722
  responseShape: {
52269
52723
  sid: "string",
52270
52724
  status: "string"
52271
- }
52725
+ },
52726
+ synonyms: "text message, text"
52272
52727
  },
52273
52728
  {
52274
52729
  name: "sendWhatsApp",
52275
- description: "",
52730
+ description: "Send a WhatsApp message via Twilio, using the configured phone number as sender on both ends.",
52276
52731
  params: [
52277
52732
  {
52278
52733
  name: "to",
52279
52734
  type: "string",
52280
52735
  required: true,
52281
- description: ""
52736
+ description: "Destination phone number, E.164 format (sent as whatsapp:number)."
52282
52737
  },
52283
52738
  {
52284
52739
  name: "body",
52285
52740
  type: "string",
52286
52741
  required: true,
52287
- description: ""
52742
+ description: "Message text."
52288
52743
  }
52289
52744
  ],
52290
52745
  responseShape: {
@@ -52301,31 +52756,31 @@ var integrators_registry_default = {
52301
52756
  actions: [
52302
52757
  {
52303
52758
  name: "send",
52304
- description: "",
52759
+ description: "Send a transactional email via the configured provider (SendGrid or Resend).",
52305
52760
  params: [
52306
52761
  {
52307
52762
  name: "to",
52308
52763
  type: "string",
52309
52764
  required: true,
52310
- description: ""
52765
+ description: "Recipient email address."
52311
52766
  },
52312
52767
  {
52313
52768
  name: "subject",
52314
52769
  type: "string",
52315
52770
  required: true,
52316
- description: ""
52771
+ description: "Email subject line."
52317
52772
  },
52318
52773
  {
52319
52774
  name: "body",
52320
52775
  type: "string",
52321
52776
  required: true,
52322
- description: ""
52777
+ description: "Plain-text (or HTML, if `htmlBody` is absent) body content."
52323
52778
  },
52324
52779
  {
52325
52780
  name: "from",
52326
52781
  type: "string",
52327
52782
  required: false,
52328
- description: ""
52783
+ description: "Sender address; defaults to FROM_EMAIL."
52329
52784
  },
52330
52785
  {
52331
52786
  name: "htmlBody",
@@ -52337,7 +52792,7 @@ var integrators_registry_default = {
52337
52792
  name: "replyTo",
52338
52793
  type: "string",
52339
52794
  required: false,
52340
- description: ""
52795
+ description: "Reply-To address."
52341
52796
  },
52342
52797
  {
52343
52798
  name: "templateId",
@@ -52360,31 +52815,31 @@ var integrators_registry_default = {
52360
52815
  actions: [
52361
52816
  {
52362
52817
  name: "send",
52363
- description: "",
52818
+ 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
52819
  params: [
52365
52820
  {
52366
52821
  name: "url",
52367
52822
  type: "string",
52368
52823
  required: true,
52369
- description: ""
52824
+ description: "Destination URL to POST to."
52370
52825
  },
52371
52826
  {
52372
52827
  name: "event",
52373
52828
  type: "string",
52374
52829
  required: true,
52375
- description: ""
52830
+ description: "Event name, carried in the body and the X-Almadar-Event header."
52376
52831
  },
52377
52832
  {
52378
52833
  name: "payload",
52379
52834
  type: "object",
52380
52835
  required: false,
52381
- description: ""
52836
+ description: "Event payload; defaults to an empty object."
52382
52837
  },
52383
52838
  {
52384
52839
  name: "secret",
52385
52840
  type: "string",
52386
52841
  required: false,
52387
- description: ""
52842
+ description: "Per-call HMAC signing secret, overriding WEBHOOK_SIGNING_SECRET."
52388
52843
  }
52389
52844
  ],
52390
52845
  responseShape: {
@@ -52402,37 +52857,57 @@ var integrators_registry_default = {
52402
52857
  actions: [
52403
52858
  {
52404
52859
  name: "send",
52405
- description: "",
52860
+ description: "Send a VAPID-signed Web Push notification to a browser PushSubscription endpoint.",
52406
52861
  params: [
52407
52862
  {
52408
52863
  name: "subscription",
52409
52864
  type: "object",
52410
52865
  required: true,
52411
- description: ""
52866
+ description: "Browser PushSubscription: endpoint URL plus the p256dh/auth encryption keys.",
52867
+ properties: {
52868
+ endpoint: {
52869
+ type: "string",
52870
+ required: true
52871
+ },
52872
+ keys: {
52873
+ type: "object",
52874
+ required: true,
52875
+ properties: {
52876
+ p256dh: {
52877
+ type: "string",
52878
+ required: true
52879
+ },
52880
+ auth: {
52881
+ type: "string",
52882
+ required: true
52883
+ }
52884
+ }
52885
+ }
52886
+ }
52412
52887
  },
52413
52888
  {
52414
52889
  name: "title",
52415
52890
  type: "string",
52416
52891
  required: true,
52417
- description: ""
52892
+ description: "Notification title."
52418
52893
  },
52419
52894
  {
52420
52895
  name: "body",
52421
52896
  type: "string",
52422
52897
  required: true,
52423
- description: ""
52898
+ description: "Notification body text."
52424
52899
  },
52425
52900
  {
52426
52901
  name: "url",
52427
52902
  type: "string",
52428
52903
  required: false,
52429
- description: ""
52904
+ description: "URL to open when the notification is clicked."
52430
52905
  },
52431
52906
  {
52432
52907
  name: "icon",
52433
52908
  type: "string",
52434
52909
  required: false,
52435
- description: ""
52910
+ description: "Notification icon URL."
52436
52911
  }
52437
52912
  ],
52438
52913
  responseShape: {
@@ -52450,89 +52925,128 @@ var integrators_registry_default = {
52450
52925
  actions: [
52451
52926
  {
52452
52927
  name: "listEvents",
52453
- description: "",
52928
+ description: "List events on a Google Calendar; pass `syncToken` for incremental sync instead of a time window (the API rejects combining them).",
52454
52929
  params: [
52455
52930
  {
52456
52931
  name: "calendarId",
52457
52932
  type: "string",
52458
52933
  required: false,
52459
- description: ""
52934
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID (or 'primary')."
52460
52935
  },
52461
52936
  {
52462
52937
  name: "timeMin",
52463
52938
  type: "string",
52464
52939
  required: false,
52465
- description: ""
52940
+ description: "ISO start of the time window (ignored when `syncToken` is set)."
52466
52941
  },
52467
52942
  {
52468
52943
  name: "timeMax",
52469
52944
  type: "string",
52470
52945
  required: false,
52471
- description: ""
52946
+ description: "ISO end of the time window (ignored when `syncToken` is set)."
52472
52947
  },
52473
52948
  {
52474
52949
  name: "syncToken",
52475
52950
  type: "string",
52476
52951
  required: false,
52477
- description: ""
52952
+ description: "Incremental-sync token from a previous call's `nextSyncToken`; supersedes timeMin/timeMax."
52478
52953
  },
52479
52954
  {
52480
52955
  name: "maxResults",
52481
52956
  type: "number",
52482
52957
  required: false,
52483
- description: ""
52958
+ description: "Maximum events to return; defaults to 250."
52484
52959
  }
52485
52960
  ],
52486
52961
  responseShape: {
52487
- events: "array",
52962
+ events: {
52963
+ type: "array",
52964
+ items: {
52965
+ type: "object",
52966
+ properties: {
52967
+ id: {
52968
+ type: "string",
52969
+ required: true
52970
+ },
52971
+ summary: {
52972
+ type: "string",
52973
+ required: true
52974
+ },
52975
+ description: {
52976
+ type: "string",
52977
+ required: true
52978
+ },
52979
+ location: {
52980
+ type: "string",
52981
+ required: true
52982
+ },
52983
+ start: {
52984
+ type: "string",
52985
+ required: true
52986
+ },
52987
+ end: {
52988
+ type: "string",
52989
+ required: true
52990
+ },
52991
+ status: {
52992
+ type: "string",
52993
+ required: true
52994
+ },
52995
+ updated: {
52996
+ type: "string",
52997
+ required: true
52998
+ }
52999
+ }
53000
+ }
53001
+ },
52488
53002
  nextSyncToken: "string | null"
52489
53003
  }
52490
53004
  },
52491
53005
  {
52492
53006
  name: "createEvent",
52493
- description: "",
53007
+ 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
53008
  params: [
52495
53009
  {
52496
53010
  name: "calendarId",
52497
53011
  type: "string",
52498
53012
  required: false,
52499
- description: ""
53013
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52500
53014
  },
52501
53015
  {
52502
53016
  name: "summary",
52503
53017
  type: "string",
52504
53018
  required: true,
52505
- description: ""
53019
+ description: "Event title."
52506
53020
  },
52507
53021
  {
52508
53022
  name: "description",
52509
53023
  type: "string",
52510
53024
  required: false,
52511
- description: ""
53025
+ description: "Event description."
52512
53026
  },
52513
53027
  {
52514
53028
  name: "location",
52515
53029
  type: "string",
52516
53030
  required: false,
52517
- description: ""
53031
+ description: "Event location text."
52518
53032
  },
52519
53033
  {
52520
53034
  name: "start",
52521
53035
  type: "string",
52522
53036
  required: true,
52523
- description: ""
53037
+ description: "ISO start (10 chars = all-day date, longer = dateTime)."
52524
53038
  },
52525
53039
  {
52526
53040
  name: "end",
52527
53041
  type: "string",
52528
53042
  required: false,
52529
- description: ""
53043
+ description: "ISO end; if omitted, derived from `durationMinutes` or the all-day next-day convention."
52530
53044
  },
52531
53045
  {
52532
53046
  name: "durationMinutes",
52533
53047
  type: "number",
52534
53048
  required: false,
52535
- description: ""
53049
+ description: "Duration in minutes used to derive `end` when `end` is omitted (non-all-day events only)."
52536
53050
  }
52537
53051
  ],
52538
53052
  responseShape: {
@@ -52543,49 +53057,49 @@ var integrators_registry_default = {
52543
53057
  },
52544
53058
  {
52545
53059
  name: "updateEvent",
52546
- description: "",
53060
+ description: "Patch an existing event's fields; only fields present in params are changed.",
52547
53061
  params: [
52548
53062
  {
52549
53063
  name: "calendarId",
52550
53064
  type: "string",
52551
53065
  required: false,
52552
- description: ""
53066
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52553
53067
  },
52554
53068
  {
52555
53069
  name: "eventId",
52556
53070
  type: "string",
52557
53071
  required: true,
52558
- description: ""
53072
+ description: "Id of the event to update."
52559
53073
  },
52560
53074
  {
52561
53075
  name: "summary",
52562
53076
  type: "string",
52563
53077
  required: false,
52564
- description: ""
53078
+ description: "New event title."
52565
53079
  },
52566
53080
  {
52567
53081
  name: "description",
52568
53082
  type: "string",
52569
53083
  required: false,
52570
- description: ""
53084
+ description: "New event description."
52571
53085
  },
52572
53086
  {
52573
53087
  name: "location",
52574
53088
  type: "string",
52575
53089
  required: false,
52576
- description: ""
53090
+ description: "New event location text."
52577
53091
  },
52578
53092
  {
52579
53093
  name: "start",
52580
53094
  type: "string",
52581
53095
  required: false,
52582
- description: ""
53096
+ description: "New ISO start."
52583
53097
  },
52584
53098
  {
52585
53099
  name: "end",
52586
53100
  type: "string",
52587
53101
  required: false,
52588
- description: ""
53102
+ description: "New ISO end."
52589
53103
  }
52590
53104
  ],
52591
53105
  responseShape: {
@@ -52595,19 +53109,19 @@ var integrators_registry_default = {
52595
53109
  },
52596
53110
  {
52597
53111
  name: "deleteEvent",
52598
- description: "",
53112
+ description: "Delete a calendar event.",
52599
53113
  params: [
52600
53114
  {
52601
53115
  name: "calendarId",
52602
53116
  type: "string",
52603
53117
  required: false,
52604
- description: ""
53118
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52605
53119
  },
52606
53120
  {
52607
53121
  name: "eventId",
52608
53122
  type: "string",
52609
53123
  required: true,
52610
- description: ""
53124
+ description: "Id of the event to delete."
52611
53125
  }
52612
53126
  ],
52613
53127
  responseShape: {
@@ -52617,58 +53131,73 @@ var integrators_registry_default = {
52617
53131
  },
52618
53132
  {
52619
53133
  name: "freeBusy",
52620
- description: "",
53134
+ description: "Query busy time blocks on a calendar within a window.",
52621
53135
  params: [
52622
53136
  {
52623
53137
  name: "calendarId",
52624
53138
  type: "string",
52625
53139
  required: false,
52626
- description: ""
53140
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52627
53141
  },
52628
53142
  {
52629
53143
  name: "timeMin",
52630
53144
  type: "string",
52631
53145
  required: true,
52632
- description: ""
53146
+ description: "ISO start of the query window."
52633
53147
  },
52634
53148
  {
52635
53149
  name: "timeMax",
52636
53150
  type: "string",
52637
53151
  required: true,
52638
- description: ""
53152
+ description: "ISO end of the query window."
52639
53153
  }
52640
53154
  ],
52641
53155
  responseShape: {
52642
- busy: "array"
53156
+ busy: {
53157
+ type: "array",
53158
+ items: {
53159
+ type: "object",
53160
+ properties: {
53161
+ start: {
53162
+ type: "string",
53163
+ required: true
53164
+ },
53165
+ end: {
53166
+ type: "string",
53167
+ required: true
53168
+ }
53169
+ }
53170
+ }
53171
+ }
52643
53172
  }
52644
53173
  },
52645
53174
  {
52646
53175
  name: "watch",
52647
- description: "",
53176
+ description: "Register a push-notification channel for calendar change events (Google Calendar API watch).",
52648
53177
  params: [
52649
53178
  {
52650
53179
  name: "calendarId",
52651
53180
  type: "string",
52652
53181
  required: false,
52653
- description: ""
53182
+ description: "Calendar id; defaults to GOOGLE_CALENDAR_ID."
52654
53183
  },
52655
53184
  {
52656
53185
  name: "channelId",
52657
53186
  type: "string",
52658
53187
  required: true,
52659
- description: ""
53188
+ description: "Caller-chosen id identifying this notification channel."
52660
53189
  },
52661
53190
  {
52662
53191
  name: "address",
52663
53192
  type: "string",
52664
53193
  required: true,
52665
- description: ""
53194
+ description: "HTTPS callback URL Google POSTs change notifications to."
52666
53195
  },
52667
53196
  {
52668
53197
  name: "ttlSeconds",
52669
53198
  type: "number",
52670
53199
  required: false,
52671
- description: ""
53200
+ description: "Requested channel time-to-live in seconds."
52672
53201
  }
52673
53202
  ],
52674
53203
  responseShape: {
@@ -52679,19 +53208,19 @@ var integrators_registry_default = {
52679
53208
  },
52680
53209
  {
52681
53210
  name: "stopWatch",
52682
- description: "",
53211
+ description: "Stop an active watch channel, ending calendar change notifications.",
52683
53212
  params: [
52684
53213
  {
52685
53214
  name: "channelId",
52686
53215
  type: "string",
52687
53216
  required: true,
52688
- description: ""
53217
+ description: "The channel id from the corresponding `watch` call."
52689
53218
  },
52690
53219
  {
52691
53220
  name: "resourceId",
52692
53221
  type: "string",
52693
53222
  required: true,
52694
- description: ""
53223
+ description: "The resourceId returned by the corresponding `watch` call."
52695
53224
  }
52696
53225
  ],
52697
53226
  responseShape: {
@@ -52707,40 +53236,71 @@ var integrators_registry_default = {
52707
53236
  actions: [
52708
53237
  {
52709
53238
  name: "listFiles",
52710
- description: "",
53239
+ description: "List non-trashed files in a Google Drive folder, optionally filtered by a Drive API query clause.",
52711
53240
  params: [
52712
53241
  {
52713
53242
  name: "folderId",
52714
53243
  type: "string",
52715
53244
  required: false,
52716
- description: ""
53245
+ description: "Restrict to files whose parents include this folder id."
52717
53246
  },
52718
53247
  {
52719
53248
  name: "query",
52720
53249
  type: "string",
52721
53250
  required: false,
52722
- description: ""
53251
+ description: "Extra Drive API query clause, ANDed with the folder/trashed filters."
52723
53252
  },
52724
53253
  {
52725
53254
  name: "maxResults",
52726
53255
  type: "number",
52727
53256
  required: false,
52728
- description: ""
53257
+ description: "Maximum files to return; defaults to 100."
52729
53258
  }
52730
53259
  ],
52731
53260
  responseShape: {
52732
- files: "array"
53261
+ files: {
53262
+ type: "array",
53263
+ items: {
53264
+ type: "object",
53265
+ properties: {
53266
+ id: {
53267
+ type: "string",
53268
+ required: true
53269
+ },
53270
+ name: {
53271
+ type: "string",
53272
+ required: true
53273
+ },
53274
+ mimeType: {
53275
+ type: "string",
53276
+ required: true
53277
+ },
53278
+ size: {
53279
+ type: "number",
53280
+ required: true
53281
+ },
53282
+ modifiedTime: {
53283
+ type: "string",
53284
+ required: true
53285
+ },
53286
+ webViewLink: {
53287
+ type: "string",
53288
+ required: true
53289
+ }
53290
+ }
53291
+ }
53292
+ }
52733
53293
  }
52734
53294
  },
52735
53295
  {
52736
53296
  name: "getFile",
52737
- description: "",
53297
+ description: "Download a file's content, base64-encoded.",
52738
53298
  params: [
52739
53299
  {
52740
53300
  name: "fileId",
52741
53301
  type: "string",
52742
53302
  required: true,
52743
- description: ""
53303
+ description: "Drive file id."
52744
53304
  }
52745
53305
  ],
52746
53306
  responseShape: {
@@ -52753,54 +53313,55 @@ var integrators_registry_default = {
52753
53313
  },
52754
53314
  {
52755
53315
  name: "uploadFile",
52756
- description: "",
53316
+ 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
53317
  params: [
52758
53318
  {
52759
53319
  name: "name",
52760
53320
  type: "string",
52761
53321
  required: true,
52762
- description: ""
53322
+ description: "File name to create."
52763
53323
  },
52764
53324
  {
52765
53325
  name: "content",
52766
53326
  type: "string",
52767
53327
  required: true,
52768
- description: ""
53328
+ description: "File content as a base64 data URL (data:mime;base64,...) or raw base64/plain text."
52769
53329
  },
52770
53330
  {
52771
53331
  name: "mimeType",
52772
53332
  type: "string",
52773
53333
  required: false,
52774
- description: ""
53334
+ description: "MIME type; inferred from a data URL when omitted."
52775
53335
  },
52776
53336
  {
52777
53337
  name: "folderId",
52778
53338
  type: "string",
52779
53339
  required: false,
52780
- description: ""
53340
+ description: "Parent folder id; defaults to GOOGLE_DRIVE_FOLDER_ID."
52781
53341
  }
52782
53342
  ],
52783
53343
  responseShape: {
52784
53344
  id: "string",
52785
53345
  name: "string",
52786
53346
  webViewLink: "string"
52787
- }
53347
+ },
53348
+ synonyms: "upload file"
52788
53349
  },
52789
53350
  {
52790
53351
  name: "createFolder",
52791
- description: "",
53352
+ description: "Create a new Drive folder.",
52792
53353
  params: [
52793
53354
  {
52794
53355
  name: "name",
52795
53356
  type: "string",
52796
53357
  required: true,
52797
- description: ""
53358
+ description: "Folder name to create."
52798
53359
  },
52799
53360
  {
52800
53361
  name: "parentId",
52801
53362
  type: "string",
52802
53363
  required: false,
52803
- description: ""
53364
+ description: "Parent folder id; defaults to GOOGLE_DRIVE_FOLDER_ID."
52804
53365
  }
52805
53366
  ],
52806
53367
  responseShape: {
@@ -52810,25 +53371,25 @@ var integrators_registry_default = {
52810
53371
  },
52811
53372
  {
52812
53373
  name: "shareFile",
52813
- description: "",
53374
+ description: "Grant a user permission on a Drive file.",
52814
53375
  params: [
52815
53376
  {
52816
53377
  name: "fileId",
52817
53378
  type: "string",
52818
53379
  required: true,
52819
- description: ""
53380
+ description: "Drive file id."
52820
53381
  },
52821
53382
  {
52822
53383
  name: "email",
52823
53384
  type: "string",
52824
53385
  required: true,
52825
- description: ""
53386
+ description: "Email address of the grantee."
52826
53387
  },
52827
53388
  {
52828
53389
  name: "role",
52829
53390
  type: "'reader' | 'writer' | 'commenter'",
52830
53391
  required: false,
52831
- description: ""
53392
+ description: "Permission level; defaults to 'reader'."
52832
53393
  }
52833
53394
  ],
52834
53395
  responseShape: {
@@ -52845,31 +53406,25 @@ var integrators_registry_default = {
52845
53406
  actions: [
52846
53407
  {
52847
53408
  name: "getSpend",
52848
- description: "",
53409
+ 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
53410
  params: [
52850
53411
  {
52851
53412
  name: "accountId",
52852
53413
  type: "string",
52853
53414
  required: false,
52854
- description: ""
53415
+ description: "Ad account id (with or without the `act_` prefix); defaults to META_AD_ACCOUNT_ID."
52855
53416
  },
52856
53417
  {
52857
53418
  name: "since",
52858
53419
  type: "string",
52859
53420
  required: true,
52860
- description: ""
53421
+ description: "Range start date (YYYY-MM-DD)."
52861
53422
  },
52862
53423
  {
52863
53424
  name: "until",
52864
53425
  type: "string",
52865
53426
  required: true,
52866
- description: ""
52867
- },
52868
- {
52869
- name: "clientTag",
52870
- type: "string",
52871
- required: false,
52872
- description: ""
53427
+ description: "Range end date (YYYY-MM-DD)."
52873
53428
  }
52874
53429
  ],
52875
53430
  responseShape: {
@@ -52881,23 +53436,46 @@ var integrators_registry_default = {
52881
53436
  },
52882
53437
  {
52883
53438
  name: "listCampaigns",
52884
- description: "",
53439
+ description: "List campaigns on an ad account via the Meta Graph API (read-only); dailyBudget is converted from Meta's minor-unit reporting.",
52885
53440
  params: [
52886
53441
  {
52887
53442
  name: "accountId",
52888
53443
  type: "string",
52889
53444
  required: false,
52890
- description: ""
53445
+ description: "Ad account id (with or without the `act_` prefix); defaults to META_AD_ACCOUNT_ID."
52891
53446
  },
52892
53447
  {
52893
53448
  name: "status",
52894
53449
  type: "string",
52895
53450
  required: false,
52896
- description: ""
53451
+ description: "Filter by campaign effective_status (e.g. 'ACTIVE', 'PAUSED')."
52897
53452
  }
52898
53453
  ],
52899
53454
  responseShape: {
52900
- campaigns: "array"
53455
+ campaigns: {
53456
+ type: "array",
53457
+ items: {
53458
+ type: "object",
53459
+ properties: {
53460
+ id: {
53461
+ type: "string",
53462
+ required: true
53463
+ },
53464
+ name: {
53465
+ type: "string",
53466
+ required: true
53467
+ },
53468
+ status: {
53469
+ type: "string",
53470
+ required: true
53471
+ },
53472
+ dailyBudget: {
53473
+ type: "number",
53474
+ required: true
53475
+ }
53476
+ }
53477
+ }
53478
+ }
52901
53479
  }
52902
53480
  }
52903
53481
  ]
@@ -52909,19 +53487,64 @@ var integrators_registry_default = {
52909
53487
  actions: [
52910
53488
  {
52911
53489
  name: "exportInvoices",
52912
- description: "",
53490
+ description: "Shape invoice rows into an import-ready CSV export (no accounting-vendor connection \u2014 generic column set).",
52913
53491
  params: [
52914
53492
  {
52915
53493
  name: "invoices",
52916
53494
  type: "array",
52917
53495
  required: true,
52918
- description: ""
53496
+ description: "Invoice rows to export, in column order id/number/customer/issuedAt/dueAt/currency/net/tax/gross/status.",
53497
+ items: {
53498
+ type: "object",
53499
+ properties: {
53500
+ id: {
53501
+ type: "string",
53502
+ required: true
53503
+ },
53504
+ number: {
53505
+ type: "string",
53506
+ required: true
53507
+ },
53508
+ customer: {
53509
+ type: "string",
53510
+ required: true
53511
+ },
53512
+ issuedAt: {
53513
+ type: "string",
53514
+ required: true
53515
+ },
53516
+ dueAt: {
53517
+ type: "string",
53518
+ required: true
53519
+ },
53520
+ currency: {
53521
+ type: "string",
53522
+ required: true
53523
+ },
53524
+ net: {
53525
+ type: "number",
53526
+ required: true
53527
+ },
53528
+ tax: {
53529
+ type: "number",
53530
+ required: true
53531
+ },
53532
+ gross: {
53533
+ type: "number",
53534
+ required: true
53535
+ },
53536
+ status: {
53537
+ type: "string",
53538
+ required: true
53539
+ }
53540
+ }
53541
+ }
52919
53542
  },
52920
53543
  {
52921
53544
  name: "format",
52922
53545
  type: "'csv'",
52923
53546
  required: false,
52924
- description: ""
53547
+ description: "Export format; only 'csv' is currently supported."
52925
53548
  }
52926
53549
  ],
52927
53550
  responseShape: {
@@ -52932,19 +53555,48 @@ var integrators_registry_default = {
52932
53555
  },
52933
53556
  {
52934
53557
  name: "exportJournal",
52935
- description: "",
53558
+ description: "Shape journal entry rows into an import-ready CSV export.",
52936
53559
  params: [
52937
53560
  {
52938
53561
  name: "entries",
52939
53562
  type: "array",
52940
53563
  required: true,
52941
- description: ""
53564
+ description: "Journal entry rows to export, in column order date/account/description/debit/credit/reference.",
53565
+ items: {
53566
+ type: "object",
53567
+ properties: {
53568
+ date: {
53569
+ type: "string",
53570
+ required: true
53571
+ },
53572
+ account: {
53573
+ type: "string",
53574
+ required: true
53575
+ },
53576
+ description: {
53577
+ type: "string",
53578
+ required: true
53579
+ },
53580
+ debit: {
53581
+ type: "number",
53582
+ required: true
53583
+ },
53584
+ credit: {
53585
+ type: "number",
53586
+ required: true
53587
+ },
53588
+ reference: {
53589
+ type: "string",
53590
+ required: true
53591
+ }
53592
+ }
53593
+ }
52942
53594
  },
52943
53595
  {
52944
53596
  name: "format",
52945
53597
  type: "'csv'",
52946
53598
  required: false,
52947
- description: ""
53599
+ description: "Export format; only 'csv' is currently supported."
52948
53600
  }
52949
53601
  ],
52950
53602
  responseShape: {
@@ -52962,25 +53614,25 @@ var integrators_registry_default = {
52962
53614
  actions: [
52963
53615
  {
52964
53616
  name: "createRequisition",
52965
- description: "",
53617
+ description: "Start a GoCardless Bank Account Data requisition (bank-connection consent flow); the returned `link` is where the end user authorizes access.",
52966
53618
  params: [
52967
53619
  {
52968
53620
  name: "institutionId",
52969
53621
  type: "string",
52970
53622
  required: true,
52971
- description: ""
53623
+ description: "GoCardless institution id (the bank to connect)."
52972
53624
  },
52973
53625
  {
52974
53626
  name: "redirectUrl",
52975
53627
  type: "string",
52976
53628
  required: true,
52977
- description: ""
53629
+ description: "URL GoCardless redirects the user to after consent."
52978
53630
  },
52979
53631
  {
52980
53632
  name: "reference",
52981
53633
  type: "string",
52982
53634
  required: false,
52983
- description: ""
53635
+ description: "Caller-chosen reference to correlate the requisition."
52984
53636
  }
52985
53637
  ],
52986
53638
  responseShape: {
@@ -52990,13 +53642,13 @@ var integrators_registry_default = {
52990
53642
  },
52991
53643
  {
52992
53644
  name: "listAccounts",
52993
- description: "",
53645
+ description: "List account ids linked under a completed requisition.",
52994
53646
  params: [
52995
53647
  {
52996
53648
  name: "requisitionId",
52997
53649
  type: "string",
52998
53650
  required: true,
52999
- description: ""
53651
+ description: "Requisition id from createRequisition."
53000
53652
  }
53001
53653
  ],
53002
53654
  responseShape: {
@@ -53005,29 +53657,60 @@ var integrators_registry_default = {
53005
53657
  },
53006
53658
  {
53007
53659
  name: "listTransactions",
53008
- description: "",
53660
+ description: "List booked transactions on a linked bank account, optionally filtered by date range.",
53009
53661
  params: [
53010
53662
  {
53011
53663
  name: "accountId",
53012
53664
  type: "string",
53013
53665
  required: true,
53014
- description: ""
53666
+ description: "GoCardless account id."
53015
53667
  },
53016
53668
  {
53017
53669
  name: "dateFrom",
53018
53670
  type: "string",
53019
53671
  required: false,
53020
- description: ""
53672
+ description: "Only transactions booked on/after this date (YYYY-MM-DD)."
53021
53673
  },
53022
53674
  {
53023
53675
  name: "dateTo",
53024
53676
  type: "string",
53025
53677
  required: false,
53026
- description: ""
53678
+ description: "Only transactions booked on/before this date (YYYY-MM-DD)."
53027
53679
  }
53028
53680
  ],
53029
53681
  responseShape: {
53030
- transactions: "array"
53682
+ transactions: {
53683
+ type: "array",
53684
+ items: {
53685
+ type: "object",
53686
+ properties: {
53687
+ id: {
53688
+ type: "string",
53689
+ required: true
53690
+ },
53691
+ amount: {
53692
+ type: "number",
53693
+ required: true
53694
+ },
53695
+ currency: {
53696
+ type: "string",
53697
+ required: true
53698
+ },
53699
+ date: {
53700
+ type: "string",
53701
+ required: true
53702
+ },
53703
+ description: {
53704
+ type: "string",
53705
+ required: true
53706
+ },
53707
+ counterparty: {
53708
+ type: "string",
53709
+ required: true
53710
+ }
53711
+ }
53712
+ }
53713
+ }
53031
53714
  }
53032
53715
  }
53033
53716
  ]
@@ -53039,37 +53722,37 @@ var integrators_registry_default = {
53039
53722
  actions: [
53040
53723
  {
53041
53724
  name: "sendEnvelope",
53042
- description: "",
53725
+ description: "Send a document for e-signature via DocuSign; accepts the document content as a data URL or raw base64.",
53043
53726
  params: [
53044
53727
  {
53045
53728
  name: "recipientEmail",
53046
53729
  type: "string",
53047
53730
  required: true,
53048
- description: ""
53731
+ description: "Signer's email address."
53049
53732
  },
53050
53733
  {
53051
53734
  name: "recipientName",
53052
53735
  type: "string",
53053
53736
  required: true,
53054
- description: ""
53737
+ description: "Signer's display name."
53055
53738
  },
53056
53739
  {
53057
53740
  name: "documentName",
53058
53741
  type: "string",
53059
53742
  required: true,
53060
- description: ""
53743
+ description: "Document file name (its extension also picks the DocuSign fileExtension)."
53061
53744
  },
53062
53745
  {
53063
53746
  name: "documentContent",
53064
53747
  type: "string",
53065
53748
  required: true,
53066
- description: ""
53749
+ description: "Document content as a base64 data URL or raw base64."
53067
53750
  },
53068
53751
  {
53069
53752
  name: "emailSubject",
53070
53753
  type: "string",
53071
53754
  required: false,
53072
- description: ""
53755
+ description: 'Envelope email subject; defaults to "Please sign: " + documentName.'
53073
53756
  }
53074
53757
  ],
53075
53758
  responseShape: {
@@ -53079,13 +53762,13 @@ var integrators_registry_default = {
53079
53762
  },
53080
53763
  {
53081
53764
  name: "getEnvelopeStatus",
53082
- description: "",
53765
+ description: "Poll a DocuSign envelope's signing status.",
53083
53766
  params: [
53084
53767
  {
53085
53768
  name: "envelopeId",
53086
53769
  type: "string",
53087
53770
  required: true,
53088
- description: ""
53771
+ description: "DocuSign envelope id from sendEnvelope."
53089
53772
  }
53090
53773
  ],
53091
53774
  responseShape: {
@@ -53095,13 +53778,13 @@ var integrators_registry_default = {
53095
53778
  },
53096
53779
  {
53097
53780
  name: "downloadDocument",
53098
- description: "",
53781
+ description: "Download the combined signed document(s) for a completed envelope, base64-encoded PDF.",
53099
53782
  params: [
53100
53783
  {
53101
53784
  name: "envelopeId",
53102
53785
  type: "string",
53103
53786
  required: true,
53104
- description: ""
53787
+ description: "DocuSign envelope id."
53105
53788
  }
53106
53789
  ],
53107
53790
  responseShape: {
@@ -53118,31 +53801,31 @@ var integrators_registry_default = {
53118
53801
  actions: [
53119
53802
  {
53120
53803
  name: "build",
53121
- description: "",
53804
+ description: "Simulate building a container image (in-memory backend \u2014 no real Docker daemon/SDK; a real build is not yet implemented).",
53122
53805
  params: [
53123
53806
  {
53124
53807
  name: "tag",
53125
53808
  type: "string",
53126
53809
  required: true,
53127
- description: ""
53810
+ description: "Image tag to build, e.g. myapp:latest."
53128
53811
  },
53129
53812
  {
53130
53813
  name: "dockerfile",
53131
53814
  type: "string",
53132
53815
  required: false,
53133
- description: ""
53816
+ description: "Dockerfile path; defaults to 'Dockerfile'."
53134
53817
  },
53135
53818
  {
53136
53819
  name: "context",
53137
53820
  type: "string",
53138
53821
  required: false,
53139
- description: ""
53822
+ description: "Build context directory; defaults to '.'."
53140
53823
  },
53141
53824
  {
53142
53825
  name: "buildArgs",
53143
53826
  type: "object",
53144
53827
  required: false,
53145
- description: ""
53828
+ description: "Build-time --build-arg values."
53146
53829
  }
53147
53830
  ],
53148
53831
  responseShape: {
@@ -53154,61 +53837,110 @@ var integrators_registry_default = {
53154
53837
  },
53155
53838
  {
53156
53839
  name: "run",
53157
- description: "",
53840
+ description: "Simulate starting a container from an image (in-memory backend).",
53158
53841
  params: [
53159
53842
  {
53160
53843
  name: "image",
53161
53844
  type: "string",
53162
53845
  required: true,
53163
- description: ""
53846
+ description: "Image to run (as built/tagged by the `build` action, or an arbitrary name)."
53164
53847
  },
53165
53848
  {
53166
53849
  name: "name",
53167
53850
  type: "string",
53168
53851
  required: false,
53169
- description: ""
53852
+ description: "Container name; auto-generated when omitted."
53170
53853
  },
53171
53854
  {
53172
53855
  name: "ports",
53173
53856
  type: "array",
53174
53857
  required: false,
53175
- description: ""
53858
+ description: "Host/container port mappings.",
53859
+ items: {
53860
+ type: "object",
53861
+ properties: {
53862
+ host: {
53863
+ type: "number",
53864
+ required: true
53865
+ },
53866
+ container: {
53867
+ type: "number",
53868
+ required: true
53869
+ },
53870
+ protocol: {
53871
+ type: "string",
53872
+ required: false
53873
+ }
53874
+ }
53875
+ }
53176
53876
  },
53177
53877
  {
53178
53878
  name: "env",
53179
53879
  type: "object",
53180
53880
  required: false,
53181
- description: ""
53881
+ description: "Environment variables set inside the container."
53182
53882
  },
53183
53883
  {
53184
53884
  name: "volumes",
53185
53885
  type: "array",
53186
53886
  required: false,
53187
- description: ""
53887
+ description: "Host/container path mounts.",
53888
+ items: {
53889
+ type: "object",
53890
+ properties: {
53891
+ host: {
53892
+ type: "string",
53893
+ required: true
53894
+ },
53895
+ container: {
53896
+ type: "string",
53897
+ required: true
53898
+ }
53899
+ }
53900
+ }
53188
53901
  },
53189
53902
  {
53190
53903
  name: "command",
53191
53904
  type: "string",
53192
53905
  required: false,
53193
- description: ""
53906
+ description: "Override command run inside the container."
53194
53907
  }
53195
53908
  ],
53196
53909
  responseShape: {
53197
53910
  containerId: "string",
53198
53911
  name: "string",
53199
53912
  status: "string",
53200
- ports: "array"
53913
+ ports: {
53914
+ type: "array",
53915
+ items: {
53916
+ type: "object",
53917
+ properties: {
53918
+ host: {
53919
+ type: "number",
53920
+ required: true
53921
+ },
53922
+ container: {
53923
+ type: "number",
53924
+ required: true
53925
+ },
53926
+ protocol: {
53927
+ type: "string",
53928
+ required: true
53929
+ }
53930
+ }
53931
+ }
53932
+ }
53201
53933
  }
53202
53934
  },
53203
53935
  {
53204
53936
  name: "stop",
53205
- description: "",
53937
+ description: "Stop a running (or paused) simulated container.",
53206
53938
  params: [
53207
53939
  {
53208
53940
  name: "containerId",
53209
53941
  type: "string",
53210
53942
  required: true,
53211
- description: ""
53943
+ description: "Container id, or a unique id prefix."
53212
53944
  }
53213
53945
  ],
53214
53946
  responseShape: {
@@ -53219,19 +53951,19 @@ var integrators_registry_default = {
53219
53951
  },
53220
53952
  {
53221
53953
  name: "remove",
53222
- description: "",
53954
+ description: "Remove a simulated container; fails if it is running unless `force` is set.",
53223
53955
  params: [
53224
53956
  {
53225
53957
  name: "containerId",
53226
53958
  type: "string",
53227
53959
  required: true,
53228
- description: ""
53960
+ description: "Container id, or a unique id prefix."
53229
53961
  },
53230
53962
  {
53231
53963
  name: "force",
53232
53964
  type: "boolean",
53233
53965
  required: false,
53234
- description: ""
53966
+ description: "Remove even if the container is currently running."
53235
53967
  }
53236
53968
  ],
53237
53969
  responseShape: {
@@ -53241,25 +53973,25 @@ var integrators_registry_default = {
53241
53973
  },
53242
53974
  {
53243
53975
  name: "logs",
53244
- description: "",
53976
+ description: "Fetch generated log lines for a simulated container.",
53245
53977
  params: [
53246
53978
  {
53247
53979
  name: "containerId",
53248
53980
  type: "string",
53249
53981
  required: true,
53250
- description: ""
53982
+ description: "Container id, or a unique id prefix."
53251
53983
  },
53252
53984
  {
53253
53985
  name: "tail",
53254
53986
  type: "number",
53255
53987
  required: false,
53256
- description: ""
53988
+ description: "Number of most-recent lines to return; defaults to 100."
53257
53989
  },
53258
53990
  {
53259
53991
  name: "since",
53260
53992
  type: "string",
53261
53993
  required: false,
53262
- description: ""
53994
+ description: "Only lines timestamped at/after this ISO time."
53263
53995
  }
53264
53996
  ],
53265
53997
  responseShape: {
@@ -53270,13 +54002,13 @@ var integrators_registry_default = {
53270
54002
  },
53271
54003
  {
53272
54004
  name: "status",
53273
- description: "",
54005
+ description: "Fetch a simulated container's current status and metadata.",
53274
54006
  params: [
53275
54007
  {
53276
54008
  name: "containerId",
53277
54009
  type: "string",
53278
54010
  required: true,
53279
- description: ""
54011
+ description: "Container id, or a unique id prefix."
53280
54012
  }
53281
54013
  ],
53282
54014
  responseShape: {
@@ -53284,7 +54016,26 @@ var integrators_registry_default = {
53284
54016
  name: "string",
53285
54017
  image: "string",
53286
54018
  status: "string",
53287
- ports: "array",
54019
+ ports: {
54020
+ type: "array",
54021
+ items: {
54022
+ type: "object",
54023
+ properties: {
54024
+ host: {
54025
+ type: "number",
54026
+ required: true
54027
+ },
54028
+ container: {
54029
+ type: "number",
54030
+ required: true
54031
+ },
54032
+ protocol: {
54033
+ type: "string",
54034
+ required: true
54035
+ }
54036
+ }
54037
+ }
54038
+ },
53288
54039
  createdAt: "number",
53289
54040
  startedAt: "number | null",
53290
54041
  stoppedAt: "number | null"
@@ -53292,23 +54043,71 @@ var integrators_registry_default = {
53292
54043
  },
53293
54044
  {
53294
54045
  name: "list",
53295
- description: "",
54046
+ description: "List simulated containers; by default only running ones (like `docker ps`).",
53296
54047
  params: [
53297
54048
  {
53298
54049
  name: "all",
53299
54050
  type: "boolean",
53300
54051
  required: false,
53301
- description: ""
54052
+ description: "Include stopped/exited containers, not just running ones."
53302
54053
  },
53303
54054
  {
53304
54055
  name: "filterByLabel",
53305
54056
  type: "string",
53306
54057
  required: false,
53307
- description: ""
54058
+ description: "Filter by a `key` or `key=value` label match."
53308
54059
  }
53309
54060
  ],
53310
54061
  responseShape: {
53311
- containers: "array",
54062
+ containers: {
54063
+ type: "array",
54064
+ items: {
54065
+ type: "object",
54066
+ properties: {
54067
+ id: {
54068
+ type: "string",
54069
+ required: true
54070
+ },
54071
+ name: {
54072
+ type: "string",
54073
+ required: true
54074
+ },
54075
+ image: {
54076
+ type: "string",
54077
+ required: true
54078
+ },
54079
+ status: {
54080
+ type: "string",
54081
+ required: true
54082
+ },
54083
+ ports: {
54084
+ type: "array",
54085
+ required: true,
54086
+ items: {
54087
+ type: "object",
54088
+ properties: {
54089
+ host: {
54090
+ type: "number",
54091
+ required: true
54092
+ },
54093
+ container: {
54094
+ type: "number",
54095
+ required: true
54096
+ },
54097
+ protocol: {
54098
+ type: "string",
54099
+ required: true
54100
+ }
54101
+ }
54102
+ }
54103
+ },
54104
+ createdAt: {
54105
+ type: "number",
54106
+ required: true
54107
+ }
54108
+ }
54109
+ }
54110
+ },
53312
54111
  total: "number"
53313
54112
  }
53314
54113
  }
@@ -53321,55 +54120,73 @@ var integrators_registry_default = {
53321
54120
  actions: [
53322
54121
  {
53323
54122
  name: "upload",
53324
- description: "",
54123
+ 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
54124
  params: [
53326
54125
  {
53327
54126
  name: "bucket",
53328
54127
  type: "string",
53329
54128
  required: true,
53330
- description: ""
54129
+ description: "Target bucket; defaults to STORAGE_BUCKET."
53331
54130
  },
53332
54131
  {
53333
54132
  name: "key",
53334
54133
  type: "string",
53335
54134
  required: false,
53336
- description: ""
54135
+ description: "Object key to store under (canonical shape); ignored when `file` is present."
53337
54136
  },
53338
54137
  {
53339
54138
  name: "content",
53340
54139
  type: "string",
53341
54140
  required: false,
53342
- description: ""
54141
+ description: "Object content as a base64 data URL, raw base64, or plain text (canonical shape); ignored when `file` is present."
53343
54142
  },
53344
54143
  {
53345
54144
  name: "contentType",
53346
54145
  type: "string",
53347
54146
  required: false,
53348
- description: ""
54147
+ description: "MIME type override for the canonical shape; inferred from a data URL when omitted."
53349
54148
  },
53350
54149
  {
53351
54150
  name: "file",
53352
54151
  type: "object",
53353
54152
  required: false,
53354
- description: ""
54153
+ description: "File-form upload payload (as emitted by UploadDropZone); `content` is a base64 data URL.",
54154
+ properties: {
54155
+ name: {
54156
+ type: "string",
54157
+ required: true
54158
+ },
54159
+ size: {
54160
+ type: "number",
54161
+ required: true
54162
+ },
54163
+ type: {
54164
+ type: "string",
54165
+ required: true
54166
+ },
54167
+ content: {
54168
+ type: "string",
54169
+ required: false
54170
+ }
54171
+ }
53355
54172
  },
53356
54173
  {
53357
54174
  name: "acl",
53358
54175
  type: "'public' | 'private'",
53359
54176
  required: false,
53360
- description: ""
54177
+ description: "Object ACL \u2014 'public' produces a public URL, otherwise the URL is signed/private."
53361
54178
  },
53362
54179
  {
53363
54180
  name: "maxSize",
53364
54181
  type: "number",
53365
54182
  required: false,
53366
- description: ""
54183
+ description: "Reject the upload if the file-form payload's declared size exceeds this many bytes."
53367
54184
  },
53368
54185
  {
53369
54186
  name: "metadata",
53370
54187
  type: "IntegrationParams",
53371
54188
  required: false,
53372
- description: ""
54189
+ description: "Arbitrary metadata stored alongside the object (in-memory backend only)."
53373
54190
  }
53374
54191
  ],
53375
54192
  responseShape: {
@@ -53379,57 +54196,110 @@ var integrators_registry_default = {
53379
54196
  etag: "string",
53380
54197
  id: "string",
53381
54198
  url: "string"
53382
- }
54199
+ },
54200
+ synonyms: "upload file, upload object"
53383
54201
  },
53384
54202
  {
53385
54203
  name: "uploadMany",
53386
- description: "",
54204
+ 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
54205
  params: [
53388
54206
  {
53389
54207
  name: "bucket",
53390
54208
  type: "string",
53391
54209
  required: true,
53392
- description: ""
54210
+ description: "Target bucket; defaults to STORAGE_BUCKET."
53393
54211
  },
53394
54212
  {
53395
54213
  name: "files",
53396
54214
  type: "array",
53397
54215
  required: true,
53398
- description: ""
54216
+ description: "Files to upload, in UploadDropZone's `{ name, size, type, content }` shape.",
54217
+ items: {
54218
+ type: "object",
54219
+ properties: {
54220
+ name: {
54221
+ type: "string",
54222
+ required: true
54223
+ },
54224
+ size: {
54225
+ type: "number",
54226
+ required: true
54227
+ },
54228
+ type: {
54229
+ type: "string",
54230
+ required: true
54231
+ },
54232
+ content: {
54233
+ type: "string",
54234
+ required: false
54235
+ }
54236
+ }
54237
+ }
53399
54238
  },
53400
54239
  {
53401
54240
  name: "acl",
53402
54241
  type: "'public' | 'private'",
53403
54242
  required: false,
53404
- description: ""
54243
+ description: "Object ACL applied to every file in the batch."
53405
54244
  },
53406
54245
  {
53407
54246
  name: "maxSize",
53408
54247
  type: "number",
53409
54248
  required: false,
53410
- description: ""
54249
+ description: "Reject any file whose declared size exceeds this many bytes."
53411
54250
  }
53412
54251
  ],
53413
54252
  responseShape: {
53414
- items: "array",
54253
+ items: {
54254
+ type: "array",
54255
+ items: {
54256
+ type: "object",
54257
+ properties: {
54258
+ id: {
54259
+ type: "string",
54260
+ required: true
54261
+ },
54262
+ key: {
54263
+ type: "string",
54264
+ required: true
54265
+ },
54266
+ url: {
54267
+ type: "string",
54268
+ required: true
54269
+ },
54270
+ name: {
54271
+ type: "string",
54272
+ required: true
54273
+ },
54274
+ sizeBytes: {
54275
+ type: "number",
54276
+ required: true
54277
+ },
54278
+ mimeType: {
54279
+ type: "string",
54280
+ required: true
54281
+ }
54282
+ }
54283
+ }
54284
+ },
53415
54285
  count: "number"
53416
54286
  }
53417
54287
  },
53418
54288
  {
53419
54289
  name: "download",
53420
- description: "",
54290
+ description: "Download an object's content, base64-encoded.",
53421
54291
  params: [
53422
54292
  {
53423
54293
  name: "bucket",
53424
54294
  type: "string",
53425
54295
  required: true,
53426
- description: ""
54296
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53427
54297
  },
53428
54298
  {
53429
54299
  name: "key",
53430
54300
  type: "string",
53431
54301
  required: true,
53432
- description: ""
54302
+ description: "Object key."
53433
54303
  }
53434
54304
  ],
53435
54305
  responseShape: {
@@ -53441,54 +54311,73 @@ var integrators_registry_default = {
53441
54311
  },
53442
54312
  {
53443
54313
  name: "list",
53444
- description: "",
54314
+ description: "List object keys in a bucket, optionally prefix-filtered, one page at a time.",
53445
54315
  params: [
53446
54316
  {
53447
54317
  name: "bucket",
53448
54318
  type: "string",
53449
54319
  required: true,
53450
- description: ""
54320
+ description: "Bucket to list; defaults to STORAGE_BUCKET."
53451
54321
  },
53452
54322
  {
53453
54323
  name: "prefix",
53454
54324
  type: "string",
53455
54325
  required: false,
53456
- description: ""
54326
+ description: "Only keys starting with this prefix."
53457
54327
  },
53458
54328
  {
53459
54329
  name: "maxKeys",
53460
54330
  type: "number",
53461
54331
  required: false,
53462
- description: ""
54332
+ description: "Maximum keys per page; defaults to 1000."
53463
54333
  },
53464
54334
  {
53465
54335
  name: "continuationToken",
53466
54336
  type: "string",
53467
54337
  required: false,
53468
- description: ""
54338
+ description: "Pagination token from a previous call's `nextToken`."
53469
54339
  }
53470
54340
  ],
53471
54341
  responseShape: {
53472
- keys: "array",
54342
+ keys: {
54343
+ type: "array",
54344
+ items: {
54345
+ type: "object",
54346
+ properties: {
54347
+ key: {
54348
+ type: "string",
54349
+ required: true
54350
+ },
54351
+ size: {
54352
+ type: "number",
54353
+ required: true
54354
+ },
54355
+ lastModified: {
54356
+ type: "number",
54357
+ required: true
54358
+ }
54359
+ }
54360
+ }
54361
+ },
53473
54362
  truncated: "boolean",
53474
54363
  nextToken: "string"
53475
54364
  }
53476
54365
  },
53477
54366
  {
53478
54367
  name: "delete",
53479
- description: "",
54368
+ description: "Delete an object from a bucket.",
53480
54369
  params: [
53481
54370
  {
53482
54371
  name: "bucket",
53483
54372
  type: "string",
53484
54373
  required: true,
53485
- description: ""
54374
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53486
54375
  },
53487
54376
  {
53488
54377
  name: "key",
53489
54378
  type: "string",
53490
54379
  required: true,
53491
- description: ""
54380
+ description: "Object key to delete."
53492
54381
  }
53493
54382
  ],
53494
54383
  responseShape: {
@@ -53497,31 +54386,31 @@ var integrators_registry_default = {
53497
54386
  },
53498
54387
  {
53499
54388
  name: "getSignedUrl",
53500
- description: "",
54389
+ description: "Generate a time-limited pre-signed URL for direct GET or PUT access to an object.",
53501
54390
  params: [
53502
54391
  {
53503
54392
  name: "bucket",
53504
54393
  type: "string",
53505
54394
  required: true,
53506
- description: ""
54395
+ description: "Bucket the object lives in; defaults to STORAGE_BUCKET."
53507
54396
  },
53508
54397
  {
53509
54398
  name: "key",
53510
54399
  type: "string",
53511
54400
  required: true,
53512
- description: ""
54401
+ description: "Object key."
53513
54402
  },
53514
54403
  {
53515
54404
  name: "expiresIn",
53516
54405
  type: "number",
53517
54406
  required: false,
53518
- description: ""
54407
+ description: "URL validity window in seconds; defaults to 3600."
53519
54408
  },
53520
54409
  {
53521
54410
  name: "operation",
53522
54411
  type: "'get' | 'put'",
53523
54412
  required: false,
53524
- description: ""
54413
+ description: "Whether the URL authorizes a read or a write; defaults to 'get'."
53525
54414
  }
53526
54415
  ],
53527
54416
  responseShape: {
@@ -53538,31 +54427,31 @@ var integrators_registry_default = {
53538
54427
  actions: [
53539
54428
  {
53540
54429
  name: "enqueue",
53541
- description: "",
54430
+ description: "Add a job to an in-memory job queue, ordered by priority (higher first) among ready jobs.",
53542
54431
  params: [
53543
54432
  {
53544
54433
  name: "queue",
53545
54434
  type: "string",
53546
54435
  required: true,
53547
- description: ""
54436
+ description: "Queue name."
53548
54437
  },
53549
54438
  {
53550
54439
  name: "payload",
53551
54440
  type: "ServiceParams",
53552
54441
  required: true,
53553
- description: ""
54442
+ description: "Arbitrary job payload."
53554
54443
  },
53555
54444
  {
53556
54445
  name: "delay",
53557
54446
  type: "number",
53558
54447
  required: false,
53559
- description: ""
54448
+ description: "Delay before the job becomes eligible for dequeue, in milliseconds."
53560
54449
  },
53561
54450
  {
53562
54451
  name: "priority",
53563
54452
  type: "number",
53564
54453
  required: false,
53565
- description: ""
54454
+ description: "Priority \u2014 higher values are dequeued before lower ones."
53566
54455
  }
53567
54456
  ],
53568
54457
  responseShape: {
@@ -53572,13 +54461,13 @@ var integrators_registry_default = {
53572
54461
  },
53573
54462
  {
53574
54463
  name: "dequeue",
53575
- description: "",
54464
+ description: "Pop the highest-priority pending job whose delay has elapsed, marking it 'processing'; returns null if none is ready.",
53576
54465
  params: [
53577
54466
  {
53578
54467
  name: "queue",
53579
54468
  type: "string",
53580
54469
  required: true,
53581
- description: ""
54470
+ description: "Queue name."
53582
54471
  }
53583
54472
  ],
53584
54473
  responseShape: {
@@ -53587,13 +54476,13 @@ var integrators_registry_default = {
53587
54476
  },
53588
54477
  {
53589
54478
  name: "status",
53590
- description: "",
54479
+ description: "Look up a job's current status by id.",
53591
54480
  params: [
53592
54481
  {
53593
54482
  name: "jobId",
53594
54483
  type: "string",
53595
54484
  required: true,
53596
- description: ""
54485
+ description: "Job id from enqueue."
53597
54486
  }
53598
54487
  ],
53599
54488
  responseShape: {
@@ -53603,19 +54492,19 @@ var integrators_registry_default = {
53603
54492
  },
53604
54493
  {
53605
54494
  name: "complete",
53606
- description: "",
54495
+ description: "Mark a 'processing' job completed and store its result; no-op (returns false) if the job isn't in 'processing' state.",
53607
54496
  params: [
53608
54497
  {
53609
54498
  name: "jobId",
53610
54499
  type: "string",
53611
54500
  required: true,
53612
- description: ""
54501
+ description: "Job id."
53613
54502
  },
53614
54503
  {
53615
54504
  name: "result",
53616
54505
  type: "ServiceParams",
53617
54506
  required: false,
53618
- description: ""
54507
+ description: "Result payload to attach to the job."
53619
54508
  }
53620
54509
  ],
53621
54510
  responseShape: {
@@ -53624,19 +54513,19 @@ var integrators_registry_default = {
53624
54513
  },
53625
54514
  {
53626
54515
  name: "fail",
53627
- description: "",
54516
+ description: "Mark a 'processing' job failed; no-op (returns false) if the job isn't in 'processing' state.",
53628
54517
  params: [
53629
54518
  {
53630
54519
  name: "jobId",
53631
54520
  type: "string",
53632
54521
  required: true,
53633
- description: ""
54522
+ description: "Job id."
53634
54523
  },
53635
54524
  {
53636
54525
  name: "error",
53637
54526
  type: "string",
53638
54527
  required: false,
53639
- description: ""
54528
+ description: "Failure reason to attach to the job."
53640
54529
  }
53641
54530
  ],
53642
54531
  responseShape: {
@@ -53645,13 +54534,13 @@ var integrators_registry_default = {
53645
54534
  },
53646
54535
  {
53647
54536
  name: "cancel",
53648
- description: "",
54537
+ description: "Remove a 'pending' job from its queue; no-op (returns false) once it has been dequeued.",
53649
54538
  params: [
53650
54539
  {
53651
54540
  name: "jobId",
53652
54541
  type: "string",
53653
54542
  required: true,
53654
- description: ""
54543
+ description: "Job id."
53655
54544
  }
53656
54545
  ],
53657
54546
  responseShape: {
@@ -53660,13 +54549,13 @@ var integrators_registry_default = {
53660
54549
  },
53661
54550
  {
53662
54551
  name: "size",
53663
- description: "",
54552
+ description: "Count pending and processing jobs in a queue.",
53664
54553
  params: [
53665
54554
  {
53666
54555
  name: "queue",
53667
54556
  type: "string",
53668
54557
  required: true,
53669
- description: ""
54558
+ description: "Queue name."
53670
54559
  }
53671
54560
  ],
53672
54561
  responseShape: {
@@ -53684,13 +54573,13 @@ var integrators_registry_default = {
53684
54573
  actions: [
53685
54574
  {
53686
54575
  name: "get",
53687
- description: "",
54576
+ description: "Read a key's value from the in-memory cache; returns null (as `value`) if absent or expired.",
53688
54577
  params: [
53689
54578
  {
53690
54579
  name: "key",
53691
54580
  type: "string",
53692
54581
  required: true,
53693
- description: ""
54582
+ description: "Cache key."
53694
54583
  }
53695
54584
  ],
53696
54585
  responseShape: {
@@ -53699,25 +54588,25 @@ var integrators_registry_default = {
53699
54588
  },
53700
54589
  {
53701
54590
  name: "set",
53702
- description: "",
54591
+ description: "Write a key's value, optionally with an expiry.",
53703
54592
  params: [
53704
54593
  {
53705
54594
  name: "key",
53706
54595
  type: "string",
53707
54596
  required: true,
53708
- description: ""
54597
+ description: "Cache key."
53709
54598
  },
53710
54599
  {
53711
54600
  name: "value",
53712
54601
  type: "ServiceParams",
53713
54602
  required: true,
53714
- description: ""
54603
+ description: "Value to store."
53715
54604
  },
53716
54605
  {
53717
54606
  name: "ttl",
53718
54607
  type: "number",
53719
54608
  required: false,
53720
- description: ""
54609
+ description: "Time-to-live in seconds; omit for no expiry."
53721
54610
  }
53722
54611
  ],
53723
54612
  responseShape: {
@@ -53726,13 +54615,13 @@ var integrators_registry_default = {
53726
54615
  },
53727
54616
  {
53728
54617
  name: "delete",
53729
- description: "",
54618
+ description: "Delete a key.",
53730
54619
  params: [
53731
54620
  {
53732
54621
  name: "key",
53733
54622
  type: "string",
53734
54623
  required: true,
53735
- description: ""
54624
+ description: "Cache key."
53736
54625
  }
53737
54626
  ],
53738
54627
  responseShape: {
@@ -53741,19 +54630,19 @@ var integrators_registry_default = {
53741
54630
  },
53742
54631
  {
53743
54632
  name: "lock",
53744
- description: "",
54633
+ description: "Acquire a mutex on a key; fails (returns acquired:false) if another lock on the key is still alive.",
53745
54634
  params: [
53746
54635
  {
53747
54636
  name: "key",
53748
54637
  type: "string",
53749
54638
  required: true,
53750
- description: ""
54639
+ description: "Lock key."
53751
54640
  },
53752
54641
  {
53753
54642
  name: "ttl",
53754
54643
  type: "number",
53755
54644
  required: false,
53756
- description: ""
54645
+ description: "Lock time-to-live in milliseconds; defaults to 30000 (30s)."
53757
54646
  }
53758
54647
  ],
53759
54648
  responseShape: {
@@ -53763,19 +54652,19 @@ var integrators_registry_default = {
53763
54652
  },
53764
54653
  {
53765
54654
  name: "unlock",
53766
- description: "",
54655
+ description: "Release a lock; only succeeds when `lockId` matches the current holder.",
53767
54656
  params: [
53768
54657
  {
53769
54658
  name: "key",
53770
54659
  type: "string",
53771
54660
  required: true,
53772
- description: ""
54661
+ description: "Lock key."
53773
54662
  },
53774
54663
  {
53775
54664
  name: "lockId",
53776
54665
  type: "string",
53777
54666
  required: true,
53778
- description: ""
54667
+ description: "Lock id returned by the corresponding `lock` call."
53779
54668
  }
53780
54669
  ],
53781
54670
  responseShape: {
@@ -53784,19 +54673,19 @@ var integrators_registry_default = {
53784
54673
  },
53785
54674
  {
53786
54675
  name: "increment",
53787
- description: "",
54676
+ description: "Atomically add to a numeric key's value (creating it at 0 if absent), preserving any existing TTL.",
53788
54677
  params: [
53789
54678
  {
53790
54679
  name: "key",
53791
54680
  type: "string",
53792
54681
  required: true,
53793
- description: ""
54682
+ description: "Cache key."
53794
54683
  },
53795
54684
  {
53796
54685
  name: "by",
53797
54686
  type: "number",
53798
54687
  required: false,
53799
- description: ""
54688
+ description: "Amount to add; defaults to 1 (can be negative to decrement)."
53800
54689
  }
53801
54690
  ],
53802
54691
  responseShape: {
@@ -53805,19 +54694,19 @@ var integrators_registry_default = {
53805
54694
  },
53806
54695
  {
53807
54696
  name: "expire",
53808
- description: "",
54697
+ description: "Set (or reset) a key's expiry; no-op (returns set:false) if the key doesn't exist or is already expired.",
53809
54698
  params: [
53810
54699
  {
53811
54700
  name: "key",
53812
54701
  type: "string",
53813
54702
  required: true,
53814
- description: ""
54703
+ description: "Cache key."
53815
54704
  },
53816
54705
  {
53817
54706
  name: "ttl",
53818
54707
  type: "number",
53819
54708
  required: true,
53820
- description: ""
54709
+ description: "New time-to-live in seconds."
53821
54710
  }
53822
54711
  ],
53823
54712
  responseShape: {
@@ -53826,19 +54715,19 @@ var integrators_registry_default = {
53826
54715
  },
53827
54716
  {
53828
54717
  name: "publish",
53829
- description: "",
54718
+ description: "Publish a message to a channel; delivered synchronously to in-process subscriber callbacks only.",
53830
54719
  params: [
53831
54720
  {
53832
54721
  name: "channel",
53833
54722
  type: "string",
53834
54723
  required: true,
53835
- description: ""
54724
+ description: "Channel name."
53836
54725
  },
53837
54726
  {
53838
54727
  name: "message",
53839
54728
  type: "ServiceParams",
53840
54729
  required: true,
53841
- description: ""
54730
+ description: "Message payload."
53842
54731
  }
53843
54732
  ],
53844
54733
  responseShape: {
@@ -53847,13 +54736,13 @@ var integrators_registry_default = {
53847
54736
  },
53848
54737
  {
53849
54738
  name: "subscribe",
53850
- description: "",
54739
+ description: "Register interest in a channel; does not itself wire a callback (that happens at a higher-level API).",
53851
54740
  params: [
53852
54741
  {
53853
54742
  name: "channel",
53854
54743
  type: "string",
53855
54744
  required: true,
53856
- description: ""
54745
+ description: "Channel name."
53857
54746
  }
53858
54747
  ],
53859
54748
  responseShape: {
@@ -53869,25 +54758,25 @@ var integrators_registry_default = {
53869
54758
  actions: [
53870
54759
  {
53871
54760
  name: "authorize",
53872
- description: "",
54761
+ 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
54762
  params: [
53874
54763
  {
53875
54764
  name: "provider",
53876
54765
  type: "'google' | 'github' | 'auth0'",
53877
54766
  required: true,
53878
- description: ""
54767
+ description: "Identity provider; OIDC issuer defaults to Google unless OIDC_ISSUER_URL overrides it."
53879
54768
  },
53880
54769
  {
53881
54770
  name: "scopes",
53882
54771
  type: "string[]",
53883
54772
  required: true,
53884
- description: ""
54773
+ description: "OAuth scopes to request."
53885
54774
  },
53886
54775
  {
53887
54776
  name: "redirectUri",
53888
54777
  type: "string",
53889
54778
  required: true,
53890
- description: ""
54779
+ description: "Callback URL the provider redirects back to after consent."
53891
54780
  }
53892
54781
  ],
53893
54782
  responseShape: {
@@ -53897,19 +54786,19 @@ var integrators_registry_default = {
53897
54786
  },
53898
54787
  {
53899
54788
  name: "token",
53900
- description: "",
54789
+ description: "Exchange an authorization code for tokens, consuming the one-time-use `state` from the matching `authorize` call.",
53901
54790
  params: [
53902
54791
  {
53903
54792
  name: "code",
53904
54793
  type: "string",
53905
54794
  required: true,
53906
- description: ""
54795
+ description: "Authorization code from the provider's redirect callback."
53907
54796
  },
53908
54797
  {
53909
54798
  name: "state",
53910
54799
  type: "string",
53911
54800
  required: true,
53912
- description: ""
54801
+ description: "The `state` value returned by `authorize`."
53913
54802
  }
53914
54803
  ],
53915
54804
  responseShape: {
@@ -53921,13 +54810,13 @@ var integrators_registry_default = {
53921
54810
  },
53922
54811
  {
53923
54812
  name: "refresh",
53924
- description: "",
54813
+ description: "Exchange a refresh token for a new access token.",
53925
54814
  params: [
53926
54815
  {
53927
54816
  name: "refreshToken",
53928
54817
  type: "string",
53929
54818
  required: true,
53930
- description: ""
54819
+ description: "Refresh token from a prior `token` call."
53931
54820
  }
53932
54821
  ],
53933
54822
  responseShape: {
@@ -53937,13 +54826,13 @@ var integrators_registry_default = {
53937
54826
  },
53938
54827
  {
53939
54828
  name: "revoke",
53940
- description: "",
54829
+ description: "Revoke an access or refresh token.",
53941
54830
  params: [
53942
54831
  {
53943
54832
  name: "token",
53944
54833
  type: "string",
53945
54834
  required: true,
53946
- description: ""
54835
+ description: "The access or refresh token to revoke."
53947
54836
  }
53948
54837
  ],
53949
54838
  responseShape: {
@@ -53952,13 +54841,13 @@ var integrators_registry_default = {
53952
54841
  },
53953
54842
  {
53954
54843
  name: "userinfo",
53955
- description: "",
54844
+ description: "Fetch the authenticated user's profile claims for an access token.",
53956
54845
  params: [
53957
54846
  {
53958
54847
  name: "accessToken",
53959
54848
  type: "string",
53960
54849
  required: true,
53961
- description: ""
54850
+ description: "Access token from a prior `token`/`refresh` call."
53962
54851
  }
53963
54852
  ],
53964
54853
  responseShape: {
@@ -53977,41 +54866,76 @@ var integrators_registry_default = {
53977
54866
  actions: [
53978
54867
  {
53979
54868
  name: "list",
53980
- description: "",
54869
+ description: "List declared credentials and their masked (last-4) configuration status; open to any caller.",
53981
54870
  params: [
53982
54871
  {
53983
54872
  name: "service",
53984
54873
  type: "string",
53985
54874
  required: false,
53986
- description: ""
54875
+ description: "Restrict the listing to one service's declared credentials; omit for all services."
53987
54876
  }
53988
54877
  ],
53989
54878
  responseShape: {
53990
54879
  enabled: "boolean",
53991
- entries: "array"
54880
+ entries: {
54881
+ type: "array",
54882
+ items: {
54883
+ type: "object",
54884
+ properties: {
54885
+ service: {
54886
+ type: "string",
54887
+ required: true
54888
+ },
54889
+ envVar: {
54890
+ type: "string",
54891
+ required: true
54892
+ },
54893
+ required: {
54894
+ type: "boolean",
54895
+ required: true
54896
+ },
54897
+ description: {
54898
+ type: "string",
54899
+ required: true
54900
+ },
54901
+ configured: {
54902
+ type: "boolean",
54903
+ required: true
54904
+ },
54905
+ source: {
54906
+ type: "'store' | 'env' | 'none'",
54907
+ required: true
54908
+ },
54909
+ last4: {
54910
+ type: "string",
54911
+ required: true
54912
+ }
54913
+ }
54914
+ }
54915
+ }
53992
54916
  }
53993
54917
  },
53994
54918
  {
53995
54919
  name: "set",
53996
- description: "",
54920
+ 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
54921
  params: [
53998
54922
  {
53999
54923
  name: "service",
54000
54924
  type: "string",
54001
54925
  required: true,
54002
- description: ""
54926
+ description: "Integration name the credential belongs to."
54003
54927
  },
54004
54928
  {
54005
54929
  name: "envVar",
54006
54930
  type: "string",
54007
54931
  required: true,
54008
- description: ""
54932
+ description: "Declared env-var name being set."
54009
54933
  },
54010
54934
  {
54011
54935
  name: "value",
54012
54936
  type: "string",
54013
54937
  required: true,
54014
- description: ""
54938
+ description: "Secret value to store; never logged."
54015
54939
  }
54016
54940
  ],
54017
54941
  responseShape: {
@@ -54023,19 +54947,19 @@ var integrators_registry_default = {
54023
54947
  },
54024
54948
  {
54025
54949
  name: "remove",
54026
- description: "",
54950
+ description: "Delete a stored credential from the hosted store. Admin/owner role required.",
54027
54951
  params: [
54028
54952
  {
54029
54953
  name: "service",
54030
54954
  type: "string",
54031
54955
  required: true,
54032
- description: ""
54956
+ description: "Integration name the credential belongs to."
54033
54957
  },
54034
54958
  {
54035
54959
  name: "envVar",
54036
54960
  type: "string",
54037
54961
  required: true,
54038
- description: ""
54962
+ description: "Env-var name to remove."
54039
54963
  }
54040
54964
  ],
54041
54965
  responseShape: {
@@ -54044,13 +54968,13 @@ var integrators_registry_default = {
54044
54968
  },
54045
54969
  {
54046
54970
  name: "test",
54047
- description: "",
54971
+ 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
54972
  params: [
54049
54973
  {
54050
54974
  name: "service",
54051
54975
  type: "string",
54052
54976
  required: true,
54053
- description: ""
54977
+ description: "Integration name to test."
54054
54978
  }
54055
54979
  ],
54056
54980
  responseShape: {
@@ -54064,7 +54988,7 @@ var integrators_registry_default = {
54064
54988
  },
54065
54989
  {
54066
54990
  name: "rotate",
54067
- description: "",
54991
+ 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
54992
  params: [],
54069
54993
  responseShape: {
54070
54994
  rotated: "number",
@@ -54081,25 +55005,25 @@ var integrators_registry_default = {
54081
55005
  actions: [
54082
55006
  {
54083
55007
  name: "startSpan",
54084
- description: "",
55008
+ description: "Start a trace span (in-memory backend \u2014 no OpenTelemetry SDK/exporter).",
54085
55009
  params: [
54086
55010
  {
54087
55011
  name: "name",
54088
55012
  type: "string",
54089
55013
  required: true,
54090
- description: ""
55014
+ description: "Span name."
54091
55015
  },
54092
55016
  {
54093
55017
  name: "attributes",
54094
55018
  type: "IntegrationParams",
54095
55019
  required: false,
54096
- description: ""
55020
+ description: "Key-value attributes attached to the span."
54097
55021
  },
54098
55022
  {
54099
55023
  name: "traceId",
54100
55024
  type: "string",
54101
55025
  required: false,
54102
- description: ""
55026
+ description: "Existing trace id to attach this span to; a new one is generated when omitted."
54103
55027
  }
54104
55028
  ],
54105
55029
  responseShape: {
@@ -54109,19 +55033,19 @@ var integrators_registry_default = {
54109
55033
  },
54110
55034
  {
54111
55035
  name: "endSpan",
54112
- description: "",
55036
+ description: "Mark a span ended, optionally recording its final status; no-op (returns ended:false) for an unknown span id.",
54113
55037
  params: [
54114
55038
  {
54115
55039
  name: "spanId",
54116
55040
  type: "string",
54117
55041
  required: true,
54118
- description: ""
55042
+ description: "Span id from startSpan."
54119
55043
  },
54120
55044
  {
54121
55045
  name: "status",
54122
55046
  type: "'ok' | 'error'",
54123
55047
  required: false,
54124
- description: ""
55048
+ description: "Final span status."
54125
55049
  }
54126
55050
  ],
54127
55051
  responseShape: {
@@ -54130,25 +55054,25 @@ var integrators_registry_default = {
54130
55054
  },
54131
55055
  {
54132
55056
  name: "addEvent",
54133
- description: "",
55057
+ description: "Attach a timestamped event to an open span; no-op (returns added:false) for an unknown span id.",
54134
55058
  params: [
54135
55059
  {
54136
55060
  name: "spanId",
54137
55061
  type: "string",
54138
55062
  required: true,
54139
- description: ""
55063
+ description: "Span id from startSpan."
54140
55064
  },
54141
55065
  {
54142
55066
  name: "name",
54143
55067
  type: "string",
54144
55068
  required: true,
54145
- description: ""
55069
+ description: "Event name."
54146
55070
  },
54147
55071
  {
54148
55072
  name: "attributes",
54149
55073
  type: "IntegrationParams",
54150
55074
  required: false,
54151
- description: ""
55075
+ description: "Key-value attributes attached to the event."
54152
55076
  }
54153
55077
  ],
54154
55078
  responseShape: {
@@ -54157,31 +55081,31 @@ var integrators_registry_default = {
54157
55081
  },
54158
55082
  {
54159
55083
  name: "recordMetric",
54160
- description: "",
55084
+ description: "Record a metric sample: counters accumulate, gauges overwrite, histograms append to the sample list.",
54161
55085
  params: [
54162
55086
  {
54163
55087
  name: "name",
54164
55088
  type: "string",
54165
55089
  required: true,
54166
- description: ""
55090
+ description: "Metric name."
54167
55091
  },
54168
55092
  {
54169
55093
  name: "value",
54170
55094
  type: "number",
54171
55095
  required: true,
54172
- description: ""
55096
+ description: "Sample value."
54173
55097
  },
54174
55098
  {
54175
55099
  name: "type",
54176
55100
  type: "'counter' | 'gauge' | 'histogram'",
54177
55101
  required: false,
54178
- description: ""
55102
+ description: "Aggregation kind; defaults to 'counter'."
54179
55103
  },
54180
55104
  {
54181
55105
  name: "labels",
54182
55106
  type: "IntegrationParams",
54183
55107
  required: false,
54184
- description: ""
55108
+ description: "Key-value labels attached to the metric (replaces prior labels on the same name)."
54185
55109
  }
54186
55110
  ],
54187
55111
  responseShape: {
@@ -54190,20 +55114,20 @@ var integrators_registry_default = {
54190
55114
  },
54191
55115
  {
54192
55116
  name: "getSpan",
54193
- description: "",
55117
+ description: "Fetch a stored span's full record by id; null if unknown.",
54194
55118
  params: [
54195
55119
  {
54196
55120
  name: "spanId",
54197
55121
  type: "string",
54198
55122
  required: true,
54199
- description: ""
55123
+ description: "Span id from startSpan."
54200
55124
  }
54201
55125
  ],
54202
55126
  responseShape: {}
54203
55127
  },
54204
55128
  {
54205
55129
  name: "getMetrics",
54206
- description: "",
55130
+ description: "Fetch all recorded metrics, keyed by metric name.",
54207
55131
  params: [],
54208
55132
  responseShape: {}
54209
55133
  }
@@ -54216,13 +55140,13 @@ var integrators_registry_default = {
54216
55140
  actions: [
54217
55141
  {
54218
55142
  name: "validate",
54219
- description: "",
55143
+ description: "Validate an orbital schema by writing it to a temp file and shelling out to `npx",
54220
55144
  params: [
54221
55145
  {
54222
55146
  name: "schema",
54223
55147
  type: "string",
54224
55148
  required: true,
54225
- description: ""
55149
+ description: "Raw .orb schema content to validate."
54226
55150
  }
54227
55151
  ],
54228
55152
  responseShape: {
@@ -54241,31 +55165,31 @@ var integrators_registry_default = {
54241
55165
  actions: [
54242
55166
  {
54243
55167
  name: "sendMessage",
54244
- description: "",
55168
+ description: "Send a chat message to the DeepAgent server (POST /api/agent/message), continuing an existing thread or starting one.",
54245
55169
  params: [
54246
55170
  {
54247
55171
  name: "message",
54248
55172
  type: "string",
54249
55173
  required: true,
54250
- description: ""
55174
+ description: "Message text."
54251
55175
  },
54252
55176
  {
54253
55177
  name: "threadId",
54254
55178
  type: "string",
54255
55179
  required: false,
54256
- description: ""
55180
+ description: "Existing thread id to continue; a new thread starts when omitted."
54257
55181
  },
54258
55182
  {
54259
55183
  name: "skill",
54260
55184
  type: "string",
54261
55185
  required: false,
54262
- description: ""
55186
+ description: "Named skill to invoke for this message."
54263
55187
  },
54264
55188
  {
54265
55189
  name: "context",
54266
55190
  type: "IntegrationParams",
54267
55191
  required: false,
54268
- description: ""
55192
+ description: "Extra context passed through to the agent."
54269
55193
  }
54270
55194
  ],
54271
55195
  responseShape: {
@@ -54275,13 +55199,13 @@ var integrators_registry_default = {
54275
55199
  },
54276
55200
  {
54277
55201
  name: "cancelGeneration",
54278
- description: "",
55202
+ description: "Cancel an in-flight generation on a DeepAgent thread (POST /api/agent/cancel).",
54279
55203
  params: [
54280
55204
  {
54281
55205
  name: "threadId",
54282
55206
  type: "string",
54283
55207
  required: true,
54284
- description: ""
55208
+ description: "Thread whose generation to cancel."
54285
55209
  }
54286
55210
  ],
54287
55211
  responseShape: {
@@ -54290,13 +55214,13 @@ var integrators_registry_default = {
54290
55214
  },
54291
55215
  {
54292
55216
  name: "validateSchema",
54293
- description: "",
55217
+ description: "Validate a schema via the DeepAgent server (POST /api/schema/validate).",
54294
55218
  params: [
54295
55219
  {
54296
55220
  name: "schema",
54297
55221
  type: "string",
54298
55222
  required: true,
54299
- description: ""
55223
+ description: "Schema content to validate."
54300
55224
  }
54301
55225
  ],
54302
55226
  responseShape: {
@@ -54306,19 +55230,19 @@ var integrators_registry_default = {
54306
55230
  },
54307
55231
  {
54308
55232
  name: "compileSchema",
54309
- description: "",
55233
+ description: "Compile a schema to a target shell via the DeepAgent server (POST /api/schema/compile).",
54310
55234
  params: [
54311
55235
  {
54312
55236
  name: "schema",
54313
55237
  type: "string",
54314
55238
  required: true,
54315
- description: ""
55239
+ description: "Schema content to compile."
54316
55240
  },
54317
55241
  {
54318
55242
  name: "shell",
54319
55243
  type: "string",
54320
55244
  required: false,
54321
- description: ""
55245
+ description: "Target codegen shell (e.g. 'typescript')."
54322
55246
  }
54323
55247
  ],
54324
55248
  responseShape: {
@@ -54328,17 +55252,36 @@ var integrators_registry_default = {
54328
55252
  },
54329
55253
  {
54330
55254
  name: "getThreadHistory",
54331
- description: "",
55255
+ description: "Fetch a thread's message history via the DeepAgent server (POST /api/agent/history).",
54332
55256
  params: [
54333
55257
  {
54334
55258
  name: "threadId",
54335
55259
  type: "string",
54336
55260
  required: true,
54337
- description: ""
55261
+ description: "Thread id."
54338
55262
  }
54339
55263
  ],
54340
55264
  responseShape: {
54341
- messages: "array"
55265
+ messages: {
55266
+ type: "array",
55267
+ items: {
55268
+ type: "object",
55269
+ properties: {
55270
+ role: {
55271
+ type: "string",
55272
+ required: true
55273
+ },
55274
+ content: {
55275
+ type: "string",
55276
+ required: true
55277
+ },
55278
+ timestamp: {
55279
+ type: "number",
55280
+ required: true
55281
+ }
55282
+ }
55283
+ }
55284
+ }
54342
55285
  }
54343
55286
  }
54344
55287
  ]
@@ -54350,25 +55293,25 @@ var integrators_registry_default = {
54350
55293
  actions: [
54351
55294
  {
54352
55295
  name: "query",
54353
- description: "",
55296
+ description: "Run a single read-only SELECT against a Postgres connection (write statements and multi-statement SQL are rejected before execution).",
54354
55297
  params: [
54355
55298
  {
54356
55299
  name: "connectionRef",
54357
55300
  type: "string",
54358
55301
  required: true,
54359
- description: ""
55302
+ 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
55303
  },
54361
55304
  {
54362
55305
  name: "sql",
54363
55306
  type: "string",
54364
55307
  required: true,
54365
- description: ""
55308
+ description: "SQL text; must be exactly one SELECT statement."
54366
55309
  },
54367
55310
  {
54368
55311
  name: "params",
54369
55312
  type: "DatabaseQueryParamValue[]",
54370
55313
  required: false,
54371
- description: ""
55314
+ description: "Positional bind parameters for the query."
54372
55315
  }
54373
55316
  ],
54374
55317
  responseShape: {
@@ -54385,13 +55328,13 @@ var integrators_registry_default = {
54385
55328
  actions: [
54386
55329
  {
54387
55330
  name: "getPage",
54388
- description: "",
55331
+ 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
55332
  params: [
54390
55333
  {
54391
55334
  name: "title",
54392
55335
  type: "string",
54393
55336
  required: true,
54394
- description: ""
55337
+ description: "Page title to look up."
54395
55338
  }
54396
55339
  ],
54397
55340
  responseShape: {
@@ -54410,13 +55353,13 @@ var integrators_registry_default = {
54410
55353
  actions: [
54411
55354
  {
54412
55355
  name: "svgExists",
54413
- description: "",
55356
+ description: "Check whether an icon exists at the given Iconify API path (a GET, not a HEAD, despite the name).",
54414
55357
  params: [
54415
55358
  {
54416
55359
  name: "path",
54417
55360
  type: "string",
54418
55361
  required: true,
54419
- description: ""
55362
+ description: "Iconify API path segment to probe, e.g. 'prefix/name.svg'."
54420
55363
  }
54421
55364
  ],
54422
55365
  responseShape: {
@@ -54425,19 +55368,19 @@ var integrators_registry_default = {
54425
55368
  },
54426
55369
  {
54427
55370
  name: "search",
54428
- description: "",
55371
+ description: "Search Iconify's icon sets by relevance.",
54429
55372
  params: [
54430
55373
  {
54431
55374
  name: "query",
54432
55375
  type: "string",
54433
55376
  required: true,
54434
- description: ""
55377
+ description: "Search query text."
54435
55378
  },
54436
55379
  {
54437
55380
  name: "limit",
54438
55381
  type: "number",
54439
55382
  required: false,
54440
- description: ""
55383
+ description: "Maximum icon ids to return; defaults to 1."
54441
55384
  }
54442
55385
  ],
54443
55386
  responseShape: {
@@ -54446,13 +55389,13 @@ var integrators_registry_default = {
54446
55389
  },
54447
55390
  {
54448
55391
  name: "getIconBody",
54449
- description: "",
55392
+ description: "Fetch an icon's raw SVG body (for color-tone classification); null if the icon or its collection isn't found.",
54450
55393
  params: [
54451
55394
  {
54452
55395
  name: "iconId",
54453
55396
  type: "string",
54454
55397
  required: true,
54455
- description: ""
55398
+ description: 'Icon id in "prefix:name" form.'
54456
55399
  }
54457
55400
  ],
54458
55401
  responseShape: {
@@ -54468,23 +55411,54 @@ var integrators_registry_default = {
54468
55411
  actions: [
54469
55412
  {
54470
55413
  name: "search",
54471
- description: "",
55414
+ description: "Search arXiv's public Atom API by relevance.",
54472
55415
  params: [
54473
55416
  {
54474
55417
  name: "query",
54475
55418
  type: "string",
54476
55419
  required: true,
54477
- description: ""
55420
+ description: "Search query text (matched across all fields)."
54478
55421
  },
54479
55422
  {
54480
55423
  name: "maxResults",
54481
55424
  type: "number",
54482
55425
  required: false,
54483
- description: ""
55426
+ description: "Maximum results to return; defaults to 8."
54484
55427
  }
54485
55428
  ],
54486
55429
  responseShape: {
54487
- results: "array"
55430
+ results: {
55431
+ type: "array",
55432
+ items: {
55433
+ type: "object",
55434
+ properties: {
55435
+ id: {
55436
+ type: "string",
55437
+ required: true
55438
+ },
55439
+ title: {
55440
+ type: "string",
55441
+ required: true
55442
+ },
55443
+ summary: {
55444
+ type: "string",
55445
+ required: true
55446
+ },
55447
+ authors: {
55448
+ type: "string[]",
55449
+ required: true
55450
+ },
55451
+ published: {
55452
+ type: "string",
55453
+ required: true
55454
+ },
55455
+ url: {
55456
+ type: "string",
55457
+ required: true
55458
+ }
55459
+ }
55460
+ }
55461
+ }
54488
55462
  }
54489
55463
  }
54490
55464
  ]
@@ -54507,7 +55481,7 @@ var integrators_registry_default = {
54507
55481
  // src/patterns/component-mapping.json
54508
55482
  var component_mapping_default = {
54509
55483
  version: "1.0.0",
54510
- exportedAt: "2026-09-02T20:03:03.703Z",
55484
+ exportedAt: "2026-09-03T03:26:05.097Z",
54511
55485
  mappings: {
54512
55486
  "page-header": {
54513
55487
  component: "PageHeader",
@@ -55920,6 +56894,16 @@ var component_mapping_default = {
55920
56894
  component: "DocumentDetails",
55921
56895
  importPath: "@/components/core/molecules/DocumentDetails",
55922
56896
  category: "display"
56897
+ },
56898
+ "floating-toolbar": {
56899
+ component: "FloatingToolbar",
56900
+ importPath: "@/components/core/molecules/FloatingToolbar",
56901
+ category: "component"
56902
+ },
56903
+ "dock-layout": {
56904
+ component: "DockLayout",
56905
+ importPath: "@/components/core/organisms/DockLayout",
56906
+ category: "layout"
55923
56907
  }
55924
56908
  }
55925
56909
  };
@@ -55927,7 +56911,7 @@ var component_mapping_default = {
55927
56911
  // src/patterns/event-contracts.json
55928
56912
  var event_contracts_default = {
55929
56913
  version: "1.0.0",
55930
- exportedAt: "2026-09-02T20:03:03.703Z",
56914
+ exportedAt: "2026-09-03T03:26:05.097Z",
55931
56915
  contracts: {
55932
56916
  form: {
55933
56917
  emits: [
@@ -57170,6 +58154,7 @@ var PATTERN_TYPES = [
57170
58154
  "doc-search",
57171
58155
  "doc-sidebar",
57172
58156
  "doc-toc",
58157
+ "dock-layout",
57173
58158
  "document-details",
57174
58159
  "document-panel",
57175
58160
  "document-viewer",
@@ -57203,6 +58188,7 @@ var PATTERN_TYPES = [
57203
58188
  "flip-card",
57204
58189
  "flip-container",
57205
58190
  "floating-action-button",
58191
+ "floating-toolbar",
57206
58192
  "form",
57207
58193
  "form-actions",
57208
58194
  "form-field",