@almadar/core 10.65.0 → 10.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js.map +1 -1
- package/dist/{effect-COsZyQ3w.d.ts → effect-1QxaoQFj.d.ts} +21 -15
- package/dist/{entityAccess-BrSu-_jI.d.ts → entityAccess-BeN_FNtm.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-BRf3dUz-.d.ts → index-Czuk06Hr.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +2404 -426
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +65 -66
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -8
- package/dist/patterns/index.d.ts +4960 -1529
- package/dist/patterns/index.js +2391 -425
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +2365 -442
- package/dist/patterns/patterns-registry.json +60 -10
- package/dist/patterns/registry.json +60 -10
- package/dist/patterns/services-registry.json +1477 -111
- package/dist/{schema-BBcQsU1e.d.ts → schema-BRAEV9eY.d.ts} +390 -390
- package/dist/{trait-DjBq4fW8.d.ts → trait-BkpkZfRN.d.ts} +77 -70
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +13 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-B3z8_OnS.d.ts → types-DO_gWzsC.d.ts} +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -852,6 +852,18 @@ var SECRET_CONFIG_TYPES = ["secret"];
|
|
|
852
852
|
function isSecretConfigType(type) {
|
|
853
853
|
return SECRET_CONFIG_TYPES.includes(type);
|
|
854
854
|
}
|
|
855
|
+
function maskSecretConfigValues(config, values) {
|
|
856
|
+
const masked = {};
|
|
857
|
+
for (const [key, value] of Object.entries(values)) {
|
|
858
|
+
const decl = config[key];
|
|
859
|
+
if (decl !== void 0 && isSecretConfigType(decl.type) && typeof value === "string" && value.length > 0) {
|
|
860
|
+
masked[key] = value.length > 4 ? `\u2022\u2022\u2022\u2022${value.slice(-4)}` : "\u2022\u2022\u2022\u2022";
|
|
861
|
+
} else {
|
|
862
|
+
masked[key] = value;
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
return masked;
|
|
866
|
+
}
|
|
855
867
|
var ConfigFieldItemsDeclarationSchema = z.lazy(
|
|
856
868
|
() => z.object({
|
|
857
869
|
type: z.string().optional(),
|
|
@@ -2238,7 +2250,7 @@ function getInteractionModelForDomain(domain) {
|
|
|
2238
2250
|
// src/patterns/patterns-registry.json
|
|
2239
2251
|
var patterns_registry_default = {
|
|
2240
2252
|
version: "1.0.0",
|
|
2241
|
-
exportedAt: "2026-08-
|
|
2253
|
+
exportedAt: "2026-08-23T03:36:02.671Z",
|
|
2242
2254
|
patterns: {
|
|
2243
2255
|
"entity-table": {
|
|
2244
2256
|
type: "entity-table",
|
|
@@ -3760,7 +3772,8 @@ var patterns_registry_default = {
|
|
|
3760
3772
|
types: [
|
|
3761
3773
|
"number"
|
|
3762
3774
|
],
|
|
3763
|
-
description: `Max inline action buttons before the rest collapse into a "\u22EF" overflow menu (mirrors DataGrid's maxInlineActions).
|
|
3775
|
+
description: `Max inline action buttons before the rest collapse into a "\u22EF" overflow menu (mirrors DataGrid's maxInlineActions). Defaults to 2 \u2014 primary + secondary visible, the rest under the menu \u2014 so every detail panel carries the same action pattern.`,
|
|
3776
|
+
default: 2
|
|
3764
3777
|
},
|
|
3765
3778
|
backAction: {
|
|
3766
3779
|
types: [
|
|
@@ -3927,7 +3940,8 @@ var patterns_registry_default = {
|
|
|
3927
3940
|
types: [
|
|
3928
3941
|
"boolean"
|
|
3929
3942
|
],
|
|
3930
|
-
description: "
|
|
3943
|
+
description: "When false, hides the action buttons + overflow menu (and the close \xD7). Defaults to true.",
|
|
3944
|
+
default: true
|
|
3931
3945
|
},
|
|
3932
3946
|
relationsData: {
|
|
3933
3947
|
types: [
|
|
@@ -15605,25 +15619,25 @@ var patterns_registry_default = {
|
|
|
15605
15619
|
types: [
|
|
15606
15620
|
"node"
|
|
15607
15621
|
],
|
|
15608
|
-
description:
|
|
15622
|
+
description: 'Stat chips row \u2014 floats along the top edge. Legacy chrome surface: new behaviors emit HUD chrome via `render-ui "hud-top"` instead.'
|
|
15609
15623
|
},
|
|
15610
15624
|
addons: {
|
|
15611
15625
|
types: [
|
|
15612
15626
|
"node"
|
|
15613
15627
|
],
|
|
15614
|
-
description:
|
|
15628
|
+
description: 'Action cluster \u2014 floats bottom-right (End Turn, Fire, Reset, \u2026). Legacy chrome surface: new behaviors emit action chrome via `render-ui "hud-bottom"` or `"floating"` instead.'
|
|
15615
15629
|
},
|
|
15616
15630
|
controls: {
|
|
15617
15631
|
types: [
|
|
15618
15632
|
"node"
|
|
15619
15633
|
],
|
|
15620
|
-
description:
|
|
15634
|
+
description: 'Movement controls \u2014 floats bottom-left (d-pad / control-grid). Legacy chrome surface: new behaviors emit movement controls via `render-ui "hud-bottom"` instead.'
|
|
15621
15635
|
},
|
|
15622
15636
|
overlay: {
|
|
15623
15637
|
types: [
|
|
15624
15638
|
"node"
|
|
15625
15639
|
],
|
|
15626
|
-
description:
|
|
15640
|
+
description: 'Centered overlay layer (victory/defeat banners, dialogs). Legacy chrome surface: new behaviors emit overlays via `render-ui "overlay"` (clear with `render-ui "overlay" null` on every exit) instead.'
|
|
15627
15641
|
},
|
|
15628
15642
|
className: {
|
|
15629
15643
|
types: [
|
|
@@ -15838,7 +15852,7 @@ var patterns_registry_default = {
|
|
|
15838
15852
|
types: [
|
|
15839
15853
|
"string"
|
|
15840
15854
|
],
|
|
15841
|
-
description: "Game font key (future | future-narrow | pixel | blocks | mini) or a CSS font-family.",
|
|
15855
|
+
description: "Game display-font key (future | future-narrow | pixel | blocks | mini) or a CSS font-family. Scoped override of the theme contract's --font-family-display slot: titles and numerics take this face, body text follows the active theme.",
|
|
15842
15856
|
default: "future"
|
|
15843
15857
|
},
|
|
15844
15858
|
"data-theme": {
|
|
@@ -19250,6 +19264,13 @@ var patterns_registry_default = {
|
|
|
19250
19264
|
description: "Row field holding the start timestamp (ISO or epoch). Defaults to `startTime`.",
|
|
19251
19265
|
default: "startTime"
|
|
19252
19266
|
},
|
|
19267
|
+
endField: {
|
|
19268
|
+
types: [
|
|
19269
|
+
"string"
|
|
19270
|
+
],
|
|
19271
|
+
description: "Row field holding the end timestamp (ISO or epoch). Defaults to `endTime`. When a row carries an end, the event's chip renders in its start slot and every further slot it covers shows a subdued continuation bar \u2014 without this, multi-hour events silently collapsed to their first hour.",
|
|
19272
|
+
default: "endTime"
|
|
19273
|
+
},
|
|
19253
19274
|
colorField: {
|
|
19254
19275
|
types: [
|
|
19255
19276
|
"string"
|
|
@@ -32065,6 +32086,17 @@ var patterns_registry_default = {
|
|
|
32065
32086
|
],
|
|
32066
32087
|
default: "md"
|
|
32067
32088
|
},
|
|
32089
|
+
variant: {
|
|
32090
|
+
types: [
|
|
32091
|
+
"string"
|
|
32092
|
+
],
|
|
32093
|
+
description: 'Layout variant: "floating" (default) renders a compact pill cluster that hugs its content width; "bar" preserves the legacy full-width split bar.',
|
|
32094
|
+
enumValues: [
|
|
32095
|
+
"floating",
|
|
32096
|
+
"bar"
|
|
32097
|
+
],
|
|
32098
|
+
default: "floating"
|
|
32099
|
+
},
|
|
32068
32100
|
className: {
|
|
32069
32101
|
types: [
|
|
32070
32102
|
"string"
|
|
@@ -32621,8 +32653,7 @@ var patterns_registry_default = {
|
|
|
32621
32653
|
"number",
|
|
32622
32654
|
"string"
|
|
32623
32655
|
],
|
|
32624
|
-
description: "Current value (defaults to 0 if not provided)"
|
|
32625
|
-
default: 0
|
|
32656
|
+
description: "Current value (defaults to 0 if not provided)"
|
|
32626
32657
|
},
|
|
32627
32658
|
max: {
|
|
32628
32659
|
types: [
|
|
@@ -38378,6 +38409,17 @@ var patterns_registry_default = {
|
|
|
38378
38409
|
],
|
|
38379
38410
|
description: "disabled prop"
|
|
38380
38411
|
},
|
|
38412
|
+
visibility: {
|
|
38413
|
+
types: [
|
|
38414
|
+
"string"
|
|
38415
|
+
],
|
|
38416
|
+
description: '"auto" (default) renders only on coarse-pointer (touch) devices; "always" renders everywhere.',
|
|
38417
|
+
enumValues: [
|
|
38418
|
+
"auto",
|
|
38419
|
+
"always"
|
|
38420
|
+
],
|
|
38421
|
+
default: "auto"
|
|
38422
|
+
},
|
|
38381
38423
|
className: {
|
|
38382
38424
|
types: [
|
|
38383
38425
|
"string"
|
|
@@ -41660,6 +41702,26 @@ var patterns_registry_default = {
|
|
|
41660
41702
|
description: "gridStep prop",
|
|
41661
41703
|
default: 1
|
|
41662
41704
|
},
|
|
41705
|
+
backgroundColor: {
|
|
41706
|
+
types: [
|
|
41707
|
+
"string"
|
|
41708
|
+
],
|
|
41709
|
+
description: "Canvas fill color; `var(--token, fallback)` strings resolve against the active theme. Default transparent."
|
|
41710
|
+
},
|
|
41711
|
+
gridColor: {
|
|
41712
|
+
types: [
|
|
41713
|
+
"string"
|
|
41714
|
+
],
|
|
41715
|
+
description: "Grid line color; resolves theme tokens (default `var(--color-border, #9ca3af)`).",
|
|
41716
|
+
default: "var(--color-border, #9ca3af)"
|
|
41717
|
+
},
|
|
41718
|
+
axisColor: {
|
|
41719
|
+
types: [
|
|
41720
|
+
"string"
|
|
41721
|
+
],
|
|
41722
|
+
description: "Axis line color; resolves theme tokens (default `var(--color-muted-foreground, #374151)`).",
|
|
41723
|
+
default: "var(--color-muted-foreground, #374151)"
|
|
41724
|
+
},
|
|
41663
41725
|
showTickLabels: {
|
|
41664
41726
|
types: [
|
|
41665
41727
|
"boolean"
|
|
@@ -49860,76 +49922,318 @@ var patterns_registry_default = {
|
|
|
49860
49922
|
// src/patterns/integrators-registry.json
|
|
49861
49923
|
var integrators_registry_default = {
|
|
49862
49924
|
version: "1.0.0",
|
|
49863
|
-
exportedAt: "2026-
|
|
49925
|
+
exportedAt: "2026-08-23T09:11:28.111Z",
|
|
49864
49926
|
integrators: {
|
|
49865
|
-
|
|
49866
|
-
name: "
|
|
49867
|
-
description: "
|
|
49868
|
-
category: "
|
|
49927
|
+
github: {
|
|
49928
|
+
name: "github",
|
|
49929
|
+
description: "GitHub integration - Git operations and GitHub REST API",
|
|
49930
|
+
category: "devtools",
|
|
49869
49931
|
actions: [
|
|
49870
49932
|
{
|
|
49871
|
-
name: "
|
|
49872
|
-
description: "
|
|
49933
|
+
name: "cloneRepo",
|
|
49934
|
+
description: "",
|
|
49873
49935
|
params: [
|
|
49874
49936
|
{
|
|
49875
|
-
name: "
|
|
49937
|
+
name: "repoUrl",
|
|
49876
49938
|
type: "string",
|
|
49877
49939
|
required: true,
|
|
49878
|
-
description: "
|
|
49940
|
+
description: ""
|
|
49879
49941
|
},
|
|
49880
49942
|
{
|
|
49881
|
-
name: "
|
|
49882
|
-
type: "
|
|
49943
|
+
name: "targetDir",
|
|
49944
|
+
type: "string",
|
|
49945
|
+
required: true,
|
|
49946
|
+
description: ""
|
|
49947
|
+
},
|
|
49948
|
+
{
|
|
49949
|
+
name: "branch",
|
|
49950
|
+
type: "string",
|
|
49951
|
+
required: false,
|
|
49952
|
+
description: ""
|
|
49953
|
+
}
|
|
49954
|
+
],
|
|
49955
|
+
responseShape: {
|
|
49956
|
+
message: "string"
|
|
49957
|
+
}
|
|
49958
|
+
},
|
|
49959
|
+
{
|
|
49960
|
+
name: "createBranch",
|
|
49961
|
+
description: "",
|
|
49962
|
+
params: [
|
|
49963
|
+
{
|
|
49964
|
+
name: "branchName",
|
|
49965
|
+
type: "string",
|
|
49966
|
+
required: true,
|
|
49967
|
+
description: ""
|
|
49968
|
+
},
|
|
49969
|
+
{
|
|
49970
|
+
name: "baseBranch",
|
|
49971
|
+
type: "string",
|
|
49883
49972
|
required: false,
|
|
49884
|
-
description: "
|
|
49973
|
+
description: ""
|
|
49974
|
+
}
|
|
49975
|
+
],
|
|
49976
|
+
responseShape: {
|
|
49977
|
+
message: "string"
|
|
49978
|
+
}
|
|
49979
|
+
},
|
|
49980
|
+
{
|
|
49981
|
+
name: "commit",
|
|
49982
|
+
description: "",
|
|
49983
|
+
params: [
|
|
49984
|
+
{
|
|
49985
|
+
name: "message",
|
|
49986
|
+
type: "string",
|
|
49987
|
+
required: true,
|
|
49988
|
+
description: ""
|
|
49885
49989
|
},
|
|
49886
49990
|
{
|
|
49887
|
-
name: "
|
|
49991
|
+
name: "files",
|
|
49992
|
+
type: "string[]",
|
|
49993
|
+
required: false,
|
|
49994
|
+
description: ""
|
|
49995
|
+
}
|
|
49996
|
+
],
|
|
49997
|
+
responseShape: {
|
|
49998
|
+
message: "string"
|
|
49999
|
+
}
|
|
50000
|
+
},
|
|
50001
|
+
{
|
|
50002
|
+
name: "push",
|
|
50003
|
+
description: "",
|
|
50004
|
+
params: [
|
|
50005
|
+
{
|
|
50006
|
+
name: "branchName",
|
|
49888
50007
|
type: "string",
|
|
50008
|
+
required: true,
|
|
50009
|
+
description: ""
|
|
50010
|
+
},
|
|
50011
|
+
{
|
|
50012
|
+
name: "force",
|
|
50013
|
+
type: "boolean",
|
|
49889
50014
|
required: false,
|
|
49890
|
-
description: "
|
|
50015
|
+
description: ""
|
|
49891
50016
|
}
|
|
49892
50017
|
],
|
|
49893
50018
|
responseShape: {
|
|
49894
|
-
|
|
49895
|
-
title: "string",
|
|
49896
|
-
thumbnail: "string",
|
|
49897
|
-
description: "string"
|
|
50019
|
+
message: "string"
|
|
49898
50020
|
}
|
|
49899
50021
|
},
|
|
49900
50022
|
{
|
|
49901
|
-
name: "
|
|
49902
|
-
description: "
|
|
50023
|
+
name: "createPR",
|
|
50024
|
+
description: "",
|
|
49903
50025
|
params: [
|
|
49904
50026
|
{
|
|
49905
|
-
name: "
|
|
50027
|
+
name: "title",
|
|
49906
50028
|
type: "string",
|
|
49907
50029
|
required: true,
|
|
49908
|
-
description: "
|
|
50030
|
+
description: ""
|
|
50031
|
+
},
|
|
50032
|
+
{
|
|
50033
|
+
name: "body",
|
|
50034
|
+
type: "string",
|
|
50035
|
+
required: true,
|
|
50036
|
+
description: ""
|
|
50037
|
+
},
|
|
50038
|
+
{
|
|
50039
|
+
name: "baseBranch",
|
|
50040
|
+
type: "string",
|
|
50041
|
+
required: true,
|
|
50042
|
+
description: ""
|
|
50043
|
+
},
|
|
50044
|
+
{
|
|
50045
|
+
name: "headBranch",
|
|
50046
|
+
type: "string",
|
|
50047
|
+
required: true,
|
|
50048
|
+
description: ""
|
|
50049
|
+
},
|
|
50050
|
+
{
|
|
50051
|
+
name: "draft",
|
|
50052
|
+
type: "boolean",
|
|
50053
|
+
required: false,
|
|
50054
|
+
description: ""
|
|
49909
50055
|
}
|
|
49910
50056
|
],
|
|
49911
50057
|
responseShape: {
|
|
50058
|
+
number: "number",
|
|
50059
|
+
url: "string",
|
|
50060
|
+
title: "string"
|
|
50061
|
+
}
|
|
50062
|
+
},
|
|
50063
|
+
{
|
|
50064
|
+
name: "getPRComments",
|
|
50065
|
+
description: "",
|
|
50066
|
+
params: [
|
|
50067
|
+
{
|
|
50068
|
+
name: "prNumber",
|
|
50069
|
+
type: "number",
|
|
50070
|
+
required: true,
|
|
50071
|
+
description: ""
|
|
50072
|
+
}
|
|
50073
|
+
],
|
|
50074
|
+
responseShape: {
|
|
50075
|
+
comments: "array"
|
|
50076
|
+
}
|
|
50077
|
+
},
|
|
50078
|
+
{
|
|
50079
|
+
name: "listIssues",
|
|
50080
|
+
description: "",
|
|
50081
|
+
params: [
|
|
50082
|
+
{
|
|
50083
|
+
name: "state",
|
|
50084
|
+
type: "string",
|
|
50085
|
+
required: false,
|
|
50086
|
+
description: ""
|
|
50087
|
+
},
|
|
50088
|
+
{
|
|
50089
|
+
name: "labels",
|
|
50090
|
+
type: "string[]",
|
|
50091
|
+
required: false,
|
|
50092
|
+
description: ""
|
|
50093
|
+
},
|
|
50094
|
+
{
|
|
50095
|
+
name: "per_page",
|
|
50096
|
+
type: "number",
|
|
50097
|
+
required: false,
|
|
50098
|
+
description: ""
|
|
50099
|
+
}
|
|
50100
|
+
],
|
|
50101
|
+
responseShape: {
|
|
50102
|
+
issues: "array"
|
|
50103
|
+
}
|
|
50104
|
+
},
|
|
50105
|
+
{
|
|
50106
|
+
name: "getIssue",
|
|
50107
|
+
description: "",
|
|
50108
|
+
params: [
|
|
50109
|
+
{
|
|
50110
|
+
name: "issueNumber",
|
|
50111
|
+
type: "number",
|
|
50112
|
+
required: true,
|
|
50113
|
+
description: ""
|
|
50114
|
+
}
|
|
50115
|
+
],
|
|
50116
|
+
responseShape: {
|
|
50117
|
+
number: "number",
|
|
49912
50118
|
title: "string",
|
|
49913
|
-
|
|
49914
|
-
|
|
49915
|
-
likeCount: "number"
|
|
50119
|
+
body: "string",
|
|
50120
|
+
state: "string"
|
|
49916
50121
|
}
|
|
49917
50122
|
},
|
|
49918
50123
|
{
|
|
49919
|
-
name: "
|
|
49920
|
-
description: "
|
|
50124
|
+
name: "getFile",
|
|
50125
|
+
description: "",
|
|
49921
50126
|
params: [
|
|
49922
50127
|
{
|
|
49923
|
-
name: "
|
|
50128
|
+
name: "owner",
|
|
50129
|
+
type: "string",
|
|
50130
|
+
required: true,
|
|
50131
|
+
description: ""
|
|
50132
|
+
},
|
|
50133
|
+
{
|
|
50134
|
+
name: "repo",
|
|
50135
|
+
type: "string",
|
|
50136
|
+
required: true,
|
|
50137
|
+
description: ""
|
|
50138
|
+
},
|
|
50139
|
+
{
|
|
50140
|
+
name: "path",
|
|
49924
50141
|
type: "string",
|
|
49925
50142
|
required: true,
|
|
49926
|
-
description: "
|
|
50143
|
+
description: ""
|
|
50144
|
+
},
|
|
50145
|
+
{
|
|
50146
|
+
name: "ref",
|
|
50147
|
+
type: "string",
|
|
50148
|
+
required: false,
|
|
50149
|
+
description: ""
|
|
49927
50150
|
}
|
|
49928
50151
|
],
|
|
49929
50152
|
responseShape: {
|
|
49930
|
-
|
|
49931
|
-
|
|
49932
|
-
|
|
50153
|
+
path: "string",
|
|
50154
|
+
content: "string",
|
|
50155
|
+
sha: "string",
|
|
50156
|
+
size: "number"
|
|
50157
|
+
}
|
|
50158
|
+
},
|
|
50159
|
+
{
|
|
50160
|
+
name: "listCommits",
|
|
50161
|
+
description: "",
|
|
50162
|
+
params: [
|
|
50163
|
+
{
|
|
50164
|
+
name: "owner",
|
|
50165
|
+
type: "string",
|
|
50166
|
+
required: true,
|
|
50167
|
+
description: ""
|
|
50168
|
+
},
|
|
50169
|
+
{
|
|
50170
|
+
name: "repo",
|
|
50171
|
+
type: "string",
|
|
50172
|
+
required: true,
|
|
50173
|
+
description: ""
|
|
50174
|
+
},
|
|
50175
|
+
{
|
|
50176
|
+
name: "path",
|
|
50177
|
+
type: "string",
|
|
50178
|
+
required: false,
|
|
50179
|
+
description: ""
|
|
50180
|
+
},
|
|
50181
|
+
{
|
|
50182
|
+
name: "ref",
|
|
50183
|
+
type: "string",
|
|
50184
|
+
required: false,
|
|
50185
|
+
description: ""
|
|
50186
|
+
},
|
|
50187
|
+
{
|
|
50188
|
+
name: "per_page",
|
|
50189
|
+
type: "number",
|
|
50190
|
+
required: false,
|
|
50191
|
+
description: ""
|
|
50192
|
+
}
|
|
50193
|
+
],
|
|
50194
|
+
responseShape: {
|
|
50195
|
+
commits: "array"
|
|
50196
|
+
}
|
|
50197
|
+
},
|
|
50198
|
+
{
|
|
50199
|
+
name: "createIssue",
|
|
50200
|
+
description: "",
|
|
50201
|
+
params: [
|
|
50202
|
+
{
|
|
50203
|
+
name: "owner",
|
|
50204
|
+
type: "string",
|
|
50205
|
+
required: true,
|
|
50206
|
+
description: ""
|
|
50207
|
+
},
|
|
50208
|
+
{
|
|
50209
|
+
name: "repo",
|
|
50210
|
+
type: "string",
|
|
50211
|
+
required: true,
|
|
50212
|
+
description: ""
|
|
50213
|
+
},
|
|
50214
|
+
{
|
|
50215
|
+
name: "title",
|
|
50216
|
+
type: "string",
|
|
50217
|
+
required: true,
|
|
50218
|
+
description: ""
|
|
50219
|
+
},
|
|
50220
|
+
{
|
|
50221
|
+
name: "body",
|
|
50222
|
+
type: "string",
|
|
50223
|
+
required: false,
|
|
50224
|
+
description: ""
|
|
50225
|
+
},
|
|
50226
|
+
{
|
|
50227
|
+
name: "labels",
|
|
50228
|
+
type: "string[]",
|
|
50229
|
+
required: false,
|
|
50230
|
+
description: ""
|
|
50231
|
+
}
|
|
50232
|
+
],
|
|
50233
|
+
responseShape: {
|
|
50234
|
+
number: "number",
|
|
50235
|
+
title: "string",
|
|
50236
|
+
url: "string"
|
|
49933
50237
|
}
|
|
49934
50238
|
}
|
|
49935
50239
|
]
|
|
@@ -49941,654 +50245,2264 @@ var integrators_registry_default = {
|
|
|
49941
50245
|
actions: [
|
|
49942
50246
|
{
|
|
49943
50247
|
name: "createPaymentIntent",
|
|
49944
|
-
description: "
|
|
50248
|
+
description: "",
|
|
49945
50249
|
params: [
|
|
49946
50250
|
{
|
|
49947
50251
|
name: "amount",
|
|
49948
50252
|
type: "number",
|
|
49949
50253
|
required: true,
|
|
49950
|
-
description: "
|
|
50254
|
+
description: ""
|
|
49951
50255
|
},
|
|
49952
50256
|
{
|
|
49953
50257
|
name: "currency",
|
|
49954
50258
|
type: "string",
|
|
49955
50259
|
required: true,
|
|
49956
|
-
description: "
|
|
50260
|
+
description: ""
|
|
49957
50261
|
},
|
|
49958
50262
|
{
|
|
49959
50263
|
name: "metadata",
|
|
49960
50264
|
type: "object",
|
|
49961
50265
|
required: false,
|
|
49962
|
-
description: "
|
|
50266
|
+
description: ""
|
|
49963
50267
|
}
|
|
49964
50268
|
],
|
|
49965
50269
|
responseShape: {
|
|
49966
50270
|
id: "string",
|
|
49967
50271
|
clientSecret: "string",
|
|
50272
|
+
status: "string",
|
|
50273
|
+
amount: "number",
|
|
50274
|
+
currency: "string"
|
|
50275
|
+
}
|
|
50276
|
+
},
|
|
50277
|
+
{
|
|
50278
|
+
name: "confirmPayment",
|
|
50279
|
+
description: "",
|
|
50280
|
+
params: [
|
|
50281
|
+
{
|
|
50282
|
+
name: "paymentIntentId",
|
|
50283
|
+
type: "string",
|
|
50284
|
+
required: true,
|
|
50285
|
+
description: ""
|
|
50286
|
+
}
|
|
50287
|
+
],
|
|
50288
|
+
responseShape: {
|
|
50289
|
+
id: "string",
|
|
50290
|
+
status: "string"
|
|
50291
|
+
}
|
|
50292
|
+
},
|
|
50293
|
+
{
|
|
50294
|
+
name: "refund",
|
|
50295
|
+
description: "",
|
|
50296
|
+
params: [
|
|
50297
|
+
{
|
|
50298
|
+
name: "paymentIntentId",
|
|
50299
|
+
type: "string",
|
|
50300
|
+
required: true,
|
|
50301
|
+
description: ""
|
|
50302
|
+
},
|
|
50303
|
+
{
|
|
50304
|
+
name: "amount",
|
|
50305
|
+
type: "number",
|
|
50306
|
+
required: false,
|
|
50307
|
+
description: ""
|
|
50308
|
+
}
|
|
50309
|
+
],
|
|
50310
|
+
responseShape: {
|
|
50311
|
+
id: "string",
|
|
50312
|
+
status: "string",
|
|
50313
|
+
amount: "number"
|
|
50314
|
+
}
|
|
50315
|
+
}
|
|
50316
|
+
]
|
|
50317
|
+
},
|
|
50318
|
+
llm: {
|
|
50319
|
+
name: "llm",
|
|
50320
|
+
description: "LLM service for content generation, classification, and structured extraction",
|
|
50321
|
+
category: "ai",
|
|
50322
|
+
actions: [
|
|
50323
|
+
{
|
|
50324
|
+
name: "generate",
|
|
50325
|
+
description: "",
|
|
50326
|
+
params: [
|
|
50327
|
+
{
|
|
50328
|
+
name: "userPrompt",
|
|
50329
|
+
type: "string",
|
|
50330
|
+
required: true,
|
|
50331
|
+
description: ""
|
|
50332
|
+
},
|
|
50333
|
+
{
|
|
50334
|
+
name: "systemPrompt",
|
|
50335
|
+
type: "string",
|
|
50336
|
+
required: false,
|
|
50337
|
+
description: ""
|
|
50338
|
+
},
|
|
50339
|
+
{
|
|
50340
|
+
name: "model",
|
|
50341
|
+
type: "string",
|
|
50342
|
+
required: false,
|
|
50343
|
+
description: ""
|
|
50344
|
+
},
|
|
50345
|
+
{
|
|
50346
|
+
name: "temperature",
|
|
50347
|
+
type: "number",
|
|
50348
|
+
required: false,
|
|
50349
|
+
description: ""
|
|
50350
|
+
},
|
|
50351
|
+
{
|
|
50352
|
+
name: "maxTokens",
|
|
50353
|
+
type: "number",
|
|
50354
|
+
required: false,
|
|
50355
|
+
description: ""
|
|
50356
|
+
}
|
|
50357
|
+
],
|
|
50358
|
+
responseShape: {
|
|
50359
|
+
content: "string",
|
|
50360
|
+
usage: "object"
|
|
50361
|
+
}
|
|
50362
|
+
},
|
|
50363
|
+
{
|
|
50364
|
+
name: "classify",
|
|
50365
|
+
description: "",
|
|
50366
|
+
params: [
|
|
50367
|
+
{
|
|
50368
|
+
name: "text",
|
|
50369
|
+
type: "string",
|
|
50370
|
+
required: true,
|
|
50371
|
+
description: ""
|
|
50372
|
+
},
|
|
50373
|
+
{
|
|
50374
|
+
name: "categories",
|
|
50375
|
+
type: "string[]",
|
|
50376
|
+
required: true,
|
|
50377
|
+
description: ""
|
|
50378
|
+
},
|
|
50379
|
+
{
|
|
50380
|
+
name: "model",
|
|
50381
|
+
type: "string",
|
|
50382
|
+
required: false,
|
|
50383
|
+
description: ""
|
|
50384
|
+
}
|
|
50385
|
+
],
|
|
50386
|
+
responseShape: {
|
|
50387
|
+
category: "string",
|
|
50388
|
+
confidence: "number",
|
|
50389
|
+
reasoning: "string"
|
|
50390
|
+
}
|
|
50391
|
+
},
|
|
50392
|
+
{
|
|
50393
|
+
name: "extract",
|
|
50394
|
+
description: "",
|
|
50395
|
+
params: [
|
|
50396
|
+
{
|
|
50397
|
+
name: "text",
|
|
50398
|
+
type: "string",
|
|
50399
|
+
required: true,
|
|
50400
|
+
description: ""
|
|
50401
|
+
},
|
|
50402
|
+
{
|
|
50403
|
+
name: "schema",
|
|
50404
|
+
type: "IntegrationParams",
|
|
50405
|
+
required: true,
|
|
50406
|
+
description: ""
|
|
50407
|
+
},
|
|
50408
|
+
{
|
|
50409
|
+
name: "model",
|
|
50410
|
+
type: "string",
|
|
50411
|
+
required: false,
|
|
50412
|
+
description: ""
|
|
50413
|
+
}
|
|
50414
|
+
],
|
|
50415
|
+
responseShape: {}
|
|
50416
|
+
},
|
|
50417
|
+
{
|
|
50418
|
+
name: "summarize",
|
|
50419
|
+
description: "",
|
|
50420
|
+
params: [
|
|
50421
|
+
{
|
|
50422
|
+
name: "text",
|
|
50423
|
+
type: "string",
|
|
50424
|
+
required: true,
|
|
50425
|
+
description: ""
|
|
50426
|
+
},
|
|
50427
|
+
{
|
|
50428
|
+
name: "maxLength",
|
|
50429
|
+
type: "number",
|
|
50430
|
+
required: false,
|
|
50431
|
+
description: ""
|
|
50432
|
+
},
|
|
50433
|
+
{
|
|
50434
|
+
name: "style",
|
|
50435
|
+
type: "string",
|
|
50436
|
+
required: false,
|
|
50437
|
+
description: ""
|
|
50438
|
+
},
|
|
50439
|
+
{
|
|
50440
|
+
name: "model",
|
|
50441
|
+
type: "string",
|
|
50442
|
+
required: false,
|
|
50443
|
+
description: ""
|
|
50444
|
+
}
|
|
50445
|
+
],
|
|
50446
|
+
responseShape: {
|
|
50447
|
+
summary: "string",
|
|
50448
|
+
keyPoints: "string[]"
|
|
50449
|
+
}
|
|
50450
|
+
},
|
|
50451
|
+
{
|
|
50452
|
+
name: "embed",
|
|
50453
|
+
description: "",
|
|
50454
|
+
params: [
|
|
50455
|
+
{
|
|
50456
|
+
name: "texts",
|
|
50457
|
+
type: "string[]",
|
|
50458
|
+
required: true,
|
|
50459
|
+
description: ""
|
|
50460
|
+
},
|
|
50461
|
+
{
|
|
50462
|
+
name: "model",
|
|
50463
|
+
type: "string",
|
|
50464
|
+
required: false,
|
|
50465
|
+
description: ""
|
|
50466
|
+
}
|
|
50467
|
+
],
|
|
50468
|
+
responseShape: {
|
|
50469
|
+
embeddings: "number[][]"
|
|
50470
|
+
}
|
|
50471
|
+
}
|
|
50472
|
+
]
|
|
50473
|
+
},
|
|
50474
|
+
ml: {
|
|
50475
|
+
name: "ml",
|
|
50476
|
+
description: "ML service - model inference on a trained or off-the-shelf checkpoint, reached via a deployed serving orbital",
|
|
50477
|
+
category: "ai",
|
|
50478
|
+
actions: [
|
|
50479
|
+
{
|
|
50480
|
+
name: "infer",
|
|
50481
|
+
description: "",
|
|
50482
|
+
params: [
|
|
50483
|
+
{
|
|
50484
|
+
name: "model",
|
|
50485
|
+
type: "string",
|
|
50486
|
+
required: true,
|
|
50487
|
+
description: ""
|
|
50488
|
+
},
|
|
50489
|
+
{
|
|
50490
|
+
name: "input",
|
|
50491
|
+
type: "ServiceParamsValue",
|
|
50492
|
+
required: true,
|
|
50493
|
+
description: ""
|
|
50494
|
+
}
|
|
50495
|
+
],
|
|
50496
|
+
responseShape: {
|
|
50497
|
+
output: "ServiceParamsValue",
|
|
50498
|
+
confidence: "number",
|
|
50499
|
+
violations: "ServiceParamsValue[]"
|
|
50500
|
+
}
|
|
50501
|
+
}
|
|
50502
|
+
]
|
|
50503
|
+
},
|
|
50504
|
+
youtube: {
|
|
50505
|
+
name: "youtube",
|
|
50506
|
+
description: "YouTube Data API - search videos, get video/channel details",
|
|
50507
|
+
category: "media",
|
|
50508
|
+
actions: [
|
|
50509
|
+
{
|
|
50510
|
+
name: "search",
|
|
50511
|
+
description: "",
|
|
50512
|
+
params: [
|
|
50513
|
+
{
|
|
50514
|
+
name: "query",
|
|
50515
|
+
type: "string",
|
|
50516
|
+
required: true,
|
|
50517
|
+
description: ""
|
|
50518
|
+
},
|
|
50519
|
+
{
|
|
50520
|
+
name: "maxResults",
|
|
50521
|
+
type: "number",
|
|
50522
|
+
required: false,
|
|
50523
|
+
description: ""
|
|
50524
|
+
},
|
|
50525
|
+
{
|
|
50526
|
+
name: "type",
|
|
50527
|
+
type: "string",
|
|
50528
|
+
required: false,
|
|
50529
|
+
description: ""
|
|
50530
|
+
}
|
|
50531
|
+
],
|
|
50532
|
+
responseShape: {}
|
|
50533
|
+
},
|
|
50534
|
+
{
|
|
50535
|
+
name: "getVideo",
|
|
50536
|
+
description: "",
|
|
50537
|
+
params: [
|
|
50538
|
+
{
|
|
50539
|
+
name: "videoId",
|
|
50540
|
+
type: "string",
|
|
50541
|
+
required: true,
|
|
50542
|
+
description: ""
|
|
50543
|
+
}
|
|
50544
|
+
],
|
|
50545
|
+
responseShape: {
|
|
50546
|
+
title: "string",
|
|
50547
|
+
description: "string",
|
|
50548
|
+
viewCount: "string",
|
|
50549
|
+
likeCount: "string"
|
|
50550
|
+
}
|
|
50551
|
+
},
|
|
50552
|
+
{
|
|
50553
|
+
name: "getChannel",
|
|
50554
|
+
description: "",
|
|
50555
|
+
params: [
|
|
50556
|
+
{
|
|
50557
|
+
name: "channelId",
|
|
50558
|
+
type: "string",
|
|
50559
|
+
required: true,
|
|
50560
|
+
description: ""
|
|
50561
|
+
}
|
|
50562
|
+
],
|
|
50563
|
+
responseShape: {
|
|
50564
|
+
name: "string",
|
|
50565
|
+
description: "string",
|
|
50566
|
+
subscriberCount: "string"
|
|
50567
|
+
}
|
|
50568
|
+
}
|
|
50569
|
+
]
|
|
50570
|
+
},
|
|
50571
|
+
twilio: {
|
|
50572
|
+
name: "twilio",
|
|
50573
|
+
description: "Twilio messaging - send SMS, WhatsApp messages",
|
|
50574
|
+
category: "messaging",
|
|
50575
|
+
actions: [
|
|
50576
|
+
{
|
|
50577
|
+
name: "sendSMS",
|
|
50578
|
+
description: "",
|
|
50579
|
+
params: [
|
|
50580
|
+
{
|
|
50581
|
+
name: "to",
|
|
50582
|
+
type: "string",
|
|
50583
|
+
required: true,
|
|
50584
|
+
description: ""
|
|
50585
|
+
},
|
|
50586
|
+
{
|
|
50587
|
+
name: "body",
|
|
50588
|
+
type: "string",
|
|
50589
|
+
required: true,
|
|
50590
|
+
description: ""
|
|
50591
|
+
},
|
|
50592
|
+
{
|
|
50593
|
+
name: "from",
|
|
50594
|
+
type: "string",
|
|
50595
|
+
required: false,
|
|
50596
|
+
description: ""
|
|
50597
|
+
}
|
|
50598
|
+
],
|
|
50599
|
+
responseShape: {
|
|
50600
|
+
sid: "string",
|
|
50601
|
+
status: "string"
|
|
50602
|
+
}
|
|
50603
|
+
},
|
|
50604
|
+
{
|
|
50605
|
+
name: "sendWhatsApp",
|
|
50606
|
+
description: "",
|
|
50607
|
+
params: [
|
|
50608
|
+
{
|
|
50609
|
+
name: "to",
|
|
50610
|
+
type: "string",
|
|
50611
|
+
required: true,
|
|
50612
|
+
description: ""
|
|
50613
|
+
},
|
|
50614
|
+
{
|
|
50615
|
+
name: "body",
|
|
50616
|
+
type: "string",
|
|
50617
|
+
required: true,
|
|
50618
|
+
description: ""
|
|
50619
|
+
}
|
|
50620
|
+
],
|
|
50621
|
+
responseShape: {
|
|
50622
|
+
sid: "string",
|
|
50623
|
+
status: "string"
|
|
50624
|
+
}
|
|
50625
|
+
}
|
|
50626
|
+
]
|
|
50627
|
+
},
|
|
50628
|
+
email: {
|
|
50629
|
+
name: "email",
|
|
50630
|
+
description: "Transactional email via SendGrid/Resend",
|
|
50631
|
+
category: "messaging",
|
|
50632
|
+
actions: [
|
|
50633
|
+
{
|
|
50634
|
+
name: "send",
|
|
50635
|
+
description: "",
|
|
50636
|
+
params: [
|
|
50637
|
+
{
|
|
50638
|
+
name: "to",
|
|
50639
|
+
type: "string",
|
|
50640
|
+
required: true,
|
|
50641
|
+
description: ""
|
|
50642
|
+
},
|
|
50643
|
+
{
|
|
50644
|
+
name: "subject",
|
|
50645
|
+
type: "string",
|
|
50646
|
+
required: true,
|
|
50647
|
+
description: ""
|
|
50648
|
+
},
|
|
50649
|
+
{
|
|
50650
|
+
name: "body",
|
|
50651
|
+
type: "string",
|
|
50652
|
+
required: true,
|
|
50653
|
+
description: ""
|
|
50654
|
+
},
|
|
50655
|
+
{
|
|
50656
|
+
name: "from",
|
|
50657
|
+
type: "string",
|
|
50658
|
+
required: false,
|
|
50659
|
+
description: ""
|
|
50660
|
+
},
|
|
50661
|
+
{
|
|
50662
|
+
name: "htmlBody",
|
|
50663
|
+
type: "string",
|
|
50664
|
+
required: false,
|
|
50665
|
+
description: "HTML content; when present `body` becomes the plain-text alternative."
|
|
50666
|
+
},
|
|
50667
|
+
{
|
|
50668
|
+
name: "replyTo",
|
|
50669
|
+
type: "string",
|
|
50670
|
+
required: false,
|
|
50671
|
+
description: ""
|
|
50672
|
+
},
|
|
50673
|
+
{
|
|
50674
|
+
name: "templateId",
|
|
50675
|
+
type: "string",
|
|
50676
|
+
required: false,
|
|
50677
|
+
description: "Provider template reference (SendGrid dynamic templates; Resend rejects it loudly)."
|
|
50678
|
+
}
|
|
50679
|
+
],
|
|
50680
|
+
responseShape: {
|
|
50681
|
+
id: "string",
|
|
50682
|
+
status: "string"
|
|
50683
|
+
}
|
|
50684
|
+
}
|
|
50685
|
+
]
|
|
50686
|
+
},
|
|
50687
|
+
webhook: {
|
|
50688
|
+
name: "webhook",
|
|
50689
|
+
description: "Outbound webhook - signed HTTP POST notifications to external endpoints",
|
|
50690
|
+
category: "messaging",
|
|
50691
|
+
actions: [
|
|
50692
|
+
{
|
|
50693
|
+
name: "send",
|
|
50694
|
+
description: "",
|
|
50695
|
+
params: [
|
|
50696
|
+
{
|
|
50697
|
+
name: "url",
|
|
50698
|
+
type: "string",
|
|
50699
|
+
required: true,
|
|
50700
|
+
description: ""
|
|
50701
|
+
},
|
|
50702
|
+
{
|
|
50703
|
+
name: "event",
|
|
50704
|
+
type: "string",
|
|
50705
|
+
required: true,
|
|
50706
|
+
description: ""
|
|
50707
|
+
},
|
|
50708
|
+
{
|
|
50709
|
+
name: "payload",
|
|
50710
|
+
type: "object",
|
|
50711
|
+
required: false,
|
|
50712
|
+
description: ""
|
|
50713
|
+
},
|
|
50714
|
+
{
|
|
50715
|
+
name: "secret",
|
|
50716
|
+
type: "string",
|
|
50717
|
+
required: false,
|
|
50718
|
+
description: ""
|
|
50719
|
+
}
|
|
50720
|
+
],
|
|
50721
|
+
responseShape: {
|
|
50722
|
+
status: "number",
|
|
50723
|
+
ok: "boolean",
|
|
50724
|
+
durationMs: "number"
|
|
50725
|
+
}
|
|
50726
|
+
}
|
|
50727
|
+
]
|
|
50728
|
+
},
|
|
50729
|
+
push: {
|
|
50730
|
+
name: "push",
|
|
50731
|
+
description: "Web Push - VAPID-signed browser push notifications",
|
|
50732
|
+
category: "messaging",
|
|
50733
|
+
actions: [
|
|
50734
|
+
{
|
|
50735
|
+
name: "send",
|
|
50736
|
+
description: "",
|
|
50737
|
+
params: [
|
|
50738
|
+
{
|
|
50739
|
+
name: "subscription",
|
|
50740
|
+
type: "object",
|
|
50741
|
+
required: true,
|
|
50742
|
+
description: ""
|
|
50743
|
+
},
|
|
50744
|
+
{
|
|
50745
|
+
name: "title",
|
|
50746
|
+
type: "string",
|
|
50747
|
+
required: true,
|
|
50748
|
+
description: ""
|
|
50749
|
+
},
|
|
50750
|
+
{
|
|
50751
|
+
name: "body",
|
|
50752
|
+
type: "string",
|
|
50753
|
+
required: true,
|
|
50754
|
+
description: ""
|
|
50755
|
+
},
|
|
50756
|
+
{
|
|
50757
|
+
name: "url",
|
|
50758
|
+
type: "string",
|
|
50759
|
+
required: false,
|
|
50760
|
+
description: ""
|
|
50761
|
+
},
|
|
50762
|
+
{
|
|
50763
|
+
name: "icon",
|
|
50764
|
+
type: "string",
|
|
50765
|
+
required: false,
|
|
50766
|
+
description: ""
|
|
50767
|
+
}
|
|
50768
|
+
],
|
|
50769
|
+
responseShape: {
|
|
50770
|
+
statusCode: "number",
|
|
50771
|
+
ok: "boolean",
|
|
50772
|
+
expired: "boolean"
|
|
50773
|
+
}
|
|
50774
|
+
}
|
|
50775
|
+
]
|
|
50776
|
+
},
|
|
50777
|
+
calendar: {
|
|
50778
|
+
name: "calendar",
|
|
50779
|
+
description: "Google Calendar - events, free-busy, watch channels (service account / domain-wide delegation)",
|
|
50780
|
+
category: "infrastructure",
|
|
50781
|
+
actions: [
|
|
50782
|
+
{
|
|
50783
|
+
name: "listEvents",
|
|
50784
|
+
description: "",
|
|
50785
|
+
params: [
|
|
50786
|
+
{
|
|
50787
|
+
name: "calendarId",
|
|
50788
|
+
type: "string",
|
|
50789
|
+
required: false,
|
|
50790
|
+
description: ""
|
|
50791
|
+
},
|
|
50792
|
+
{
|
|
50793
|
+
name: "timeMin",
|
|
50794
|
+
type: "string",
|
|
50795
|
+
required: false,
|
|
50796
|
+
description: ""
|
|
50797
|
+
},
|
|
50798
|
+
{
|
|
50799
|
+
name: "timeMax",
|
|
50800
|
+
type: "string",
|
|
50801
|
+
required: false,
|
|
50802
|
+
description: ""
|
|
50803
|
+
},
|
|
50804
|
+
{
|
|
50805
|
+
name: "syncToken",
|
|
50806
|
+
type: "string",
|
|
50807
|
+
required: false,
|
|
50808
|
+
description: ""
|
|
50809
|
+
},
|
|
50810
|
+
{
|
|
50811
|
+
name: "maxResults",
|
|
50812
|
+
type: "number",
|
|
50813
|
+
required: false,
|
|
50814
|
+
description: ""
|
|
50815
|
+
}
|
|
50816
|
+
],
|
|
50817
|
+
responseShape: {
|
|
50818
|
+
events: "array",
|
|
50819
|
+
nextSyncToken: "string | null"
|
|
50820
|
+
}
|
|
50821
|
+
},
|
|
50822
|
+
{
|
|
50823
|
+
name: "createEvent",
|
|
50824
|
+
description: "",
|
|
50825
|
+
params: [
|
|
50826
|
+
{
|
|
50827
|
+
name: "calendarId",
|
|
50828
|
+
type: "string",
|
|
50829
|
+
required: false,
|
|
50830
|
+
description: ""
|
|
50831
|
+
},
|
|
50832
|
+
{
|
|
50833
|
+
name: "summary",
|
|
50834
|
+
type: "string",
|
|
50835
|
+
required: true,
|
|
50836
|
+
description: ""
|
|
50837
|
+
},
|
|
50838
|
+
{
|
|
50839
|
+
name: "description",
|
|
50840
|
+
type: "string",
|
|
50841
|
+
required: false,
|
|
50842
|
+
description: ""
|
|
50843
|
+
},
|
|
50844
|
+
{
|
|
50845
|
+
name: "location",
|
|
50846
|
+
type: "string",
|
|
50847
|
+
required: false,
|
|
50848
|
+
description: ""
|
|
50849
|
+
},
|
|
50850
|
+
{
|
|
50851
|
+
name: "start",
|
|
50852
|
+
type: "string",
|
|
50853
|
+
required: true,
|
|
50854
|
+
description: ""
|
|
50855
|
+
},
|
|
50856
|
+
{
|
|
50857
|
+
name: "end",
|
|
50858
|
+
type: "string",
|
|
50859
|
+
required: false,
|
|
50860
|
+
description: ""
|
|
50861
|
+
},
|
|
50862
|
+
{
|
|
50863
|
+
name: "durationMinutes",
|
|
50864
|
+
type: "number",
|
|
50865
|
+
required: false,
|
|
50866
|
+
description: ""
|
|
50867
|
+
}
|
|
50868
|
+
],
|
|
50869
|
+
responseShape: {
|
|
50870
|
+
id: "string",
|
|
50871
|
+
status: "string",
|
|
50872
|
+
htmlLink: "string"
|
|
50873
|
+
}
|
|
50874
|
+
},
|
|
50875
|
+
{
|
|
50876
|
+
name: "updateEvent",
|
|
50877
|
+
description: "",
|
|
50878
|
+
params: [
|
|
50879
|
+
{
|
|
50880
|
+
name: "calendarId",
|
|
50881
|
+
type: "string",
|
|
50882
|
+
required: false,
|
|
50883
|
+
description: ""
|
|
50884
|
+
},
|
|
50885
|
+
{
|
|
50886
|
+
name: "eventId",
|
|
50887
|
+
type: "string",
|
|
50888
|
+
required: true,
|
|
50889
|
+
description: ""
|
|
50890
|
+
},
|
|
50891
|
+
{
|
|
50892
|
+
name: "summary",
|
|
50893
|
+
type: "string",
|
|
50894
|
+
required: false,
|
|
50895
|
+
description: ""
|
|
50896
|
+
},
|
|
50897
|
+
{
|
|
50898
|
+
name: "description",
|
|
50899
|
+
type: "string",
|
|
50900
|
+
required: false,
|
|
50901
|
+
description: ""
|
|
50902
|
+
},
|
|
50903
|
+
{
|
|
50904
|
+
name: "location",
|
|
50905
|
+
type: "string",
|
|
50906
|
+
required: false,
|
|
50907
|
+
description: ""
|
|
50908
|
+
},
|
|
50909
|
+
{
|
|
50910
|
+
name: "start",
|
|
50911
|
+
type: "string",
|
|
50912
|
+
required: false,
|
|
50913
|
+
description: ""
|
|
50914
|
+
},
|
|
50915
|
+
{
|
|
50916
|
+
name: "end",
|
|
50917
|
+
type: "string",
|
|
50918
|
+
required: false,
|
|
50919
|
+
description: ""
|
|
50920
|
+
}
|
|
50921
|
+
],
|
|
50922
|
+
responseShape: {
|
|
50923
|
+
id: "string",
|
|
49968
50924
|
status: "string"
|
|
49969
50925
|
}
|
|
49970
50926
|
},
|
|
49971
50927
|
{
|
|
49972
|
-
name: "
|
|
49973
|
-
description: "
|
|
50928
|
+
name: "deleteEvent",
|
|
50929
|
+
description: "",
|
|
50930
|
+
params: [
|
|
50931
|
+
{
|
|
50932
|
+
name: "calendarId",
|
|
50933
|
+
type: "string",
|
|
50934
|
+
required: false,
|
|
50935
|
+
description: ""
|
|
50936
|
+
},
|
|
50937
|
+
{
|
|
50938
|
+
name: "eventId",
|
|
50939
|
+
type: "string",
|
|
50940
|
+
required: true,
|
|
50941
|
+
description: ""
|
|
50942
|
+
}
|
|
50943
|
+
],
|
|
50944
|
+
responseShape: {
|
|
50945
|
+
id: "string",
|
|
50946
|
+
deleted: "boolean"
|
|
50947
|
+
}
|
|
50948
|
+
},
|
|
50949
|
+
{
|
|
50950
|
+
name: "freeBusy",
|
|
50951
|
+
description: "",
|
|
50952
|
+
params: [
|
|
50953
|
+
{
|
|
50954
|
+
name: "calendarId",
|
|
50955
|
+
type: "string",
|
|
50956
|
+
required: false,
|
|
50957
|
+
description: ""
|
|
50958
|
+
},
|
|
50959
|
+
{
|
|
50960
|
+
name: "timeMin",
|
|
50961
|
+
type: "string",
|
|
50962
|
+
required: true,
|
|
50963
|
+
description: ""
|
|
50964
|
+
},
|
|
50965
|
+
{
|
|
50966
|
+
name: "timeMax",
|
|
50967
|
+
type: "string",
|
|
50968
|
+
required: true,
|
|
50969
|
+
description: ""
|
|
50970
|
+
}
|
|
50971
|
+
],
|
|
50972
|
+
responseShape: {
|
|
50973
|
+
busy: "array"
|
|
50974
|
+
}
|
|
50975
|
+
},
|
|
50976
|
+
{
|
|
50977
|
+
name: "watch",
|
|
50978
|
+
description: "",
|
|
50979
|
+
params: [
|
|
50980
|
+
{
|
|
50981
|
+
name: "calendarId",
|
|
50982
|
+
type: "string",
|
|
50983
|
+
required: false,
|
|
50984
|
+
description: ""
|
|
50985
|
+
},
|
|
50986
|
+
{
|
|
50987
|
+
name: "channelId",
|
|
50988
|
+
type: "string",
|
|
50989
|
+
required: true,
|
|
50990
|
+
description: ""
|
|
50991
|
+
},
|
|
50992
|
+
{
|
|
50993
|
+
name: "address",
|
|
50994
|
+
type: "string",
|
|
50995
|
+
required: true,
|
|
50996
|
+
description: ""
|
|
50997
|
+
},
|
|
50998
|
+
{
|
|
50999
|
+
name: "ttlSeconds",
|
|
51000
|
+
type: "number",
|
|
51001
|
+
required: false,
|
|
51002
|
+
description: ""
|
|
51003
|
+
}
|
|
51004
|
+
],
|
|
51005
|
+
responseShape: {
|
|
51006
|
+
channelId: "string",
|
|
51007
|
+
resourceId: "string",
|
|
51008
|
+
expiration: "string"
|
|
51009
|
+
}
|
|
51010
|
+
},
|
|
51011
|
+
{
|
|
51012
|
+
name: "stopWatch",
|
|
51013
|
+
description: "",
|
|
51014
|
+
params: [
|
|
51015
|
+
{
|
|
51016
|
+
name: "channelId",
|
|
51017
|
+
type: "string",
|
|
51018
|
+
required: true,
|
|
51019
|
+
description: ""
|
|
51020
|
+
},
|
|
51021
|
+
{
|
|
51022
|
+
name: "resourceId",
|
|
51023
|
+
type: "string",
|
|
51024
|
+
required: true,
|
|
51025
|
+
description: ""
|
|
51026
|
+
}
|
|
51027
|
+
],
|
|
51028
|
+
responseShape: {
|
|
51029
|
+
stopped: "boolean"
|
|
51030
|
+
}
|
|
51031
|
+
}
|
|
51032
|
+
]
|
|
51033
|
+
},
|
|
51034
|
+
drive: {
|
|
51035
|
+
name: "drive",
|
|
51036
|
+
description: "Google Drive - files, folders, sharing (service account / domain-wide delegation)",
|
|
51037
|
+
category: "infrastructure",
|
|
51038
|
+
actions: [
|
|
51039
|
+
{
|
|
51040
|
+
name: "listFiles",
|
|
51041
|
+
description: "",
|
|
51042
|
+
params: [
|
|
51043
|
+
{
|
|
51044
|
+
name: "folderId",
|
|
51045
|
+
type: "string",
|
|
51046
|
+
required: false,
|
|
51047
|
+
description: ""
|
|
51048
|
+
},
|
|
51049
|
+
{
|
|
51050
|
+
name: "query",
|
|
51051
|
+
type: "string",
|
|
51052
|
+
required: false,
|
|
51053
|
+
description: ""
|
|
51054
|
+
},
|
|
51055
|
+
{
|
|
51056
|
+
name: "maxResults",
|
|
51057
|
+
type: "number",
|
|
51058
|
+
required: false,
|
|
51059
|
+
description: ""
|
|
51060
|
+
}
|
|
51061
|
+
],
|
|
51062
|
+
responseShape: {
|
|
51063
|
+
files: "array"
|
|
51064
|
+
}
|
|
51065
|
+
},
|
|
51066
|
+
{
|
|
51067
|
+
name: "getFile",
|
|
51068
|
+
description: "",
|
|
51069
|
+
params: [
|
|
51070
|
+
{
|
|
51071
|
+
name: "fileId",
|
|
51072
|
+
type: "string",
|
|
51073
|
+
required: true,
|
|
51074
|
+
description: ""
|
|
51075
|
+
}
|
|
51076
|
+
],
|
|
51077
|
+
responseShape: {
|
|
51078
|
+
id: "string",
|
|
51079
|
+
name: "string",
|
|
51080
|
+
mimeType: "string",
|
|
51081
|
+
content: "string",
|
|
51082
|
+
size: "number"
|
|
51083
|
+
}
|
|
51084
|
+
},
|
|
51085
|
+
{
|
|
51086
|
+
name: "uploadFile",
|
|
51087
|
+
description: "",
|
|
51088
|
+
params: [
|
|
51089
|
+
{
|
|
51090
|
+
name: "name",
|
|
51091
|
+
type: "string",
|
|
51092
|
+
required: true,
|
|
51093
|
+
description: ""
|
|
51094
|
+
},
|
|
51095
|
+
{
|
|
51096
|
+
name: "content",
|
|
51097
|
+
type: "string",
|
|
51098
|
+
required: true,
|
|
51099
|
+
description: ""
|
|
51100
|
+
},
|
|
51101
|
+
{
|
|
51102
|
+
name: "mimeType",
|
|
51103
|
+
type: "string",
|
|
51104
|
+
required: false,
|
|
51105
|
+
description: ""
|
|
51106
|
+
},
|
|
51107
|
+
{
|
|
51108
|
+
name: "folderId",
|
|
51109
|
+
type: "string",
|
|
51110
|
+
required: false,
|
|
51111
|
+
description: ""
|
|
51112
|
+
}
|
|
51113
|
+
],
|
|
51114
|
+
responseShape: {
|
|
51115
|
+
id: "string",
|
|
51116
|
+
name: "string",
|
|
51117
|
+
webViewLink: "string"
|
|
51118
|
+
}
|
|
51119
|
+
},
|
|
51120
|
+
{
|
|
51121
|
+
name: "createFolder",
|
|
51122
|
+
description: "",
|
|
51123
|
+
params: [
|
|
51124
|
+
{
|
|
51125
|
+
name: "name",
|
|
51126
|
+
type: "string",
|
|
51127
|
+
required: true,
|
|
51128
|
+
description: ""
|
|
51129
|
+
},
|
|
51130
|
+
{
|
|
51131
|
+
name: "parentId",
|
|
51132
|
+
type: "string",
|
|
51133
|
+
required: false,
|
|
51134
|
+
description: ""
|
|
51135
|
+
}
|
|
51136
|
+
],
|
|
51137
|
+
responseShape: {
|
|
51138
|
+
id: "string",
|
|
51139
|
+
name: "string"
|
|
51140
|
+
}
|
|
51141
|
+
},
|
|
51142
|
+
{
|
|
51143
|
+
name: "shareFile",
|
|
51144
|
+
description: "",
|
|
51145
|
+
params: [
|
|
51146
|
+
{
|
|
51147
|
+
name: "fileId",
|
|
51148
|
+
type: "string",
|
|
51149
|
+
required: true,
|
|
51150
|
+
description: ""
|
|
51151
|
+
},
|
|
51152
|
+
{
|
|
51153
|
+
name: "email",
|
|
51154
|
+
type: "string",
|
|
51155
|
+
required: true,
|
|
51156
|
+
description: ""
|
|
51157
|
+
},
|
|
51158
|
+
{
|
|
51159
|
+
name: "role",
|
|
51160
|
+
type: "'reader' | 'writer' | 'commenter'",
|
|
51161
|
+
required: false,
|
|
51162
|
+
description: ""
|
|
51163
|
+
}
|
|
51164
|
+
],
|
|
51165
|
+
responseShape: {
|
|
51166
|
+
shared: "boolean",
|
|
51167
|
+
permissionId: "string"
|
|
51168
|
+
}
|
|
51169
|
+
}
|
|
51170
|
+
]
|
|
51171
|
+
},
|
|
51172
|
+
metaAds: {
|
|
51173
|
+
name: "metaAds",
|
|
51174
|
+
description: "Meta Ads - read-only Marketing Insights (spend, campaigns)",
|
|
51175
|
+
category: "marketing",
|
|
51176
|
+
actions: [
|
|
51177
|
+
{
|
|
51178
|
+
name: "getSpend",
|
|
51179
|
+
description: "",
|
|
51180
|
+
params: [
|
|
51181
|
+
{
|
|
51182
|
+
name: "accountId",
|
|
51183
|
+
type: "string",
|
|
51184
|
+
required: false,
|
|
51185
|
+
description: ""
|
|
51186
|
+
},
|
|
51187
|
+
{
|
|
51188
|
+
name: "since",
|
|
51189
|
+
type: "string",
|
|
51190
|
+
required: true,
|
|
51191
|
+
description: ""
|
|
51192
|
+
},
|
|
51193
|
+
{
|
|
51194
|
+
name: "until",
|
|
51195
|
+
type: "string",
|
|
51196
|
+
required: true,
|
|
51197
|
+
description: ""
|
|
51198
|
+
},
|
|
51199
|
+
{
|
|
51200
|
+
name: "clientTag",
|
|
51201
|
+
type: "string",
|
|
51202
|
+
required: false,
|
|
51203
|
+
description: ""
|
|
51204
|
+
}
|
|
51205
|
+
],
|
|
51206
|
+
responseShape: {
|
|
51207
|
+
spend: "number",
|
|
51208
|
+
currency: "string",
|
|
51209
|
+
impressions: "number",
|
|
51210
|
+
clicks: "number"
|
|
51211
|
+
}
|
|
51212
|
+
},
|
|
51213
|
+
{
|
|
51214
|
+
name: "listCampaigns",
|
|
51215
|
+
description: "",
|
|
51216
|
+
params: [
|
|
51217
|
+
{
|
|
51218
|
+
name: "accountId",
|
|
51219
|
+
type: "string",
|
|
51220
|
+
required: false,
|
|
51221
|
+
description: ""
|
|
51222
|
+
},
|
|
51223
|
+
{
|
|
51224
|
+
name: "status",
|
|
51225
|
+
type: "string",
|
|
51226
|
+
required: false,
|
|
51227
|
+
description: ""
|
|
51228
|
+
}
|
|
51229
|
+
],
|
|
51230
|
+
responseShape: {
|
|
51231
|
+
campaigns: "array"
|
|
51232
|
+
}
|
|
51233
|
+
}
|
|
51234
|
+
]
|
|
51235
|
+
},
|
|
51236
|
+
accounting: {
|
|
51237
|
+
name: "accounting",
|
|
51238
|
+
description: "Accounting export - invoice/journal rows to import-ready CSV",
|
|
51239
|
+
category: "finance",
|
|
51240
|
+
actions: [
|
|
51241
|
+
{
|
|
51242
|
+
name: "exportInvoices",
|
|
51243
|
+
description: "",
|
|
51244
|
+
params: [
|
|
51245
|
+
{
|
|
51246
|
+
name: "invoices",
|
|
51247
|
+
type: "array",
|
|
51248
|
+
required: true,
|
|
51249
|
+
description: ""
|
|
51250
|
+
},
|
|
51251
|
+
{
|
|
51252
|
+
name: "format",
|
|
51253
|
+
type: "'csv'",
|
|
51254
|
+
required: false,
|
|
51255
|
+
description: ""
|
|
51256
|
+
}
|
|
51257
|
+
],
|
|
51258
|
+
responseShape: {
|
|
51259
|
+
content: "string",
|
|
51260
|
+
filename: "string",
|
|
51261
|
+
count: "number"
|
|
51262
|
+
}
|
|
51263
|
+
},
|
|
51264
|
+
{
|
|
51265
|
+
name: "exportJournal",
|
|
51266
|
+
description: "",
|
|
51267
|
+
params: [
|
|
51268
|
+
{
|
|
51269
|
+
name: "entries",
|
|
51270
|
+
type: "array",
|
|
51271
|
+
required: true,
|
|
51272
|
+
description: ""
|
|
51273
|
+
},
|
|
51274
|
+
{
|
|
51275
|
+
name: "format",
|
|
51276
|
+
type: "'csv'",
|
|
51277
|
+
required: false,
|
|
51278
|
+
description: ""
|
|
51279
|
+
}
|
|
51280
|
+
],
|
|
51281
|
+
responseShape: {
|
|
51282
|
+
content: "string",
|
|
51283
|
+
filename: "string",
|
|
51284
|
+
count: "number"
|
|
51285
|
+
}
|
|
51286
|
+
}
|
|
51287
|
+
]
|
|
51288
|
+
},
|
|
51289
|
+
banking: {
|
|
51290
|
+
name: "banking",
|
|
51291
|
+
description: "Banking - GoCardless Bank Account Data (requisitions, accounts, transactions)",
|
|
51292
|
+
category: "finance",
|
|
51293
|
+
actions: [
|
|
51294
|
+
{
|
|
51295
|
+
name: "createRequisition",
|
|
51296
|
+
description: "",
|
|
51297
|
+
params: [
|
|
51298
|
+
{
|
|
51299
|
+
name: "institutionId",
|
|
51300
|
+
type: "string",
|
|
51301
|
+
required: true,
|
|
51302
|
+
description: ""
|
|
51303
|
+
},
|
|
51304
|
+
{
|
|
51305
|
+
name: "redirectUrl",
|
|
51306
|
+
type: "string",
|
|
51307
|
+
required: true,
|
|
51308
|
+
description: ""
|
|
51309
|
+
},
|
|
51310
|
+
{
|
|
51311
|
+
name: "reference",
|
|
51312
|
+
type: "string",
|
|
51313
|
+
required: false,
|
|
51314
|
+
description: ""
|
|
51315
|
+
}
|
|
51316
|
+
],
|
|
51317
|
+
responseShape: {
|
|
51318
|
+
requisitionId: "string",
|
|
51319
|
+
link: "string"
|
|
51320
|
+
}
|
|
51321
|
+
},
|
|
51322
|
+
{
|
|
51323
|
+
name: "listAccounts",
|
|
51324
|
+
description: "",
|
|
51325
|
+
params: [
|
|
51326
|
+
{
|
|
51327
|
+
name: "requisitionId",
|
|
51328
|
+
type: "string",
|
|
51329
|
+
required: true,
|
|
51330
|
+
description: ""
|
|
51331
|
+
}
|
|
51332
|
+
],
|
|
51333
|
+
responseShape: {
|
|
51334
|
+
accounts: "string[]"
|
|
51335
|
+
}
|
|
51336
|
+
},
|
|
51337
|
+
{
|
|
51338
|
+
name: "listTransactions",
|
|
51339
|
+
description: "",
|
|
51340
|
+
params: [
|
|
51341
|
+
{
|
|
51342
|
+
name: "accountId",
|
|
51343
|
+
type: "string",
|
|
51344
|
+
required: true,
|
|
51345
|
+
description: ""
|
|
51346
|
+
},
|
|
51347
|
+
{
|
|
51348
|
+
name: "dateFrom",
|
|
51349
|
+
type: "string",
|
|
51350
|
+
required: false,
|
|
51351
|
+
description: ""
|
|
51352
|
+
},
|
|
51353
|
+
{
|
|
51354
|
+
name: "dateTo",
|
|
51355
|
+
type: "string",
|
|
51356
|
+
required: false,
|
|
51357
|
+
description: ""
|
|
51358
|
+
}
|
|
51359
|
+
],
|
|
51360
|
+
responseShape: {
|
|
51361
|
+
transactions: "array"
|
|
51362
|
+
}
|
|
51363
|
+
}
|
|
51364
|
+
]
|
|
51365
|
+
},
|
|
51366
|
+
esign: {
|
|
51367
|
+
name: "esign",
|
|
51368
|
+
description: "E-signature - send/track/download envelopes (DocuSign)",
|
|
51369
|
+
category: "infrastructure",
|
|
51370
|
+
actions: [
|
|
51371
|
+
{
|
|
51372
|
+
name: "sendEnvelope",
|
|
51373
|
+
description: "",
|
|
51374
|
+
params: [
|
|
51375
|
+
{
|
|
51376
|
+
name: "recipientEmail",
|
|
51377
|
+
type: "string",
|
|
51378
|
+
required: true,
|
|
51379
|
+
description: ""
|
|
51380
|
+
},
|
|
51381
|
+
{
|
|
51382
|
+
name: "recipientName",
|
|
51383
|
+
type: "string",
|
|
51384
|
+
required: true,
|
|
51385
|
+
description: ""
|
|
51386
|
+
},
|
|
51387
|
+
{
|
|
51388
|
+
name: "documentName",
|
|
51389
|
+
type: "string",
|
|
51390
|
+
required: true,
|
|
51391
|
+
description: ""
|
|
51392
|
+
},
|
|
51393
|
+
{
|
|
51394
|
+
name: "documentContent",
|
|
51395
|
+
type: "string",
|
|
51396
|
+
required: true,
|
|
51397
|
+
description: ""
|
|
51398
|
+
},
|
|
51399
|
+
{
|
|
51400
|
+
name: "emailSubject",
|
|
51401
|
+
type: "string",
|
|
51402
|
+
required: false,
|
|
51403
|
+
description: ""
|
|
51404
|
+
}
|
|
51405
|
+
],
|
|
51406
|
+
responseShape: {
|
|
51407
|
+
envelopeId: "string",
|
|
51408
|
+
status: "string"
|
|
51409
|
+
}
|
|
51410
|
+
},
|
|
51411
|
+
{
|
|
51412
|
+
name: "getEnvelopeStatus",
|
|
51413
|
+
description: "",
|
|
51414
|
+
params: [
|
|
51415
|
+
{
|
|
51416
|
+
name: "envelopeId",
|
|
51417
|
+
type: "string",
|
|
51418
|
+
required: true,
|
|
51419
|
+
description: ""
|
|
51420
|
+
}
|
|
51421
|
+
],
|
|
51422
|
+
responseShape: {
|
|
51423
|
+
status: "string",
|
|
51424
|
+
completedAt: "string"
|
|
51425
|
+
}
|
|
51426
|
+
},
|
|
51427
|
+
{
|
|
51428
|
+
name: "downloadDocument",
|
|
51429
|
+
description: "",
|
|
51430
|
+
params: [
|
|
51431
|
+
{
|
|
51432
|
+
name: "envelopeId",
|
|
51433
|
+
type: "string",
|
|
51434
|
+
required: true,
|
|
51435
|
+
description: ""
|
|
51436
|
+
}
|
|
51437
|
+
],
|
|
51438
|
+
responseShape: {
|
|
51439
|
+
content: "string",
|
|
51440
|
+
documentName: "string"
|
|
51441
|
+
}
|
|
51442
|
+
}
|
|
51443
|
+
]
|
|
51444
|
+
},
|
|
51445
|
+
docker: {
|
|
51446
|
+
name: "docker",
|
|
51447
|
+
description: "Docker \u2014 container and image management",
|
|
51448
|
+
category: "devtools",
|
|
51449
|
+
actions: [
|
|
51450
|
+
{
|
|
51451
|
+
name: "build",
|
|
51452
|
+
description: "",
|
|
51453
|
+
params: [
|
|
51454
|
+
{
|
|
51455
|
+
name: "tag",
|
|
51456
|
+
type: "string",
|
|
51457
|
+
required: true,
|
|
51458
|
+
description: ""
|
|
51459
|
+
},
|
|
51460
|
+
{
|
|
51461
|
+
name: "dockerfile",
|
|
51462
|
+
type: "string",
|
|
51463
|
+
required: false,
|
|
51464
|
+
description: ""
|
|
51465
|
+
},
|
|
51466
|
+
{
|
|
51467
|
+
name: "context",
|
|
51468
|
+
type: "string",
|
|
51469
|
+
required: false,
|
|
51470
|
+
description: ""
|
|
51471
|
+
},
|
|
51472
|
+
{
|
|
51473
|
+
name: "buildArgs",
|
|
51474
|
+
type: "object",
|
|
51475
|
+
required: false,
|
|
51476
|
+
description: ""
|
|
51477
|
+
}
|
|
51478
|
+
],
|
|
51479
|
+
responseShape: {
|
|
51480
|
+
imageId: "string",
|
|
51481
|
+
tag: "string",
|
|
51482
|
+
size: "number",
|
|
51483
|
+
buildTime: "number"
|
|
51484
|
+
}
|
|
51485
|
+
},
|
|
51486
|
+
{
|
|
51487
|
+
name: "run",
|
|
51488
|
+
description: "",
|
|
51489
|
+
params: [
|
|
51490
|
+
{
|
|
51491
|
+
name: "image",
|
|
51492
|
+
type: "string",
|
|
51493
|
+
required: true,
|
|
51494
|
+
description: ""
|
|
51495
|
+
},
|
|
51496
|
+
{
|
|
51497
|
+
name: "name",
|
|
51498
|
+
type: "string",
|
|
51499
|
+
required: false,
|
|
51500
|
+
description: ""
|
|
51501
|
+
},
|
|
51502
|
+
{
|
|
51503
|
+
name: "ports",
|
|
51504
|
+
type: "array",
|
|
51505
|
+
required: false,
|
|
51506
|
+
description: ""
|
|
51507
|
+
},
|
|
51508
|
+
{
|
|
51509
|
+
name: "env",
|
|
51510
|
+
type: "object",
|
|
51511
|
+
required: false,
|
|
51512
|
+
description: ""
|
|
51513
|
+
},
|
|
51514
|
+
{
|
|
51515
|
+
name: "volumes",
|
|
51516
|
+
type: "array",
|
|
51517
|
+
required: false,
|
|
51518
|
+
description: ""
|
|
51519
|
+
},
|
|
51520
|
+
{
|
|
51521
|
+
name: "command",
|
|
51522
|
+
type: "string",
|
|
51523
|
+
required: false,
|
|
51524
|
+
description: ""
|
|
51525
|
+
}
|
|
51526
|
+
],
|
|
51527
|
+
responseShape: {
|
|
51528
|
+
containerId: "string",
|
|
51529
|
+
name: "string",
|
|
51530
|
+
status: "string",
|
|
51531
|
+
ports: "array"
|
|
51532
|
+
}
|
|
51533
|
+
},
|
|
51534
|
+
{
|
|
51535
|
+
name: "stop",
|
|
51536
|
+
description: "",
|
|
51537
|
+
params: [
|
|
51538
|
+
{
|
|
51539
|
+
name: "containerId",
|
|
51540
|
+
type: "string",
|
|
51541
|
+
required: true,
|
|
51542
|
+
description: ""
|
|
51543
|
+
}
|
|
51544
|
+
],
|
|
51545
|
+
responseShape: {
|
|
51546
|
+
containerId: "string",
|
|
51547
|
+
status: "string",
|
|
51548
|
+
stoppedAt: "number"
|
|
51549
|
+
}
|
|
51550
|
+
},
|
|
51551
|
+
{
|
|
51552
|
+
name: "remove",
|
|
51553
|
+
description: "",
|
|
51554
|
+
params: [
|
|
51555
|
+
{
|
|
51556
|
+
name: "containerId",
|
|
51557
|
+
type: "string",
|
|
51558
|
+
required: true,
|
|
51559
|
+
description: ""
|
|
51560
|
+
},
|
|
51561
|
+
{
|
|
51562
|
+
name: "force",
|
|
51563
|
+
type: "boolean",
|
|
51564
|
+
required: false,
|
|
51565
|
+
description: ""
|
|
51566
|
+
}
|
|
51567
|
+
],
|
|
51568
|
+
responseShape: {
|
|
51569
|
+
containerId: "string",
|
|
51570
|
+
removed: "boolean"
|
|
51571
|
+
}
|
|
51572
|
+
},
|
|
51573
|
+
{
|
|
51574
|
+
name: "logs",
|
|
51575
|
+
description: "",
|
|
51576
|
+
params: [
|
|
51577
|
+
{
|
|
51578
|
+
name: "containerId",
|
|
51579
|
+
type: "string",
|
|
51580
|
+
required: true,
|
|
51581
|
+
description: ""
|
|
51582
|
+
},
|
|
51583
|
+
{
|
|
51584
|
+
name: "tail",
|
|
51585
|
+
type: "number",
|
|
51586
|
+
required: false,
|
|
51587
|
+
description: ""
|
|
51588
|
+
},
|
|
51589
|
+
{
|
|
51590
|
+
name: "since",
|
|
51591
|
+
type: "string",
|
|
51592
|
+
required: false,
|
|
51593
|
+
description: ""
|
|
51594
|
+
}
|
|
51595
|
+
],
|
|
51596
|
+
responseShape: {
|
|
51597
|
+
containerId: "string",
|
|
51598
|
+
logs: "string[]",
|
|
51599
|
+
lineCount: "number"
|
|
51600
|
+
}
|
|
51601
|
+
},
|
|
51602
|
+
{
|
|
51603
|
+
name: "status",
|
|
51604
|
+
description: "",
|
|
51605
|
+
params: [
|
|
51606
|
+
{
|
|
51607
|
+
name: "containerId",
|
|
51608
|
+
type: "string",
|
|
51609
|
+
required: true,
|
|
51610
|
+
description: ""
|
|
51611
|
+
}
|
|
51612
|
+
],
|
|
51613
|
+
responseShape: {
|
|
51614
|
+
containerId: "string",
|
|
51615
|
+
name: "string",
|
|
51616
|
+
image: "string",
|
|
51617
|
+
status: "string",
|
|
51618
|
+
ports: "array",
|
|
51619
|
+
createdAt: "number",
|
|
51620
|
+
startedAt: "number | null",
|
|
51621
|
+
stoppedAt: "number | null"
|
|
51622
|
+
}
|
|
51623
|
+
},
|
|
51624
|
+
{
|
|
51625
|
+
name: "list",
|
|
51626
|
+
description: "",
|
|
51627
|
+
params: [
|
|
51628
|
+
{
|
|
51629
|
+
name: "all",
|
|
51630
|
+
type: "boolean",
|
|
51631
|
+
required: false,
|
|
51632
|
+
description: ""
|
|
51633
|
+
},
|
|
51634
|
+
{
|
|
51635
|
+
name: "filterByLabel",
|
|
51636
|
+
type: "string",
|
|
51637
|
+
required: false,
|
|
51638
|
+
description: ""
|
|
51639
|
+
}
|
|
51640
|
+
],
|
|
51641
|
+
responseShape: {
|
|
51642
|
+
containers: "array",
|
|
51643
|
+
total: "number"
|
|
51644
|
+
}
|
|
51645
|
+
}
|
|
51646
|
+
]
|
|
51647
|
+
},
|
|
51648
|
+
storage: {
|
|
51649
|
+
name: "storage",
|
|
51650
|
+
description: "Object storage \u2014 upload, download, delete, list files",
|
|
51651
|
+
category: "infrastructure",
|
|
51652
|
+
actions: [
|
|
51653
|
+
{
|
|
51654
|
+
name: "upload",
|
|
51655
|
+
description: "",
|
|
51656
|
+
params: [
|
|
51657
|
+
{
|
|
51658
|
+
name: "bucket",
|
|
51659
|
+
type: "string",
|
|
51660
|
+
required: true,
|
|
51661
|
+
description: ""
|
|
51662
|
+
},
|
|
51663
|
+
{
|
|
51664
|
+
name: "key",
|
|
51665
|
+
type: "string",
|
|
51666
|
+
required: false,
|
|
51667
|
+
description: ""
|
|
51668
|
+
},
|
|
51669
|
+
{
|
|
51670
|
+
name: "content",
|
|
51671
|
+
type: "string",
|
|
51672
|
+
required: false,
|
|
51673
|
+
description: ""
|
|
51674
|
+
},
|
|
51675
|
+
{
|
|
51676
|
+
name: "contentType",
|
|
51677
|
+
type: "string",
|
|
51678
|
+
required: false,
|
|
51679
|
+
description: ""
|
|
51680
|
+
},
|
|
51681
|
+
{
|
|
51682
|
+
name: "file",
|
|
51683
|
+
type: "object",
|
|
51684
|
+
required: false,
|
|
51685
|
+
description: ""
|
|
51686
|
+
},
|
|
51687
|
+
{
|
|
51688
|
+
name: "acl",
|
|
51689
|
+
type: "'public' | 'private'",
|
|
51690
|
+
required: false,
|
|
51691
|
+
description: ""
|
|
51692
|
+
},
|
|
51693
|
+
{
|
|
51694
|
+
name: "maxSize",
|
|
51695
|
+
type: "number",
|
|
51696
|
+
required: false,
|
|
51697
|
+
description: ""
|
|
51698
|
+
},
|
|
51699
|
+
{
|
|
51700
|
+
name: "metadata",
|
|
51701
|
+
type: "IntegrationParams",
|
|
51702
|
+
required: false,
|
|
51703
|
+
description: ""
|
|
51704
|
+
}
|
|
51705
|
+
],
|
|
51706
|
+
responseShape: {
|
|
51707
|
+
key: "string",
|
|
51708
|
+
bucket: "string",
|
|
51709
|
+
size: "number",
|
|
51710
|
+
etag: "string",
|
|
51711
|
+
id: "string",
|
|
51712
|
+
url: "string"
|
|
51713
|
+
}
|
|
51714
|
+
},
|
|
51715
|
+
{
|
|
51716
|
+
name: "download",
|
|
51717
|
+
description: "",
|
|
49974
51718
|
params: [
|
|
49975
51719
|
{
|
|
49976
|
-
name: "
|
|
51720
|
+
name: "bucket",
|
|
51721
|
+
type: "string",
|
|
51722
|
+
required: true,
|
|
51723
|
+
description: ""
|
|
51724
|
+
},
|
|
51725
|
+
{
|
|
51726
|
+
name: "key",
|
|
49977
51727
|
type: "string",
|
|
49978
51728
|
required: true,
|
|
49979
|
-
description: "
|
|
51729
|
+
description: ""
|
|
49980
51730
|
}
|
|
49981
51731
|
],
|
|
49982
51732
|
responseShape: {
|
|
49983
|
-
|
|
49984
|
-
|
|
51733
|
+
content: "string",
|
|
51734
|
+
contentType: "string",
|
|
51735
|
+
size: "number",
|
|
51736
|
+
metadata: "IntegrationParams"
|
|
49985
51737
|
}
|
|
49986
51738
|
},
|
|
49987
51739
|
{
|
|
49988
|
-
name: "
|
|
49989
|
-
description: "
|
|
51740
|
+
name: "list",
|
|
51741
|
+
description: "",
|
|
49990
51742
|
params: [
|
|
49991
51743
|
{
|
|
49992
|
-
name: "
|
|
51744
|
+
name: "bucket",
|
|
49993
51745
|
type: "string",
|
|
49994
51746
|
required: true,
|
|
49995
|
-
description: "
|
|
51747
|
+
description: ""
|
|
49996
51748
|
},
|
|
49997
51749
|
{
|
|
49998
|
-
name: "
|
|
51750
|
+
name: "prefix",
|
|
51751
|
+
type: "string",
|
|
51752
|
+
required: false,
|
|
51753
|
+
description: ""
|
|
51754
|
+
},
|
|
51755
|
+
{
|
|
51756
|
+
name: "maxKeys",
|
|
49999
51757
|
type: "number",
|
|
50000
51758
|
required: false,
|
|
50001
|
-
description: "
|
|
51759
|
+
description: ""
|
|
51760
|
+
},
|
|
51761
|
+
{
|
|
51762
|
+
name: "continuationToken",
|
|
51763
|
+
type: "string",
|
|
51764
|
+
required: false,
|
|
51765
|
+
description: ""
|
|
50002
51766
|
}
|
|
50003
51767
|
],
|
|
50004
51768
|
responseShape: {
|
|
50005
|
-
|
|
50006
|
-
|
|
50007
|
-
|
|
51769
|
+
keys: "array",
|
|
51770
|
+
truncated: "boolean",
|
|
51771
|
+
nextToken: "string"
|
|
50008
51772
|
}
|
|
50009
|
-
}
|
|
50010
|
-
]
|
|
50011
|
-
},
|
|
50012
|
-
twilio: {
|
|
50013
|
-
name: "twilio",
|
|
50014
|
-
description: "Twilio messaging - send SMS, WhatsApp messages",
|
|
50015
|
-
category: "messaging",
|
|
50016
|
-
actions: [
|
|
51773
|
+
},
|
|
50017
51774
|
{
|
|
50018
|
-
name: "
|
|
50019
|
-
description: "
|
|
51775
|
+
name: "delete",
|
|
51776
|
+
description: "",
|
|
50020
51777
|
params: [
|
|
50021
51778
|
{
|
|
50022
|
-
name: "
|
|
51779
|
+
name: "bucket",
|
|
50023
51780
|
type: "string",
|
|
50024
51781
|
required: true,
|
|
50025
|
-
description: "
|
|
51782
|
+
description: ""
|
|
50026
51783
|
},
|
|
50027
51784
|
{
|
|
50028
|
-
name: "
|
|
51785
|
+
name: "key",
|
|
50029
51786
|
type: "string",
|
|
50030
51787
|
required: true,
|
|
50031
|
-
description: "
|
|
51788
|
+
description: ""
|
|
50032
51789
|
}
|
|
50033
51790
|
],
|
|
50034
51791
|
responseShape: {
|
|
50035
|
-
|
|
50036
|
-
status: "string"
|
|
51792
|
+
deleted: "boolean"
|
|
50037
51793
|
}
|
|
50038
51794
|
},
|
|
50039
51795
|
{
|
|
50040
|
-
name: "
|
|
50041
|
-
description: "
|
|
51796
|
+
name: "getSignedUrl",
|
|
51797
|
+
description: "",
|
|
50042
51798
|
params: [
|
|
50043
51799
|
{
|
|
50044
|
-
name: "
|
|
51800
|
+
name: "bucket",
|
|
50045
51801
|
type: "string",
|
|
50046
51802
|
required: true,
|
|
50047
|
-
description: "
|
|
51803
|
+
description: ""
|
|
50048
51804
|
},
|
|
50049
51805
|
{
|
|
50050
|
-
name: "
|
|
51806
|
+
name: "key",
|
|
50051
51807
|
type: "string",
|
|
50052
51808
|
required: true,
|
|
50053
|
-
description: "
|
|
51809
|
+
description: ""
|
|
51810
|
+
},
|
|
51811
|
+
{
|
|
51812
|
+
name: "expiresIn",
|
|
51813
|
+
type: "number",
|
|
51814
|
+
required: false,
|
|
51815
|
+
description: ""
|
|
51816
|
+
},
|
|
51817
|
+
{
|
|
51818
|
+
name: "operation",
|
|
51819
|
+
type: "'get' | 'put'",
|
|
51820
|
+
required: false,
|
|
51821
|
+
description: ""
|
|
50054
51822
|
}
|
|
50055
51823
|
],
|
|
50056
51824
|
responseShape: {
|
|
50057
|
-
|
|
50058
|
-
|
|
51825
|
+
url: "string",
|
|
51826
|
+
expiresAt: "number"
|
|
50059
51827
|
}
|
|
50060
51828
|
}
|
|
50061
51829
|
]
|
|
50062
51830
|
},
|
|
50063
|
-
|
|
50064
|
-
name: "
|
|
50065
|
-
description: "
|
|
50066
|
-
category: "
|
|
51831
|
+
queue: {
|
|
51832
|
+
name: "queue",
|
|
51833
|
+
description: "Message queue \u2014 publish, subscribe, acknowledge messages",
|
|
51834
|
+
category: "infrastructure",
|
|
50067
51835
|
actions: [
|
|
50068
51836
|
{
|
|
50069
|
-
name: "
|
|
50070
|
-
description: "
|
|
51837
|
+
name: "enqueue",
|
|
51838
|
+
description: "",
|
|
50071
51839
|
params: [
|
|
50072
51840
|
{
|
|
50073
|
-
name: "
|
|
51841
|
+
name: "queue",
|
|
50074
51842
|
type: "string",
|
|
50075
51843
|
required: true,
|
|
50076
|
-
description: "
|
|
51844
|
+
description: ""
|
|
50077
51845
|
},
|
|
50078
51846
|
{
|
|
50079
|
-
name: "
|
|
50080
|
-
type: "
|
|
51847
|
+
name: "payload",
|
|
51848
|
+
type: "ServiceParams",
|
|
50081
51849
|
required: true,
|
|
50082
|
-
description: "
|
|
51850
|
+
description: ""
|
|
50083
51851
|
},
|
|
50084
51852
|
{
|
|
50085
|
-
name: "
|
|
50086
|
-
type: "
|
|
50087
|
-
required:
|
|
50088
|
-
description: "
|
|
51853
|
+
name: "delay",
|
|
51854
|
+
type: "number",
|
|
51855
|
+
required: false,
|
|
51856
|
+
description: ""
|
|
50089
51857
|
},
|
|
50090
51858
|
{
|
|
50091
|
-
name: "
|
|
50092
|
-
type: "
|
|
51859
|
+
name: "priority",
|
|
51860
|
+
type: "number",
|
|
50093
51861
|
required: false,
|
|
50094
|
-
description: "
|
|
51862
|
+
description: ""
|
|
50095
51863
|
}
|
|
50096
51864
|
],
|
|
50097
51865
|
responseShape: {
|
|
50098
|
-
|
|
50099
|
-
|
|
51866
|
+
jobId: "string",
|
|
51867
|
+
position: "number"
|
|
50100
51868
|
}
|
|
50101
|
-
}
|
|
50102
|
-
]
|
|
50103
|
-
},
|
|
50104
|
-
llm: {
|
|
50105
|
-
name: "llm",
|
|
50106
|
-
description: "LLM service for content generation, classification, and structured extraction",
|
|
50107
|
-
category: "ai",
|
|
50108
|
-
actions: [
|
|
51869
|
+
},
|
|
50109
51870
|
{
|
|
50110
|
-
name: "
|
|
50111
|
-
description: "
|
|
51871
|
+
name: "dequeue",
|
|
51872
|
+
description: "",
|
|
50112
51873
|
params: [
|
|
50113
51874
|
{
|
|
50114
|
-
name: "
|
|
51875
|
+
name: "queue",
|
|
50115
51876
|
type: "string",
|
|
50116
|
-
required:
|
|
50117
|
-
description: "
|
|
50118
|
-
}
|
|
51877
|
+
required: true,
|
|
51878
|
+
description: ""
|
|
51879
|
+
}
|
|
51880
|
+
],
|
|
51881
|
+
responseShape: {
|
|
51882
|
+
job: "object | null"
|
|
51883
|
+
}
|
|
51884
|
+
},
|
|
51885
|
+
{
|
|
51886
|
+
name: "status",
|
|
51887
|
+
description: "",
|
|
51888
|
+
params: [
|
|
50119
51889
|
{
|
|
50120
|
-
name: "
|
|
51890
|
+
name: "jobId",
|
|
50121
51891
|
type: "string",
|
|
50122
51892
|
required: true,
|
|
50123
|
-
description: "
|
|
50124
|
-
}
|
|
51893
|
+
description: ""
|
|
51894
|
+
}
|
|
51895
|
+
],
|
|
51896
|
+
responseShape: {
|
|
51897
|
+
status: "'pending' | 'processing' | 'completed' | 'failed'",
|
|
51898
|
+
job: "object | null"
|
|
51899
|
+
}
|
|
51900
|
+
},
|
|
51901
|
+
{
|
|
51902
|
+
name: "complete",
|
|
51903
|
+
description: "",
|
|
51904
|
+
params: [
|
|
50125
51905
|
{
|
|
50126
|
-
name: "
|
|
51906
|
+
name: "jobId",
|
|
50127
51907
|
type: "string",
|
|
50128
|
-
required:
|
|
50129
|
-
description: "
|
|
51908
|
+
required: true,
|
|
51909
|
+
description: ""
|
|
50130
51910
|
},
|
|
50131
51911
|
{
|
|
50132
|
-
name: "
|
|
50133
|
-
type: "
|
|
51912
|
+
name: "result",
|
|
51913
|
+
type: "ServiceParams",
|
|
50134
51914
|
required: false,
|
|
50135
|
-
description: "
|
|
51915
|
+
description: ""
|
|
51916
|
+
}
|
|
51917
|
+
],
|
|
51918
|
+
responseShape: {
|
|
51919
|
+
completed: "boolean"
|
|
51920
|
+
}
|
|
51921
|
+
},
|
|
51922
|
+
{
|
|
51923
|
+
name: "fail",
|
|
51924
|
+
description: "",
|
|
51925
|
+
params: [
|
|
51926
|
+
{
|
|
51927
|
+
name: "jobId",
|
|
51928
|
+
type: "string",
|
|
51929
|
+
required: true,
|
|
51930
|
+
description: ""
|
|
50136
51931
|
},
|
|
50137
51932
|
{
|
|
50138
|
-
name: "
|
|
50139
|
-
type: "
|
|
51933
|
+
name: "error",
|
|
51934
|
+
type: "string",
|
|
50140
51935
|
required: false,
|
|
50141
|
-
description: "
|
|
51936
|
+
description: ""
|
|
50142
51937
|
}
|
|
50143
51938
|
],
|
|
50144
51939
|
responseShape: {
|
|
50145
|
-
|
|
50146
|
-
usage: "object"
|
|
51940
|
+
failed: "boolean"
|
|
50147
51941
|
}
|
|
50148
51942
|
},
|
|
50149
51943
|
{
|
|
50150
|
-
name: "
|
|
50151
|
-
description: "
|
|
51944
|
+
name: "cancel",
|
|
51945
|
+
description: "",
|
|
50152
51946
|
params: [
|
|
50153
51947
|
{
|
|
50154
|
-
name: "
|
|
51948
|
+
name: "jobId",
|
|
50155
51949
|
type: "string",
|
|
50156
51950
|
required: true,
|
|
50157
|
-
description: "
|
|
50158
|
-
}
|
|
51951
|
+
description: ""
|
|
51952
|
+
}
|
|
51953
|
+
],
|
|
51954
|
+
responseShape: {
|
|
51955
|
+
cancelled: "boolean"
|
|
51956
|
+
}
|
|
51957
|
+
},
|
|
51958
|
+
{
|
|
51959
|
+
name: "size",
|
|
51960
|
+
description: "",
|
|
51961
|
+
params: [
|
|
50159
51962
|
{
|
|
50160
|
-
name: "
|
|
50161
|
-
type: "
|
|
51963
|
+
name: "queue",
|
|
51964
|
+
type: "string",
|
|
50162
51965
|
required: true,
|
|
50163
|
-
description: "
|
|
50164
|
-
}
|
|
51966
|
+
description: ""
|
|
51967
|
+
}
|
|
51968
|
+
],
|
|
51969
|
+
responseShape: {
|
|
51970
|
+
size: "number",
|
|
51971
|
+
pending: "number",
|
|
51972
|
+
processing: "number"
|
|
51973
|
+
}
|
|
51974
|
+
}
|
|
51975
|
+
]
|
|
51976
|
+
},
|
|
51977
|
+
redis: {
|
|
51978
|
+
name: "redis",
|
|
51979
|
+
description: "Redis \u2014 cache get/set/delete, pub/sub",
|
|
51980
|
+
category: "infrastructure",
|
|
51981
|
+
actions: [
|
|
51982
|
+
{
|
|
51983
|
+
name: "get",
|
|
51984
|
+
description: "",
|
|
51985
|
+
params: [
|
|
50165
51986
|
{
|
|
50166
|
-
name: "
|
|
51987
|
+
name: "key",
|
|
50167
51988
|
type: "string",
|
|
50168
|
-
required:
|
|
50169
|
-
description: "
|
|
51989
|
+
required: true,
|
|
51990
|
+
description: ""
|
|
50170
51991
|
}
|
|
50171
51992
|
],
|
|
50172
51993
|
responseShape: {
|
|
50173
|
-
|
|
50174
|
-
confidence: "number",
|
|
50175
|
-
reasoning: "string"
|
|
51994
|
+
value: "ServiceParams"
|
|
50176
51995
|
}
|
|
50177
51996
|
},
|
|
50178
51997
|
{
|
|
50179
|
-
name: "
|
|
50180
|
-
description: "
|
|
51998
|
+
name: "set",
|
|
51999
|
+
description: "",
|
|
50181
52000
|
params: [
|
|
50182
52001
|
{
|
|
50183
|
-
name: "
|
|
52002
|
+
name: "key",
|
|
50184
52003
|
type: "string",
|
|
50185
52004
|
required: true,
|
|
50186
|
-
description: "
|
|
52005
|
+
description: ""
|
|
50187
52006
|
},
|
|
50188
52007
|
{
|
|
50189
|
-
name: "
|
|
50190
|
-
type: "
|
|
52008
|
+
name: "value",
|
|
52009
|
+
type: "ServiceParams",
|
|
50191
52010
|
required: true,
|
|
50192
|
-
description: "
|
|
52011
|
+
description: ""
|
|
50193
52012
|
},
|
|
50194
52013
|
{
|
|
50195
|
-
name: "
|
|
50196
|
-
type: "
|
|
52014
|
+
name: "ttl",
|
|
52015
|
+
type: "number",
|
|
50197
52016
|
required: false,
|
|
50198
|
-
description: "
|
|
52017
|
+
description: ""
|
|
50199
52018
|
}
|
|
50200
52019
|
],
|
|
50201
52020
|
responseShape: {
|
|
50202
|
-
|
|
50203
|
-
confidence: "number"
|
|
52021
|
+
ok: "boolean"
|
|
50204
52022
|
}
|
|
50205
52023
|
},
|
|
50206
52024
|
{
|
|
50207
|
-
name: "
|
|
50208
|
-
description: "
|
|
52025
|
+
name: "delete",
|
|
52026
|
+
description: "",
|
|
50209
52027
|
params: [
|
|
50210
52028
|
{
|
|
50211
|
-
name: "
|
|
52029
|
+
name: "key",
|
|
50212
52030
|
type: "string",
|
|
50213
52031
|
required: true,
|
|
50214
|
-
description: "
|
|
52032
|
+
description: ""
|
|
52033
|
+
}
|
|
52034
|
+
],
|
|
52035
|
+
responseShape: {
|
|
52036
|
+
deleted: "boolean"
|
|
52037
|
+
}
|
|
52038
|
+
},
|
|
52039
|
+
{
|
|
52040
|
+
name: "lock",
|
|
52041
|
+
description: "",
|
|
52042
|
+
params: [
|
|
52043
|
+
{
|
|
52044
|
+
name: "key",
|
|
52045
|
+
type: "string",
|
|
52046
|
+
required: true,
|
|
52047
|
+
description: ""
|
|
50215
52048
|
},
|
|
50216
52049
|
{
|
|
50217
|
-
name: "
|
|
52050
|
+
name: "ttl",
|
|
50218
52051
|
type: "number",
|
|
50219
52052
|
required: false,
|
|
50220
|
-
description: "
|
|
50221
|
-
}
|
|
52053
|
+
description: ""
|
|
52054
|
+
}
|
|
52055
|
+
],
|
|
52056
|
+
responseShape: {
|
|
52057
|
+
acquired: "boolean",
|
|
52058
|
+
lockId: "string"
|
|
52059
|
+
}
|
|
52060
|
+
},
|
|
52061
|
+
{
|
|
52062
|
+
name: "unlock",
|
|
52063
|
+
description: "",
|
|
52064
|
+
params: [
|
|
50222
52065
|
{
|
|
50223
|
-
name: "
|
|
52066
|
+
name: "key",
|
|
50224
52067
|
type: "string",
|
|
50225
|
-
required:
|
|
50226
|
-
description: "
|
|
52068
|
+
required: true,
|
|
52069
|
+
description: ""
|
|
50227
52070
|
},
|
|
50228
52071
|
{
|
|
50229
|
-
name: "
|
|
52072
|
+
name: "lockId",
|
|
50230
52073
|
type: "string",
|
|
50231
|
-
required:
|
|
50232
|
-
description: "
|
|
52074
|
+
required: true,
|
|
52075
|
+
description: ""
|
|
50233
52076
|
}
|
|
50234
52077
|
],
|
|
50235
52078
|
responseShape: {
|
|
50236
|
-
|
|
50237
|
-
keyPoints: "array"
|
|
52079
|
+
released: "boolean"
|
|
50238
52080
|
}
|
|
50239
52081
|
},
|
|
50240
52082
|
{
|
|
50241
|
-
name: "
|
|
50242
|
-
description: "
|
|
52083
|
+
name: "increment",
|
|
52084
|
+
description: "",
|
|
50243
52085
|
params: [
|
|
50244
52086
|
{
|
|
50245
|
-
name: "
|
|
50246
|
-
type: "string
|
|
52087
|
+
name: "key",
|
|
52088
|
+
type: "string",
|
|
50247
52089
|
required: true,
|
|
50248
|
-
description: "
|
|
52090
|
+
description: ""
|
|
50249
52091
|
},
|
|
50250
52092
|
{
|
|
50251
|
-
name: "
|
|
50252
|
-
type: "
|
|
52093
|
+
name: "by",
|
|
52094
|
+
type: "number",
|
|
50253
52095
|
required: false,
|
|
50254
|
-
description: "
|
|
52096
|
+
description: ""
|
|
50255
52097
|
}
|
|
50256
52098
|
],
|
|
50257
52099
|
responseShape: {
|
|
50258
|
-
|
|
52100
|
+
value: "number"
|
|
50259
52101
|
}
|
|
50260
|
-
}
|
|
50261
|
-
]
|
|
50262
|
-
},
|
|
50263
|
-
ml: {
|
|
50264
|
-
name: "ml",
|
|
50265
|
-
description: "ML service - model inference on a trained or off-the-shelf checkpoint, reached via a deployed serving orbital",
|
|
50266
|
-
category: "ai",
|
|
50267
|
-
actions: [
|
|
52102
|
+
},
|
|
50268
52103
|
{
|
|
50269
|
-
name: "
|
|
50270
|
-
description: "
|
|
52104
|
+
name: "expire",
|
|
52105
|
+
description: "",
|
|
50271
52106
|
params: [
|
|
50272
52107
|
{
|
|
50273
|
-
name: "
|
|
52108
|
+
name: "key",
|
|
50274
52109
|
type: "string",
|
|
50275
52110
|
required: true,
|
|
50276
|
-
description: "
|
|
52111
|
+
description: ""
|
|
50277
52112
|
},
|
|
50278
52113
|
{
|
|
50279
|
-
name: "
|
|
50280
|
-
type: "
|
|
52114
|
+
name: "ttl",
|
|
52115
|
+
type: "number",
|
|
50281
52116
|
required: true,
|
|
50282
|
-
description: "
|
|
52117
|
+
description: ""
|
|
50283
52118
|
}
|
|
50284
52119
|
],
|
|
50285
52120
|
responseShape: {
|
|
50286
|
-
|
|
50287
|
-
|
|
50288
|
-
|
|
52121
|
+
set: "boolean"
|
|
52122
|
+
}
|
|
52123
|
+
},
|
|
52124
|
+
{
|
|
52125
|
+
name: "publish",
|
|
52126
|
+
description: "",
|
|
52127
|
+
params: [
|
|
52128
|
+
{
|
|
52129
|
+
name: "channel",
|
|
52130
|
+
type: "string",
|
|
52131
|
+
required: true,
|
|
52132
|
+
description: ""
|
|
52133
|
+
},
|
|
52134
|
+
{
|
|
52135
|
+
name: "message",
|
|
52136
|
+
type: "ServiceParams",
|
|
52137
|
+
required: true,
|
|
52138
|
+
description: ""
|
|
52139
|
+
}
|
|
52140
|
+
],
|
|
52141
|
+
responseShape: {
|
|
52142
|
+
receivers: "number"
|
|
52143
|
+
}
|
|
52144
|
+
},
|
|
52145
|
+
{
|
|
52146
|
+
name: "subscribe",
|
|
52147
|
+
description: "",
|
|
52148
|
+
params: [
|
|
52149
|
+
{
|
|
52150
|
+
name: "channel",
|
|
52151
|
+
type: "string",
|
|
52152
|
+
required: true,
|
|
52153
|
+
description: ""
|
|
52154
|
+
}
|
|
52155
|
+
],
|
|
52156
|
+
responseShape: {
|
|
52157
|
+
subscribed: "boolean"
|
|
50289
52158
|
}
|
|
50290
52159
|
}
|
|
50291
52160
|
]
|
|
50292
52161
|
},
|
|
50293
|
-
|
|
50294
|
-
name: "
|
|
50295
|
-
description: "
|
|
50296
|
-
category: "
|
|
52162
|
+
oauth: {
|
|
52163
|
+
name: "oauth",
|
|
52164
|
+
description: "OAuth/OIDC \u2014 authorization-code + PKCE flow, token management, userinfo",
|
|
52165
|
+
category: "auth",
|
|
50297
52166
|
actions: [
|
|
50298
52167
|
{
|
|
50299
|
-
name: "
|
|
50300
|
-
description: "
|
|
52168
|
+
name: "authorize",
|
|
52169
|
+
description: "",
|
|
50301
52170
|
params: [
|
|
50302
52171
|
{
|
|
50303
|
-
name: "
|
|
50304
|
-
type: "
|
|
52172
|
+
name: "provider",
|
|
52173
|
+
type: "'google' | 'github' | 'auth0'",
|
|
50305
52174
|
required: true,
|
|
50306
|
-
description: "
|
|
52175
|
+
description: ""
|
|
50307
52176
|
},
|
|
50308
52177
|
{
|
|
50309
|
-
name: "
|
|
50310
|
-
type: "string",
|
|
50311
|
-
required:
|
|
50312
|
-
description: "
|
|
52178
|
+
name: "scopes",
|
|
52179
|
+
type: "string[]",
|
|
52180
|
+
required: true,
|
|
52181
|
+
description: ""
|
|
50313
52182
|
},
|
|
50314
52183
|
{
|
|
50315
|
-
name: "
|
|
52184
|
+
name: "redirectUri",
|
|
50316
52185
|
type: "string",
|
|
50317
|
-
required:
|
|
50318
|
-
description: "
|
|
50319
|
-
},
|
|
50320
|
-
{
|
|
50321
|
-
name: "context",
|
|
50322
|
-
type: "object",
|
|
50323
|
-
required: false,
|
|
50324
|
-
description: "Additional context (current schema, project info)"
|
|
52186
|
+
required: true,
|
|
52187
|
+
description: ""
|
|
50325
52188
|
}
|
|
50326
52189
|
],
|
|
50327
52190
|
responseShape: {
|
|
50328
|
-
|
|
50329
|
-
|
|
50330
|
-
toolCalls: "array",
|
|
50331
|
-
todos: "array",
|
|
50332
|
-
schemaDiffs: "array"
|
|
52191
|
+
authUrl: "string",
|
|
52192
|
+
state: "string"
|
|
50333
52193
|
}
|
|
50334
52194
|
},
|
|
50335
52195
|
{
|
|
50336
|
-
name: "
|
|
50337
|
-
description: "
|
|
52196
|
+
name: "token",
|
|
52197
|
+
description: "",
|
|
50338
52198
|
params: [
|
|
50339
52199
|
{
|
|
50340
|
-
name: "
|
|
52200
|
+
name: "code",
|
|
50341
52201
|
type: "string",
|
|
50342
52202
|
required: true,
|
|
50343
|
-
description: "
|
|
52203
|
+
description: ""
|
|
52204
|
+
},
|
|
52205
|
+
{
|
|
52206
|
+
name: "state",
|
|
52207
|
+
type: "string",
|
|
52208
|
+
required: true,
|
|
52209
|
+
description: ""
|
|
50344
52210
|
}
|
|
50345
52211
|
],
|
|
50346
52212
|
responseShape: {
|
|
50347
|
-
|
|
52213
|
+
accessToken: "string",
|
|
52214
|
+
refreshToken: "string",
|
|
52215
|
+
expiresIn: "number",
|
|
52216
|
+
tokenType: "'bearer'"
|
|
50348
52217
|
}
|
|
50349
52218
|
},
|
|
50350
52219
|
{
|
|
50351
|
-
name: "
|
|
50352
|
-
description: "
|
|
52220
|
+
name: "refresh",
|
|
52221
|
+
description: "",
|
|
50353
52222
|
params: [
|
|
50354
52223
|
{
|
|
50355
|
-
name: "
|
|
52224
|
+
name: "refreshToken",
|
|
50356
52225
|
type: "string",
|
|
50357
52226
|
required: true,
|
|
50358
|
-
description: "
|
|
52227
|
+
description: ""
|
|
50359
52228
|
}
|
|
50360
52229
|
],
|
|
50361
52230
|
responseShape: {
|
|
50362
|
-
|
|
50363
|
-
|
|
50364
|
-
warnings: "array"
|
|
52231
|
+
accessToken: "string",
|
|
52232
|
+
expiresIn: "number"
|
|
50365
52233
|
}
|
|
50366
52234
|
},
|
|
50367
52235
|
{
|
|
50368
|
-
name: "
|
|
50369
|
-
description: "
|
|
52236
|
+
name: "revoke",
|
|
52237
|
+
description: "",
|
|
50370
52238
|
params: [
|
|
50371
52239
|
{
|
|
50372
|
-
name: "
|
|
52240
|
+
name: "token",
|
|
50373
52241
|
type: "string",
|
|
50374
52242
|
required: true,
|
|
50375
|
-
description: "
|
|
50376
|
-
},
|
|
50377
|
-
{
|
|
50378
|
-
name: "shell",
|
|
50379
|
-
type: "string",
|
|
50380
|
-
required: false,
|
|
50381
|
-
description: "Target shell: typescript, python (default: typescript)"
|
|
52243
|
+
description: ""
|
|
50382
52244
|
}
|
|
50383
52245
|
],
|
|
50384
52246
|
responseShape: {
|
|
50385
|
-
|
|
50386
|
-
outputPath: "string",
|
|
50387
|
-
errors: "array"
|
|
52247
|
+
revoked: "boolean"
|
|
50388
52248
|
}
|
|
50389
52249
|
},
|
|
50390
52250
|
{
|
|
50391
|
-
name: "
|
|
50392
|
-
description: "
|
|
52251
|
+
name: "userinfo",
|
|
52252
|
+
description: "",
|
|
50393
52253
|
params: [
|
|
50394
52254
|
{
|
|
50395
|
-
name: "
|
|
52255
|
+
name: "accessToken",
|
|
50396
52256
|
type: "string",
|
|
50397
52257
|
required: true,
|
|
50398
|
-
description: "
|
|
52258
|
+
description: ""
|
|
50399
52259
|
}
|
|
50400
52260
|
],
|
|
50401
52261
|
responseShape: {
|
|
50402
|
-
|
|
50403
|
-
|
|
50404
|
-
|
|
52262
|
+
sub: "string",
|
|
52263
|
+
email: "string",
|
|
52264
|
+
name: "string",
|
|
52265
|
+
picture: "string"
|
|
50405
52266
|
}
|
|
50406
52267
|
}
|
|
50407
52268
|
]
|
|
50408
52269
|
},
|
|
50409
|
-
|
|
50410
|
-
name: "
|
|
50411
|
-
description: "
|
|
50412
|
-
category: "
|
|
52270
|
+
credentials: {
|
|
52271
|
+
name: "credentials",
|
|
52272
|
+
description: "Tenant credential store \u2014 masked list, set/remove, test connection (settings-page backend)",
|
|
52273
|
+
category: "auth",
|
|
50413
52274
|
actions: [
|
|
50414
52275
|
{
|
|
50415
|
-
name: "
|
|
50416
|
-
description: "
|
|
52276
|
+
name: "list",
|
|
52277
|
+
description: "",
|
|
50417
52278
|
params: [
|
|
50418
52279
|
{
|
|
50419
|
-
name: "
|
|
50420
|
-
type: "string",
|
|
50421
|
-
required: true,
|
|
50422
|
-
description: "Repository URL or owner/repo"
|
|
50423
|
-
},
|
|
50424
|
-
{
|
|
50425
|
-
name: "branch",
|
|
52280
|
+
name: "service",
|
|
50426
52281
|
type: "string",
|
|
50427
52282
|
required: false,
|
|
50428
|
-
description: "
|
|
52283
|
+
description: ""
|
|
50429
52284
|
}
|
|
50430
52285
|
],
|
|
50431
52286
|
responseShape: {
|
|
50432
|
-
|
|
50433
|
-
|
|
52287
|
+
enabled: "boolean",
|
|
52288
|
+
entries: "array"
|
|
50434
52289
|
}
|
|
50435
52290
|
},
|
|
50436
52291
|
{
|
|
50437
|
-
name: "
|
|
50438
|
-
description: "
|
|
52292
|
+
name: "set",
|
|
52293
|
+
description: "",
|
|
50439
52294
|
params: [
|
|
50440
52295
|
{
|
|
50441
|
-
name: "
|
|
52296
|
+
name: "service",
|
|
50442
52297
|
type: "string",
|
|
50443
52298
|
required: true,
|
|
50444
|
-
description: "
|
|
52299
|
+
description: ""
|
|
50445
52300
|
},
|
|
50446
52301
|
{
|
|
50447
|
-
name: "
|
|
52302
|
+
name: "envVar",
|
|
52303
|
+
type: "string",
|
|
52304
|
+
required: true,
|
|
52305
|
+
description: ""
|
|
52306
|
+
},
|
|
52307
|
+
{
|
|
52308
|
+
name: "value",
|
|
50448
52309
|
type: "string",
|
|
50449
52310
|
required: true,
|
|
50450
|
-
description: "
|
|
52311
|
+
description: ""
|
|
50451
52312
|
}
|
|
50452
52313
|
],
|
|
50453
52314
|
responseShape: {
|
|
50454
|
-
|
|
52315
|
+
saved: "boolean",
|
|
52316
|
+
service: "string",
|
|
52317
|
+
envVar: "string",
|
|
52318
|
+
last4: "string"
|
|
50455
52319
|
}
|
|
50456
52320
|
},
|
|
50457
52321
|
{
|
|
50458
|
-
name: "
|
|
50459
|
-
description: "
|
|
52322
|
+
name: "remove",
|
|
52323
|
+
description: "",
|
|
50460
52324
|
params: [
|
|
50461
52325
|
{
|
|
50462
|
-
name: "
|
|
52326
|
+
name: "service",
|
|
50463
52327
|
type: "string",
|
|
50464
52328
|
required: true,
|
|
50465
|
-
description: "
|
|
52329
|
+
description: ""
|
|
50466
52330
|
},
|
|
50467
52331
|
{
|
|
50468
|
-
name: "
|
|
52332
|
+
name: "envVar",
|
|
50469
52333
|
type: "string",
|
|
50470
52334
|
required: true,
|
|
50471
|
-
description: "
|
|
50472
|
-
},
|
|
50473
|
-
{
|
|
50474
|
-
name: "files",
|
|
50475
|
-
type: "array",
|
|
50476
|
-
required: false,
|
|
50477
|
-
description: "Files to stage"
|
|
52335
|
+
description: ""
|
|
50478
52336
|
}
|
|
50479
52337
|
],
|
|
50480
52338
|
responseShape: {
|
|
50481
|
-
|
|
50482
|
-
message: "string"
|
|
52339
|
+
removed: "boolean"
|
|
50483
52340
|
}
|
|
50484
52341
|
},
|
|
50485
52342
|
{
|
|
50486
|
-
name: "
|
|
50487
|
-
description: "
|
|
52343
|
+
name: "test",
|
|
52344
|
+
description: "",
|
|
50488
52345
|
params: [
|
|
50489
52346
|
{
|
|
50490
|
-
name: "
|
|
52347
|
+
name: "service",
|
|
50491
52348
|
type: "string",
|
|
50492
52349
|
required: true,
|
|
50493
|
-
description: "
|
|
50494
|
-
},
|
|
50495
|
-
{
|
|
50496
|
-
name: "branch",
|
|
50497
|
-
type: "string",
|
|
50498
|
-
required: false,
|
|
50499
|
-
description: "Branch to push"
|
|
52350
|
+
description: ""
|
|
50500
52351
|
}
|
|
50501
52352
|
],
|
|
50502
52353
|
responseShape: {
|
|
50503
|
-
|
|
52354
|
+
service: "string",
|
|
52355
|
+
configured: "boolean",
|
|
52356
|
+
missing: "string[]",
|
|
52357
|
+
probed: "boolean",
|
|
52358
|
+
ok: "boolean",
|
|
52359
|
+
message: "string"
|
|
50504
52360
|
}
|
|
50505
52361
|
},
|
|
50506
52362
|
{
|
|
50507
|
-
name: "
|
|
50508
|
-
description: "
|
|
52363
|
+
name: "rotate",
|
|
52364
|
+
description: "",
|
|
52365
|
+
params: [],
|
|
52366
|
+
responseShape: {
|
|
52367
|
+
rotated: "number",
|
|
52368
|
+
alreadyCurrent: "number",
|
|
52369
|
+
unreadable: "number"
|
|
52370
|
+
}
|
|
52371
|
+
}
|
|
52372
|
+
]
|
|
52373
|
+
},
|
|
52374
|
+
otel: {
|
|
52375
|
+
name: "otel",
|
|
52376
|
+
description: "OpenTelemetry \u2014 spans, metrics, logs",
|
|
52377
|
+
category: "infrastructure",
|
|
52378
|
+
actions: [
|
|
52379
|
+
{
|
|
52380
|
+
name: "startSpan",
|
|
52381
|
+
description: "",
|
|
50509
52382
|
params: [
|
|
50510
52383
|
{
|
|
50511
|
-
name: "
|
|
52384
|
+
name: "name",
|
|
50512
52385
|
type: "string",
|
|
50513
52386
|
required: true,
|
|
50514
|
-
description: "
|
|
52387
|
+
description: ""
|
|
50515
52388
|
},
|
|
50516
52389
|
{
|
|
50517
|
-
name: "
|
|
50518
|
-
type: "
|
|
52390
|
+
name: "attributes",
|
|
52391
|
+
type: "IntegrationParams",
|
|
50519
52392
|
required: false,
|
|
50520
|
-
description: "
|
|
52393
|
+
description: ""
|
|
50521
52394
|
},
|
|
50522
52395
|
{
|
|
50523
|
-
name: "
|
|
52396
|
+
name: "traceId",
|
|
52397
|
+
type: "string",
|
|
52398
|
+
required: false,
|
|
52399
|
+
description: ""
|
|
52400
|
+
}
|
|
52401
|
+
],
|
|
52402
|
+
responseShape: {
|
|
52403
|
+
spanId: "string",
|
|
52404
|
+
traceId: "string"
|
|
52405
|
+
}
|
|
52406
|
+
},
|
|
52407
|
+
{
|
|
52408
|
+
name: "endSpan",
|
|
52409
|
+
description: "",
|
|
52410
|
+
params: [
|
|
52411
|
+
{
|
|
52412
|
+
name: "spanId",
|
|
50524
52413
|
type: "string",
|
|
50525
52414
|
required: true,
|
|
50526
|
-
description: "
|
|
52415
|
+
description: ""
|
|
50527
52416
|
},
|
|
50528
52417
|
{
|
|
50529
|
-
name: "
|
|
50530
|
-
type: "
|
|
52418
|
+
name: "status",
|
|
52419
|
+
type: "'ok' | 'error'",
|
|
50531
52420
|
required: false,
|
|
50532
|
-
description: "
|
|
52421
|
+
description: ""
|
|
50533
52422
|
}
|
|
50534
52423
|
],
|
|
50535
52424
|
responseShape: {
|
|
50536
|
-
|
|
50537
|
-
url: "string"
|
|
52425
|
+
ended: "boolean"
|
|
50538
52426
|
}
|
|
50539
52427
|
},
|
|
50540
52428
|
{
|
|
50541
|
-
name: "
|
|
50542
|
-
description: "
|
|
52429
|
+
name: "addEvent",
|
|
52430
|
+
description: "",
|
|
50543
52431
|
params: [
|
|
50544
52432
|
{
|
|
50545
|
-
name: "
|
|
50546
|
-
type: "
|
|
52433
|
+
name: "spanId",
|
|
52434
|
+
type: "string",
|
|
52435
|
+
required: true,
|
|
52436
|
+
description: ""
|
|
52437
|
+
},
|
|
52438
|
+
{
|
|
52439
|
+
name: "name",
|
|
52440
|
+
type: "string",
|
|
50547
52441
|
required: true,
|
|
50548
|
-
description: "
|
|
52442
|
+
description: ""
|
|
52443
|
+
},
|
|
52444
|
+
{
|
|
52445
|
+
name: "attributes",
|
|
52446
|
+
type: "IntegrationParams",
|
|
52447
|
+
required: false,
|
|
52448
|
+
description: ""
|
|
50549
52449
|
}
|
|
50550
52450
|
],
|
|
50551
52451
|
responseShape: {
|
|
50552
|
-
|
|
52452
|
+
added: "boolean"
|
|
50553
52453
|
}
|
|
50554
52454
|
},
|
|
50555
52455
|
{
|
|
50556
|
-
name: "
|
|
50557
|
-
description: "
|
|
52456
|
+
name: "recordMetric",
|
|
52457
|
+
description: "",
|
|
50558
52458
|
params: [
|
|
50559
52459
|
{
|
|
50560
|
-
name: "
|
|
52460
|
+
name: "name",
|
|
50561
52461
|
type: "string",
|
|
52462
|
+
required: true,
|
|
52463
|
+
description: ""
|
|
52464
|
+
},
|
|
52465
|
+
{
|
|
52466
|
+
name: "value",
|
|
52467
|
+
type: "number",
|
|
52468
|
+
required: true,
|
|
52469
|
+
description: ""
|
|
52470
|
+
},
|
|
52471
|
+
{
|
|
52472
|
+
name: "type",
|
|
52473
|
+
type: "'counter' | 'gauge' | 'histogram'",
|
|
50562
52474
|
required: false,
|
|
50563
|
-
description: "
|
|
52475
|
+
description: ""
|
|
50564
52476
|
},
|
|
50565
52477
|
{
|
|
50566
52478
|
name: "labels",
|
|
50567
|
-
type: "
|
|
52479
|
+
type: "IntegrationParams",
|
|
50568
52480
|
required: false,
|
|
50569
|
-
description: "
|
|
52481
|
+
description: ""
|
|
50570
52482
|
}
|
|
50571
52483
|
],
|
|
50572
52484
|
responseShape: {
|
|
50573
|
-
|
|
52485
|
+
recorded: "boolean"
|
|
50574
52486
|
}
|
|
50575
52487
|
},
|
|
50576
52488
|
{
|
|
50577
|
-
name: "
|
|
50578
|
-
description: "
|
|
52489
|
+
name: "getSpan",
|
|
52490
|
+
description: "",
|
|
50579
52491
|
params: [
|
|
50580
52492
|
{
|
|
50581
|
-
name: "
|
|
50582
|
-
type: "
|
|
52493
|
+
name: "spanId",
|
|
52494
|
+
type: "string",
|
|
50583
52495
|
required: true,
|
|
50584
|
-
description: "
|
|
52496
|
+
description: ""
|
|
50585
52497
|
}
|
|
50586
52498
|
],
|
|
50587
|
-
responseShape: {
|
|
50588
|
-
|
|
50589
|
-
|
|
50590
|
-
|
|
50591
|
-
|
|
52499
|
+
responseShape: {}
|
|
52500
|
+
},
|
|
52501
|
+
{
|
|
52502
|
+
name: "getMetrics",
|
|
52503
|
+
description: "",
|
|
52504
|
+
params: [],
|
|
52505
|
+
responseShape: {}
|
|
50592
52506
|
}
|
|
50593
52507
|
]
|
|
50594
52508
|
},
|
|
@@ -50599,24 +52513,133 @@ var integrators_registry_default = {
|
|
|
50599
52513
|
actions: [
|
|
50600
52514
|
{
|
|
50601
52515
|
name: "validate",
|
|
50602
|
-
description: "
|
|
52516
|
+
description: "",
|
|
50603
52517
|
params: [
|
|
50604
52518
|
{
|
|
50605
52519
|
name: "schema",
|
|
50606
52520
|
type: "string",
|
|
50607
52521
|
required: true,
|
|
50608
|
-
description: "
|
|
52522
|
+
description: ""
|
|
50609
52523
|
}
|
|
50610
52524
|
],
|
|
50611
52525
|
responseShape: {
|
|
50612
52526
|
valid: "boolean",
|
|
50613
|
-
errors: "
|
|
50614
|
-
warnings: "
|
|
52527
|
+
errors: "string[]",
|
|
52528
|
+
warnings: "string[]",
|
|
50615
52529
|
summary: "string"
|
|
50616
52530
|
}
|
|
50617
52531
|
}
|
|
50618
52532
|
]
|
|
50619
52533
|
},
|
|
52534
|
+
deepagent: {
|
|
52535
|
+
name: "deepagent",
|
|
52536
|
+
description: "AI code generation agent with tool use - generates schemas, code, and manages projects",
|
|
52537
|
+
category: "ai",
|
|
52538
|
+
actions: [
|
|
52539
|
+
{
|
|
52540
|
+
name: "sendMessage",
|
|
52541
|
+
description: "",
|
|
52542
|
+
params: [
|
|
52543
|
+
{
|
|
52544
|
+
name: "message",
|
|
52545
|
+
type: "string",
|
|
52546
|
+
required: true,
|
|
52547
|
+
description: ""
|
|
52548
|
+
},
|
|
52549
|
+
{
|
|
52550
|
+
name: "threadId",
|
|
52551
|
+
type: "string",
|
|
52552
|
+
required: false,
|
|
52553
|
+
description: ""
|
|
52554
|
+
},
|
|
52555
|
+
{
|
|
52556
|
+
name: "skill",
|
|
52557
|
+
type: "string",
|
|
52558
|
+
required: false,
|
|
52559
|
+
description: ""
|
|
52560
|
+
},
|
|
52561
|
+
{
|
|
52562
|
+
name: "context",
|
|
52563
|
+
type: "IntegrationParams",
|
|
52564
|
+
required: false,
|
|
52565
|
+
description: ""
|
|
52566
|
+
}
|
|
52567
|
+
],
|
|
52568
|
+
responseShape: {
|
|
52569
|
+
response: "string",
|
|
52570
|
+
threadId: "string"
|
|
52571
|
+
}
|
|
52572
|
+
},
|
|
52573
|
+
{
|
|
52574
|
+
name: "cancelGeneration",
|
|
52575
|
+
description: "",
|
|
52576
|
+
params: [
|
|
52577
|
+
{
|
|
52578
|
+
name: "threadId",
|
|
52579
|
+
type: "string",
|
|
52580
|
+
required: true,
|
|
52581
|
+
description: ""
|
|
52582
|
+
}
|
|
52583
|
+
],
|
|
52584
|
+
responseShape: {
|
|
52585
|
+
cancelled: "boolean"
|
|
52586
|
+
}
|
|
52587
|
+
},
|
|
52588
|
+
{
|
|
52589
|
+
name: "validateSchema",
|
|
52590
|
+
description: "",
|
|
52591
|
+
params: [
|
|
52592
|
+
{
|
|
52593
|
+
name: "schema",
|
|
52594
|
+
type: "string",
|
|
52595
|
+
required: true,
|
|
52596
|
+
description: ""
|
|
52597
|
+
}
|
|
52598
|
+
],
|
|
52599
|
+
responseShape: {
|
|
52600
|
+
valid: "boolean",
|
|
52601
|
+
errors: "string[]"
|
|
52602
|
+
}
|
|
52603
|
+
},
|
|
52604
|
+
{
|
|
52605
|
+
name: "compileSchema",
|
|
52606
|
+
description: "",
|
|
52607
|
+
params: [
|
|
52608
|
+
{
|
|
52609
|
+
name: "schema",
|
|
52610
|
+
type: "string",
|
|
52611
|
+
required: true,
|
|
52612
|
+
description: ""
|
|
52613
|
+
},
|
|
52614
|
+
{
|
|
52615
|
+
name: "shell",
|
|
52616
|
+
type: "string",
|
|
52617
|
+
required: false,
|
|
52618
|
+
description: ""
|
|
52619
|
+
}
|
|
52620
|
+
],
|
|
52621
|
+
responseShape: {
|
|
52622
|
+
output: "string",
|
|
52623
|
+
files: "string[]"
|
|
52624
|
+
}
|
|
52625
|
+
},
|
|
52626
|
+
{
|
|
52627
|
+
name: "getThreadHistory",
|
|
52628
|
+
description: "",
|
|
52629
|
+
params: [
|
|
52630
|
+
{
|
|
52631
|
+
name: "threadId",
|
|
52632
|
+
type: "string",
|
|
52633
|
+
required: true,
|
|
52634
|
+
description: ""
|
|
52635
|
+
}
|
|
52636
|
+
],
|
|
52637
|
+
responseShape: {
|
|
52638
|
+
messages: "array"
|
|
52639
|
+
}
|
|
52640
|
+
}
|
|
52641
|
+
]
|
|
52642
|
+
},
|
|
50620
52643
|
database: {
|
|
50621
52644
|
name: "database",
|
|
50622
52645
|
description: "Generic SQL database integration - read-only queries over external connections",
|
|
@@ -50624,29 +52647,29 @@ var integrators_registry_default = {
|
|
|
50624
52647
|
actions: [
|
|
50625
52648
|
{
|
|
50626
52649
|
name: "query",
|
|
50627
|
-
description: "
|
|
52650
|
+
description: "",
|
|
50628
52651
|
params: [
|
|
50629
52652
|
{
|
|
50630
52653
|
name: "connectionRef",
|
|
50631
52654
|
type: "string",
|
|
50632
52655
|
required: true,
|
|
50633
|
-
description: "
|
|
52656
|
+
description: ""
|
|
50634
52657
|
},
|
|
50635
52658
|
{
|
|
50636
52659
|
name: "sql",
|
|
50637
52660
|
type: "string",
|
|
50638
52661
|
required: true,
|
|
50639
|
-
description: "
|
|
52662
|
+
description: ""
|
|
50640
52663
|
},
|
|
50641
52664
|
{
|
|
50642
52665
|
name: "params",
|
|
50643
|
-
type: "
|
|
52666
|
+
type: "DatabaseQueryParamValue[]",
|
|
50644
52667
|
required: false,
|
|
50645
|
-
description: "
|
|
52668
|
+
description: ""
|
|
50646
52669
|
}
|
|
50647
52670
|
],
|
|
50648
52671
|
responseShape: {
|
|
50649
|
-
rows: "
|
|
52672
|
+
rows: "DatabaseRow[]",
|
|
50650
52673
|
rowCount: "number"
|
|
50651
52674
|
}
|
|
50652
52675
|
}
|
|
@@ -50659,13 +52682,13 @@ var integrators_registry_default = {
|
|
|
50659
52682
|
actions: [
|
|
50660
52683
|
{
|
|
50661
52684
|
name: "getPage",
|
|
50662
|
-
description: "
|
|
52685
|
+
description: "",
|
|
50663
52686
|
params: [
|
|
50664
52687
|
{
|
|
50665
52688
|
name: "title",
|
|
50666
52689
|
type: "string",
|
|
50667
52690
|
required: true,
|
|
50668
|
-
description: "
|
|
52691
|
+
description: ""
|
|
50669
52692
|
}
|
|
50670
52693
|
],
|
|
50671
52694
|
responseShape: {
|
|
@@ -50684,13 +52707,13 @@ var integrators_registry_default = {
|
|
|
50684
52707
|
actions: [
|
|
50685
52708
|
{
|
|
50686
52709
|
name: "svgExists",
|
|
50687
|
-
description: "
|
|
52710
|
+
description: "",
|
|
50688
52711
|
params: [
|
|
50689
52712
|
{
|
|
50690
52713
|
name: "path",
|
|
50691
52714
|
type: "string",
|
|
50692
52715
|
required: true,
|
|
50693
|
-
description: "
|
|
52716
|
+
description: ""
|
|
50694
52717
|
}
|
|
50695
52718
|
],
|
|
50696
52719
|
responseShape: {
|
|
@@ -50699,19 +52722,19 @@ var integrators_registry_default = {
|
|
|
50699
52722
|
},
|
|
50700
52723
|
{
|
|
50701
52724
|
name: "search",
|
|
50702
|
-
description: "
|
|
52725
|
+
description: "",
|
|
50703
52726
|
params: [
|
|
50704
52727
|
{
|
|
50705
52728
|
name: "query",
|
|
50706
52729
|
type: "string",
|
|
50707
52730
|
required: true,
|
|
50708
|
-
description: "
|
|
52731
|
+
description: ""
|
|
50709
52732
|
},
|
|
50710
52733
|
{
|
|
50711
52734
|
name: "limit",
|
|
50712
52735
|
type: "number",
|
|
50713
52736
|
required: false,
|
|
50714
|
-
description: "
|
|
52737
|
+
description: ""
|
|
50715
52738
|
}
|
|
50716
52739
|
],
|
|
50717
52740
|
responseShape: {
|
|
@@ -50720,17 +52743,17 @@ var integrators_registry_default = {
|
|
|
50720
52743
|
},
|
|
50721
52744
|
{
|
|
50722
52745
|
name: "getIconBody",
|
|
50723
|
-
description: "
|
|
52746
|
+
description: "",
|
|
50724
52747
|
params: [
|
|
50725
52748
|
{
|
|
50726
52749
|
name: "iconId",
|
|
50727
52750
|
type: "string",
|
|
50728
52751
|
required: true,
|
|
50729
|
-
description: "
|
|
52752
|
+
description: ""
|
|
50730
52753
|
}
|
|
50731
52754
|
],
|
|
50732
52755
|
responseShape: {
|
|
50733
|
-
body: "string"
|
|
52756
|
+
body: "string | null"
|
|
50734
52757
|
}
|
|
50735
52758
|
}
|
|
50736
52759
|
]
|
|
@@ -50742,84 +52765,46 @@ var integrators_registry_default = {
|
|
|
50742
52765
|
actions: [
|
|
50743
52766
|
{
|
|
50744
52767
|
name: "search",
|
|
50745
|
-
description: "
|
|
52768
|
+
description: "",
|
|
50746
52769
|
params: [
|
|
50747
52770
|
{
|
|
50748
52771
|
name: "query",
|
|
50749
52772
|
type: "string",
|
|
50750
52773
|
required: true,
|
|
50751
|
-
description: "
|
|
52774
|
+
description: ""
|
|
50752
52775
|
},
|
|
50753
52776
|
{
|
|
50754
52777
|
name: "maxResults",
|
|
50755
52778
|
type: "number",
|
|
50756
52779
|
required: false,
|
|
50757
|
-
description: "
|
|
50758
|
-
}
|
|
50759
|
-
],
|
|
50760
|
-
responseShape: {
|
|
50761
|
-
results: "ArxivResult[]"
|
|
50762
|
-
}
|
|
50763
|
-
}
|
|
50764
|
-
]
|
|
50765
|
-
},
|
|
50766
|
-
webhook: {
|
|
50767
|
-
name: "webhook",
|
|
50768
|
-
description: "Outbound webhook - signed HTTP POST notifications to external endpoints",
|
|
50769
|
-
category: "messaging",
|
|
50770
|
-
actions: [
|
|
50771
|
-
{
|
|
50772
|
-
name: "send",
|
|
50773
|
-
description: "POST a JSON event envelope to an external URL, HMAC-SHA256 signed when a secret is configured",
|
|
50774
|
-
params: [
|
|
50775
|
-
{
|
|
50776
|
-
name: "url",
|
|
50777
|
-
type: "string",
|
|
50778
|
-
required: true,
|
|
50779
|
-
description: "Target endpoint URL"
|
|
50780
|
-
},
|
|
50781
|
-
{
|
|
50782
|
-
name: "event",
|
|
50783
|
-
type: "string",
|
|
50784
|
-
required: true,
|
|
50785
|
-
description: "Event name carried in the envelope and X-Almadar-Event header"
|
|
50786
|
-
},
|
|
50787
|
-
{
|
|
50788
|
-
name: "payload",
|
|
50789
|
-
type: "object",
|
|
50790
|
-
required: false,
|
|
50791
|
-
description: "Event payload fields (string map)"
|
|
50792
|
-
},
|
|
50793
|
-
{
|
|
50794
|
-
name: "secret",
|
|
50795
|
-
type: "string",
|
|
50796
|
-
required: false,
|
|
50797
|
-
description: "Per-call HMAC signing secret (overrides WEBHOOK_SIGNING_SECRET)"
|
|
52780
|
+
description: ""
|
|
50798
52781
|
}
|
|
50799
52782
|
],
|
|
50800
52783
|
responseShape: {
|
|
50801
|
-
|
|
50802
|
-
ok: "boolean",
|
|
50803
|
-
durationMs: "number"
|
|
52784
|
+
results: "array"
|
|
50804
52785
|
}
|
|
50805
52786
|
}
|
|
50806
52787
|
]
|
|
50807
52788
|
}
|
|
50808
52789
|
},
|
|
50809
52790
|
categories: [
|
|
50810
|
-
"media",
|
|
50811
|
-
"payment",
|
|
50812
|
-
"messaging",
|
|
50813
52791
|
"ai",
|
|
52792
|
+
"auth",
|
|
50814
52793
|
"devtools",
|
|
50815
|
-
"
|
|
52794
|
+
"finance",
|
|
52795
|
+
"infrastructure",
|
|
52796
|
+
"marketing",
|
|
52797
|
+
"media",
|
|
52798
|
+
"messaging",
|
|
52799
|
+
"payment",
|
|
52800
|
+
"reference"
|
|
50816
52801
|
]
|
|
50817
52802
|
};
|
|
50818
52803
|
|
|
50819
52804
|
// src/patterns/component-mapping.json
|
|
50820
52805
|
var component_mapping_default = {
|
|
50821
52806
|
version: "1.0.0",
|
|
50822
|
-
exportedAt: "2026-08-
|
|
52807
|
+
exportedAt: "2026-08-23T03:36:02.671Z",
|
|
50823
52808
|
mappings: {
|
|
50824
52809
|
"page-header": {
|
|
50825
52810
|
component: "PageHeader",
|
|
@@ -52229,7 +54214,7 @@ var component_mapping_default = {
|
|
|
52229
54214
|
// src/patterns/event-contracts.json
|
|
52230
54215
|
var event_contracts_default = {
|
|
52231
54216
|
version: "1.0.0",
|
|
52232
|
-
exportedAt: "2026-08-
|
|
54217
|
+
exportedAt: "2026-08-23T03:36:02.671Z",
|
|
52233
54218
|
contracts: {
|
|
52234
54219
|
form: {
|
|
52235
54220
|
emits: [
|
|
@@ -52453,13 +54438,6 @@ var event_contracts_default = {
|
|
|
52453
54438
|
payload: {
|
|
52454
54439
|
type: "object"
|
|
52455
54440
|
}
|
|
52456
|
-
},
|
|
52457
|
-
{
|
|
52458
|
-
event: "CLOSE",
|
|
52459
|
-
trigger: "action",
|
|
52460
|
-
payload: {
|
|
52461
|
-
type: "object"
|
|
52462
|
-
}
|
|
52463
54441
|
}
|
|
52464
54442
|
],
|
|
52465
54443
|
requires: [],
|
|
@@ -57672,6 +59650,6 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
57672
59650
|
return next;
|
|
57673
59651
|
}
|
|
57674
59652
|
|
|
57675
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, ledgerCurName, ledgerRename, ledgerResolveName, mapTensorLastDim, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
59653
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, deriveExpectations, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, ledgerCurName, ledgerRename, ledgerResolveName, mapTensorLastDim, maskSecretConfigValues, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
57676
59654
|
//# sourceMappingURL=index.js.map
|
|
57677
59655
|
//# sourceMappingURL=index.js.map
|