@keystrokehq/supportivekoala 0.1.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/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/create-image.cjs +25 -0
- package/dist/actions/create-image.cjs.map +1 -0
- package/dist/actions/create-image.d.cts +9 -0
- package/dist/actions/create-image.d.cts.map +1 -0
- package/dist/actions/create-image.d.mts +9 -0
- package/dist/actions/create-image.d.mts.map +1 -0
- package/dist/actions/create-image.mjs +22 -0
- package/dist/actions/create-image.mjs.map +1 -0
- package/dist/actions/create-template.cjs +29 -0
- package/dist/actions/create-template.cjs.map +1 -0
- package/dist/actions/create-template.d.cts +9 -0
- package/dist/actions/create-template.d.cts.map +1 -0
- package/dist/actions/create-template.d.mts +9 -0
- package/dist/actions/create-template.d.mts.map +1 -0
- package/dist/actions/create-template.mjs +26 -0
- package/dist/actions/create-template.mjs.map +1 -0
- package/dist/actions/index.cjs +13 -0
- package/dist/actions/index.d.cts +7 -0
- package/dist/actions/index.d.mts +7 -0
- package/dist/actions/index.mjs +7 -0
- package/dist/actions/list-images.cjs +23 -0
- package/dist/actions/list-images.cjs.map +1 -0
- package/dist/actions/list-images.d.cts +9 -0
- package/dist/actions/list-images.d.cts.map +1 -0
- package/dist/actions/list-images.d.mts +9 -0
- package/dist/actions/list-images.d.mts.map +1 -0
- package/dist/actions/list-images.mjs +22 -0
- package/dist/actions/list-images.mjs.map +1 -0
- package/dist/actions/list-templates.cjs +23 -0
- package/dist/actions/list-templates.cjs.map +1 -0
- package/dist/actions/list-templates.d.cts +9 -0
- package/dist/actions/list-templates.d.cts.map +1 -0
- package/dist/actions/list-templates.d.mts +9 -0
- package/dist/actions/list-templates.d.mts.map +1 -0
- package/dist/actions/list-templates.mjs +22 -0
- package/dist/actions/list-templates.mjs.map +1 -0
- package/dist/actions/register-user.cjs +23 -0
- package/dist/actions/register-user.cjs.map +1 -0
- package/dist/actions/register-user.d.cts +9 -0
- package/dist/actions/register-user.d.cts.map +1 -0
- package/dist/actions/register-user.d.mts +9 -0
- package/dist/actions/register-user.d.mts.map +1 -0
- package/dist/actions/register-user.mjs +20 -0
- package/dist/actions/register-user.mjs.map +1 -0
- package/dist/actions/retrieve-template.cjs +22 -0
- package/dist/actions/retrieve-template.cjs.map +1 -0
- package/dist/actions/retrieve-template.d.cts +9 -0
- package/dist/actions/retrieve-template.d.cts.map +1 -0
- package/dist/actions/retrieve-template.d.mts +9 -0
- package/dist/actions/retrieve-template.d.mts.map +1 -0
- package/dist/actions/retrieve-template.mjs +19 -0
- package/dist/actions/retrieve-template.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +18 -0
- package/dist/index.d.cts +9 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.mjs +10 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/supportivekoala
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `supportivekoala`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 6
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { supportivekoalaCreateImage } from "@keystrokehq/supportivekoala/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "supportivekoala-agent",
|
|
15
|
+
tools: [supportivekoalaCreateImage],
|
|
16
|
+
});
|
|
17
|
+
```
|
package/dist/action.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_app = require("./app.cjs");
|
|
2
|
+
const require_execute = require("./execute.cjs");
|
|
3
|
+
require("zod");
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return require_app.supportivekoala.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await require_execute.executeSupportivekoalaTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.action = action;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["supportivekoala","executeSupportivekoalaTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { supportivekoala } from \"./app\";\nimport { executeSupportivekoalaTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return supportivekoala.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSupportivekoalaTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,gBAAgB,OAAO;EAC5B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,2BAA2B,MAAM,KAAgC,CAAC;EAClG;CACF,CAAC;AACH"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { supportivekoala } from "./app.mjs";
|
|
2
|
+
import { executeSupportivekoalaTool } from "./execute.mjs";
|
|
3
|
+
import "zod";
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return supportivekoala.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await executeSupportivekoalaTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { action };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { supportivekoala } from \"./app\";\nimport { executeSupportivekoalaTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return supportivekoala.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeSupportivekoalaTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,gBAAgB,OAAO;EAC5B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,2BAA2B,MAAM,KAAgC,CAAC;EAClG;CACF,CAAC;AACH"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/create-image.ts
|
|
4
|
+
const SupportivekoalaCreateImageInput = zod.z.object({
|
|
5
|
+
template: zod.z.string().describe("UUID or slug of the template to use for image generation"),
|
|
6
|
+
webhook_url: zod.z.string().describe("Optional callback URL to receive a webhook when the image is ready").optional(),
|
|
7
|
+
modifications: zod.z.object({}).describe("Key-value mapping of template-specific fields and their replacement values")
|
|
8
|
+
}).describe("Request schema for creating a new image based on a template.");
|
|
9
|
+
const SupportivekoalaCreateImageOutput = zod.z.object({
|
|
10
|
+
id: zod.z.string().describe("Unique identifier for the image generation task"),
|
|
11
|
+
url: zod.z.string().describe("Direct URL to the generated image, if immediately available").nullable().optional(),
|
|
12
|
+
error: zod.z.string().describe("Error message, if the image creation failed").nullable().optional(),
|
|
13
|
+
status: zod.z.enum(["queued", "processing"]).describe("Current status of the image generation task")
|
|
14
|
+
}).describe("Response schema returned after requesting image creation.");
|
|
15
|
+
const supportivekoalaCreateImage = require_action.action("SUPPORTIVEKOALA_CREATE_IMAGE", {
|
|
16
|
+
slug: "supportivekoala-create-image",
|
|
17
|
+
name: "Create Image",
|
|
18
|
+
description: "Tool to create a new image based on a template. Use when you have selected your template and prepared modifications.",
|
|
19
|
+
input: SupportivekoalaCreateImageInput,
|
|
20
|
+
output: SupportivekoalaCreateImageOutput
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.supportivekoalaCreateImage = supportivekoalaCreateImage;
|
|
24
|
+
|
|
25
|
+
//# sourceMappingURL=create-image.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-image.cjs","names":["z","action"],"sources":["../../src/actions/create-image.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaCreateImageInput: z.ZodTypeAny = z.object({\n template: z.string().describe(\"UUID or slug of the template to use for image generation\"),\n webhook_url: z.string().describe(\"Optional callback URL to receive a webhook when the image is ready\").optional(),\n modifications: z.object({}).describe(\"Key-value mapping of template-specific fields and their replacement values\"),\n}).describe(\"Request schema for creating a new image based on a template.\");\nexport const SupportivekoalaCreateImageOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the image generation task\"),\n url: z.string().describe(\"Direct URL to the generated image, if immediately available\").nullable().optional(),\n error: z.string().describe(\"Error message, if the image creation failed\").nullable().optional(),\n status: z.enum([\"queued\", \"processing\"]).describe(\"Current status of the image generation task\"),\n}).describe(\"Response schema returned after requesting image creation.\");\n\nexport const supportivekoalaCreateImage = action(\"SUPPORTIVEKOALA_CREATE_IMAGE\", {\n slug: \"supportivekoala-create-image\",\n name: \"Create Image\",\n description: \"Tool to create a new image based on a template. Use when you have selected your template and prepared modifications.\",\n input: SupportivekoalaCreateImageInput,\n output: SupportivekoalaCreateImageOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CAChH,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4EAA4E;AACnH,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAa,mCAAiDA,IAAAA,EAAE,OAAO;CACrE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CACzE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,QAAQA,IAAAA,EAAE,KAAK,CAAC,UAAU,YAAY,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACjG,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,6BAA6BC,eAAAA,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-image.d.ts
|
|
4
|
+
declare const SupportivekoalaCreateImageInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaCreateImageOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaCreateImage: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaCreateImage };
|
|
9
|
+
//# sourceMappingURL=create-image.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-image.d.cts","names":[],"sources":["../../src/actions/create-image.ts"],"mappings":";;;cAIa,+BAAA,EAAiC,CAAA,CAAE,UAI2B;AAAA,cAC9D,gCAAA,EAAkC,CAAA,CAAE,UAKuB;AAAA,cAE3D,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-image.d.ts
|
|
4
|
+
declare const SupportivekoalaCreateImageInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaCreateImageOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaCreateImage: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaCreateImage };
|
|
9
|
+
//# sourceMappingURL=create-image.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-image.d.mts","names":[],"sources":["../../src/actions/create-image.ts"],"mappings":";;;cAIa,+BAAA,EAAiC,CAAA,CAAE,UAI2B;AAAA,cAC9D,gCAAA,EAAkC,CAAA,CAAE,UAKuB;AAAA,cAE3D,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const supportivekoalaCreateImage = action("SUPPORTIVEKOALA_CREATE_IMAGE", {
|
|
4
|
+
slug: "supportivekoala-create-image",
|
|
5
|
+
name: "Create Image",
|
|
6
|
+
description: "Tool to create a new image based on a template. Use when you have selected your template and prepared modifications.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
template: z.string().describe("UUID or slug of the template to use for image generation"),
|
|
9
|
+
webhook_url: z.string().describe("Optional callback URL to receive a webhook when the image is ready").optional(),
|
|
10
|
+
modifications: z.object({}).describe("Key-value mapping of template-specific fields and their replacement values")
|
|
11
|
+
}).describe("Request schema for creating a new image based on a template."),
|
|
12
|
+
output: z.object({
|
|
13
|
+
id: z.string().describe("Unique identifier for the image generation task"),
|
|
14
|
+
url: z.string().describe("Direct URL to the generated image, if immediately available").nullable().optional(),
|
|
15
|
+
error: z.string().describe("Error message, if the image creation failed").nullable().optional(),
|
|
16
|
+
status: z.enum(["queued", "processing"]).describe("Current status of the image generation task")
|
|
17
|
+
}).describe("Response schema returned after requesting image creation.")
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { supportivekoalaCreateImage };
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=create-image.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-image.mjs","names":[],"sources":["../../src/actions/create-image.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaCreateImageInput: z.ZodTypeAny = z.object({\n template: z.string().describe(\"UUID or slug of the template to use for image generation\"),\n webhook_url: z.string().describe(\"Optional callback URL to receive a webhook when the image is ready\").optional(),\n modifications: z.object({}).describe(\"Key-value mapping of template-specific fields and their replacement values\"),\n}).describe(\"Request schema for creating a new image based on a template.\");\nexport const SupportivekoalaCreateImageOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the image generation task\"),\n url: z.string().describe(\"Direct URL to the generated image, if immediately available\").nullable().optional(),\n error: z.string().describe(\"Error message, if the image creation failed\").nullable().optional(),\n status: z.enum([\"queued\", \"processing\"]).describe(\"Current status of the image generation task\"),\n}).describe(\"Response schema returned after requesting image creation.\");\n\nexport const supportivekoalaCreateImage = action(\"SUPPORTIVEKOALA_CREATE_IMAGE\", {\n slug: \"supportivekoala-create-image\",\n name: \"Create Image\",\n description: \"Tool to create a new image based on a template. Use when you have selected your template and prepared modifications.\",\n input: SupportivekoalaCreateImageInput,\n output: SupportivekoalaCreateImageOutput,\n});\n"],"mappings":";;AAgBA,MAAa,6BAA6B,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhB2D,EAAE,OAAO;EACpE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D;EACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;EAChH,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4EAA4E;CACnH,CAAC,CAAC,CAAC,SAAS,8DAYH;CACP,QAZ4D,EAAE,OAAO;EACrE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;EACzE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,QAAQ,EAAE,KAAK,CAAC,UAAU,YAAY,CAAC,CAAC,CAAC,SAAS,6CAA6C;CACjG,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/create-template.ts
|
|
4
|
+
const SupportivekoalaCreateTemplateInput = zod.z.object({
|
|
5
|
+
name: zod.z.string().describe("Name of the template."),
|
|
6
|
+
image_url: zod.z.string().describe("URL of the base image for the template."),
|
|
7
|
+
json_schema: zod.z.record(zod.z.string(), zod.z.unknown()).describe("JSON Schema object describing variable fields for the template."),
|
|
8
|
+
webhook_url: zod.z.string().describe("Optional webhook URL for callbacks when generation is complete.").optional()
|
|
9
|
+
}).describe("Input model to create a new image generation template.");
|
|
10
|
+
const SupportivekoalaCreateTemplateOutput = zod.z.object({
|
|
11
|
+
id: zod.z.string().describe("Unique identifier for the template."),
|
|
12
|
+
name: zod.z.string().describe("Name of the template."),
|
|
13
|
+
image_url: zod.z.string().describe("URL of the template image."),
|
|
14
|
+
created_at: zod.z.string().describe("ISO timestamp when the template was created."),
|
|
15
|
+
updated_at: zod.z.string().describe("ISO timestamp when the template was last updated."),
|
|
16
|
+
json_schema: zod.z.record(zod.z.string(), zod.z.unknown()).describe("JSON Schema object defining template variables."),
|
|
17
|
+
webhook_url: zod.z.string().describe("Webhook URL if configured.").nullable().optional()
|
|
18
|
+
}).describe("Response model for a newly created template.");
|
|
19
|
+
const supportivekoalaCreateTemplate = require_action.action("SUPPORTIVEKOALA_CREATE_TEMPLATE", {
|
|
20
|
+
slug: "supportivekoala-create-template",
|
|
21
|
+
name: "Create Template",
|
|
22
|
+
description: "Tool to create a new template for image generation. Use after gathering template details.",
|
|
23
|
+
input: SupportivekoalaCreateTemplateInput,
|
|
24
|
+
output: SupportivekoalaCreateTemplateOutput
|
|
25
|
+
});
|
|
26
|
+
//#endregion
|
|
27
|
+
exports.supportivekoalaCreateTemplate = supportivekoalaCreateTemplate;
|
|
28
|
+
|
|
29
|
+
//# sourceMappingURL=create-template.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-template.cjs","names":["z","action"],"sources":["../../src/actions/create-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaCreateTemplateInput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the template.\"),\n image_url: z.string().describe(\"URL of the base image for the template.\"),\n json_schema: z.record(z.string(), z.unknown()).describe(\"JSON Schema object describing variable fields for the template.\"),\n webhook_url: z.string().describe(\"Optional webhook URL for callbacks when generation is complete.\").optional(),\n}).describe(\"Input model to create a new image generation template.\");\nexport const SupportivekoalaCreateTemplateOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the template.\"),\n name: z.string().describe(\"Name of the template.\"),\n image_url: z.string().describe(\"URL of the template image.\"),\n created_at: z.string().describe(\"ISO timestamp when the template was created.\"),\n updated_at: z.string().describe(\"ISO timestamp when the template was last updated.\"),\n json_schema: z.record(z.string(), z.unknown()).describe(\"JSON Schema object defining template variables.\"),\n webhook_url: z.string().describe(\"Webhook URL if configured.\").nullable().optional(),\n}).describe(\"Response model for a newly created template.\");\n\nexport const supportivekoalaCreateTemplate = action(\"SUPPORTIVEKOALA_CREATE_TEMPLATE\", {\n slug: \"supportivekoala-create-template\",\n name: \"Create Template\",\n description: \"Tool to create a new template for image generation. Use after gathering template details.\",\n input: SupportivekoalaCreateTemplateInput,\n output: SupportivekoalaCreateTemplateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACxE,aAAaA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iEAAiE;CACzH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;AAC/G,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAa,sCAAoDA,IAAAA,EAAE,OAAO;CACxE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CAC3D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CAC9E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;CACnF,aAAaA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iDAAiD;CACzG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,gCAAgCC,eAAAA,OAAO,mCAAmC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-template.d.ts
|
|
4
|
+
declare const SupportivekoalaCreateTemplateInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaCreateTemplateOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaCreateTemplate: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaCreateTemplate };
|
|
9
|
+
//# sourceMappingURL=create-template.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-template.d.cts","names":[],"sources":["../../src/actions/create-template.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAKkB;AAAA,cACxD,mCAAA,EAAqC,CAAA,CAAE,UAQO;AAAA,cAE9C,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/create-template.d.ts
|
|
4
|
+
declare const SupportivekoalaCreateTemplateInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaCreateTemplateOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaCreateTemplate: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaCreateTemplate };
|
|
9
|
+
//# sourceMappingURL=create-template.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-template.d.mts","names":[],"sources":["../../src/actions/create-template.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAKkB;AAAA,cACxD,mCAAA,EAAqC,CAAA,CAAE,UAQO;AAAA,cAE9C,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const supportivekoalaCreateTemplate = action("SUPPORTIVEKOALA_CREATE_TEMPLATE", {
|
|
4
|
+
slug: "supportivekoala-create-template",
|
|
5
|
+
name: "Create Template",
|
|
6
|
+
description: "Tool to create a new template for image generation. Use after gathering template details.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
name: z.string().describe("Name of the template."),
|
|
9
|
+
image_url: z.string().describe("URL of the base image for the template."),
|
|
10
|
+
json_schema: z.record(z.string(), z.unknown()).describe("JSON Schema object describing variable fields for the template."),
|
|
11
|
+
webhook_url: z.string().describe("Optional webhook URL for callbacks when generation is complete.").optional()
|
|
12
|
+
}).describe("Input model to create a new image generation template."),
|
|
13
|
+
output: z.object({
|
|
14
|
+
id: z.string().describe("Unique identifier for the template."),
|
|
15
|
+
name: z.string().describe("Name of the template."),
|
|
16
|
+
image_url: z.string().describe("URL of the template image."),
|
|
17
|
+
created_at: z.string().describe("ISO timestamp when the template was created."),
|
|
18
|
+
updated_at: z.string().describe("ISO timestamp when the template was last updated."),
|
|
19
|
+
json_schema: z.record(z.string(), z.unknown()).describe("JSON Schema object defining template variables."),
|
|
20
|
+
webhook_url: z.string().describe("Webhook URL if configured.").nullable().optional()
|
|
21
|
+
}).describe("Response model for a newly created template.")
|
|
22
|
+
});
|
|
23
|
+
//#endregion
|
|
24
|
+
export { supportivekoalaCreateTemplate };
|
|
25
|
+
|
|
26
|
+
//# sourceMappingURL=create-template.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-template.mjs","names":[],"sources":["../../src/actions/create-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaCreateTemplateInput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the template.\"),\n image_url: z.string().describe(\"URL of the base image for the template.\"),\n json_schema: z.record(z.string(), z.unknown()).describe(\"JSON Schema object describing variable fields for the template.\"),\n webhook_url: z.string().describe(\"Optional webhook URL for callbacks when generation is complete.\").optional(),\n}).describe(\"Input model to create a new image generation template.\");\nexport const SupportivekoalaCreateTemplateOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the template.\"),\n name: z.string().describe(\"Name of the template.\"),\n image_url: z.string().describe(\"URL of the template image.\"),\n created_at: z.string().describe(\"ISO timestamp when the template was created.\"),\n updated_at: z.string().describe(\"ISO timestamp when the template was last updated.\"),\n json_schema: z.record(z.string(), z.unknown()).describe(\"JSON Schema object defining template variables.\"),\n webhook_url: z.string().describe(\"Webhook URL if configured.\").nullable().optional(),\n}).describe(\"Response model for a newly created template.\");\n\nexport const supportivekoalaCreateTemplate = action(\"SUPPORTIVEKOALA_CREATE_TEMPLATE\", {\n slug: \"supportivekoala-create-template\",\n name: \"Create Template\",\n description: \"Tool to create a new template for image generation. Use after gathering template details.\",\n input: SupportivekoalaCreateTemplateInput,\n output: SupportivekoalaCreateTemplateOutput,\n});\n"],"mappings":";;AAoBA,MAAa,gCAAgC,OAAO,mCAAmC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApB8D,EAAE,OAAO;EACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;EACjD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;EACxE,aAAa,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iEAAiE;EACzH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC/G,CAAC,CAAC,CAAC,SAAS,wDAeH;CACP,QAf+D,EAAE,OAAO;EACxE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;EAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;EACjD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;EAC3D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;EAC9E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;EACnF,aAAa,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iDAAiD;EACzG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_create_image = require("./create-image.cjs");
|
|
3
|
+
const require_create_template = require("./create-template.cjs");
|
|
4
|
+
const require_list_images = require("./list-images.cjs");
|
|
5
|
+
const require_list_templates = require("./list-templates.cjs");
|
|
6
|
+
const require_register_user = require("./register-user.cjs");
|
|
7
|
+
const require_retrieve_template = require("./retrieve-template.cjs");
|
|
8
|
+
exports.supportivekoalaCreateImage = require_create_image.supportivekoalaCreateImage;
|
|
9
|
+
exports.supportivekoalaCreateTemplate = require_create_template.supportivekoalaCreateTemplate;
|
|
10
|
+
exports.supportivekoalaListImages = require_list_images.supportivekoalaListImages;
|
|
11
|
+
exports.supportivekoalaListTemplates = require_list_templates.supportivekoalaListTemplates;
|
|
12
|
+
exports.supportivekoalaRegisterUser = require_register_user.supportivekoalaRegisterUser;
|
|
13
|
+
exports.supportivekoalaRetrieveTemplate = require_retrieve_template.supportivekoalaRetrieveTemplate;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { supportivekoalaCreateImage } from "./create-image.cjs";
|
|
2
|
+
import { supportivekoalaCreateTemplate } from "./create-template.cjs";
|
|
3
|
+
import { supportivekoalaListImages } from "./list-images.cjs";
|
|
4
|
+
import { supportivekoalaListTemplates } from "./list-templates.cjs";
|
|
5
|
+
import { supportivekoalaRegisterUser } from "./register-user.cjs";
|
|
6
|
+
import { supportivekoalaRetrieveTemplate } from "./retrieve-template.cjs";
|
|
7
|
+
export { supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { supportivekoalaCreateImage } from "./create-image.mjs";
|
|
2
|
+
import { supportivekoalaCreateTemplate } from "./create-template.mjs";
|
|
3
|
+
import { supportivekoalaListImages } from "./list-images.mjs";
|
|
4
|
+
import { supportivekoalaListTemplates } from "./list-templates.mjs";
|
|
5
|
+
import { supportivekoalaRegisterUser } from "./register-user.mjs";
|
|
6
|
+
import { supportivekoalaRetrieveTemplate } from "./retrieve-template.mjs";
|
|
7
|
+
export { supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { supportivekoalaCreateImage } from "./create-image.mjs";
|
|
2
|
+
import { supportivekoalaCreateTemplate } from "./create-template.mjs";
|
|
3
|
+
import { supportivekoalaListImages } from "./list-images.mjs";
|
|
4
|
+
import { supportivekoalaListTemplates } from "./list-templates.mjs";
|
|
5
|
+
import { supportivekoalaRegisterUser } from "./register-user.mjs";
|
|
6
|
+
import { supportivekoalaRetrieveTemplate } from "./retrieve-template.mjs";
|
|
7
|
+
export { supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-images.ts
|
|
4
|
+
const SupportivekoalaListImagesInput = zod.z.object({}).describe("No parameters required for listing images.");
|
|
5
|
+
const SupportivekoalaListImages_ImageSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier of the image"),
|
|
7
|
+
url: zod.z.string().describe("Direct URL to the image"),
|
|
8
|
+
metadata: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Related metadata for the image"),
|
|
9
|
+
createdAt: zod.z.string().describe("Timestamp when the image was created"),
|
|
10
|
+
templateId: zod.z.string().describe("Template ID associated with the image")
|
|
11
|
+
});
|
|
12
|
+
const SupportivekoalaListImagesOutput = zod.z.object({ images: zod.z.array(SupportivekoalaListImages_ImageSchema).describe("List of images for the authenticated user") });
|
|
13
|
+
const supportivekoalaListImages = require_action.action("SUPPORTIVEKOALA_LIST_IMAGES", {
|
|
14
|
+
slug: "supportivekoala-list-images",
|
|
15
|
+
name: "List Images",
|
|
16
|
+
description: "Tool to list images associated with the authenticated user. Use after confirming authentication.",
|
|
17
|
+
input: SupportivekoalaListImagesInput,
|
|
18
|
+
output: SupportivekoalaListImagesOutput
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
exports.supportivekoalaListImages = supportivekoalaListImages;
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=list-images.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-images.cjs","names":["z","action"],"sources":["../../src/actions/list-images.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaListImagesInput: z.ZodTypeAny = z.object({}).describe(\"No parameters required for listing images.\");\nconst SupportivekoalaListImages_ImageSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the image\"),\n url: z.string().describe(\"Direct URL to the image\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Related metadata for the image\"),\n createdAt: z.string().describe(\"Timestamp when the image was created\"),\n templateId: z.string().describe(\"Template ID associated with the image\"),\n});\nexport const SupportivekoalaListImagesOutput: z.ZodTypeAny = z.object({\n images: z.array(SupportivekoalaListImages_ImageSchema).describe(\"List of images for the authenticated user\"),\n});\n\nexport const supportivekoalaListImages = action(\"SUPPORTIVEKOALA_LIST_IMAGES\", {\n slug: \"supportivekoala-list-images\",\n name: \"List Images\",\n description: \"Tool to list images associated with the authenticated user. Use after confirming authentication.\",\n input: SupportivekoalaListImagesInput,\n output: SupportivekoalaListImagesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAC9H,MAAM,wCAAsDA,IAAAA,EAAE,OAAO;CACnE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CAClD,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC;CACrF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CACrE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC;AACzE,CAAC;AACD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO,EACpE,QAAQA,IAAAA,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,2CAA2C,EAC7G,CAAC;AAED,MAAa,4BAA4BC,eAAAA,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-images.d.ts
|
|
4
|
+
declare const SupportivekoalaListImagesInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaListImagesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaListImages: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaListImages };
|
|
9
|
+
//# sourceMappingURL=list-images.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-images.d.cts","names":[],"sources":["../../src/actions/list-images.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAAgF;AAAA,cAQlH,+BAAA,EAAiC,CAAA,CAAE,UAE9C;AAAA,cAEW,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-images.d.ts
|
|
4
|
+
declare const SupportivekoalaListImagesInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaListImagesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaListImages: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaListImages };
|
|
9
|
+
//# sourceMappingURL=list-images.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-images.d.mts","names":[],"sources":["../../src/actions/list-images.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAAgF;AAAA,cAQlH,+BAAA,EAAiC,CAAA,CAAE,UAE9C;AAAA,cAEW,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/list-images.ts
|
|
4
|
+
const SupportivekoalaListImagesInput = z.object({}).describe("No parameters required for listing images.");
|
|
5
|
+
const SupportivekoalaListImages_ImageSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique identifier of the image"),
|
|
7
|
+
url: z.string().describe("Direct URL to the image"),
|
|
8
|
+
metadata: z.record(z.string(), z.unknown()).describe("Related metadata for the image"),
|
|
9
|
+
createdAt: z.string().describe("Timestamp when the image was created"),
|
|
10
|
+
templateId: z.string().describe("Template ID associated with the image")
|
|
11
|
+
});
|
|
12
|
+
const supportivekoalaListImages = action("SUPPORTIVEKOALA_LIST_IMAGES", {
|
|
13
|
+
slug: "supportivekoala-list-images",
|
|
14
|
+
name: "List Images",
|
|
15
|
+
description: "Tool to list images associated with the authenticated user. Use after confirming authentication.",
|
|
16
|
+
input: SupportivekoalaListImagesInput,
|
|
17
|
+
output: z.object({ images: z.array(SupportivekoalaListImages_ImageSchema).describe("List of images for the authenticated user") })
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { supportivekoalaListImages };
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=list-images.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-images.mjs","names":[],"sources":["../../src/actions/list-images.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaListImagesInput: z.ZodTypeAny = z.object({}).describe(\"No parameters required for listing images.\");\nconst SupportivekoalaListImages_ImageSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the image\"),\n url: z.string().describe(\"Direct URL to the image\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Related metadata for the image\"),\n createdAt: z.string().describe(\"Timestamp when the image was created\"),\n templateId: z.string().describe(\"Template ID associated with the image\"),\n});\nexport const SupportivekoalaListImagesOutput: z.ZodTypeAny = z.object({\n images: z.array(SupportivekoalaListImages_ImageSchema).describe(\"List of images for the authenticated user\"),\n});\n\nexport const supportivekoalaListImages = action(\"SUPPORTIVEKOALA_LIST_IMAGES\", {\n slug: \"supportivekoala-list-images\",\n name: \"List Images\",\n description: \"Tool to list images associated with the authenticated user. Use after confirming authentication.\",\n input: SupportivekoalaListImagesInput,\n output: SupportivekoalaListImagesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAC9H,MAAM,wCAAsD,EAAE,OAAO;CACnE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CAClD,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC;CACrF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC;AACzE,CAAC;AAKD,MAAa,4BAA4B,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT2D,EAAE,OAAO,EACpE,QAAQ,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,2CAA2C,EAC7G,CAOU;AACV,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-templates.ts
|
|
4
|
+
const SupportivekoalaListTemplatesInput = zod.z.object({}).describe("Request model for LIST_TEMPLATES action.\nNo parameters are required.");
|
|
5
|
+
const SupportivekoalaListTemplates_TemplateSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier for the template"),
|
|
7
|
+
name: zod.z.string().describe("Name of the template"),
|
|
8
|
+
created_at: zod.z.string().describe("Date and time when the template was created (ISO 8601)"),
|
|
9
|
+
description: zod.z.string().describe("Description of the template"),
|
|
10
|
+
preview_url: zod.z.string().describe("URL to preview the template")
|
|
11
|
+
});
|
|
12
|
+
const SupportivekoalaListTemplatesOutput = zod.z.object({ templates: zod.z.array(SupportivekoalaListTemplates_TemplateSchema).describe("List of template objects") });
|
|
13
|
+
const supportivekoalaListTemplates = require_action.action("SUPPORTIVEKOALA_LIST_TEMPLATES", {
|
|
14
|
+
slug: "supportivekoala-list-templates",
|
|
15
|
+
name: "List Templates",
|
|
16
|
+
description: "Tool to retrieve all templates. Use when you need to list all templates for the authenticated user.",
|
|
17
|
+
input: SupportivekoalaListTemplatesInput,
|
|
18
|
+
output: SupportivekoalaListTemplatesOutput
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
exports.supportivekoalaListTemplates = supportivekoalaListTemplates;
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=list-templates.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaListTemplatesInput: z.ZodTypeAny = z.object({}).describe(\"Request model for LIST_TEMPLATES action.\\nNo parameters are required.\");\nconst SupportivekoalaListTemplates_TemplateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the template\"),\n name: z.string().describe(\"Name of the template\"),\n created_at: z.string().describe(\"Date and time when the template was created (ISO 8601)\"),\n description: z.string().describe(\"Description of the template\"),\n preview_url: z.string().describe(\"URL to preview the template\"),\n});\nexport const SupportivekoalaListTemplatesOutput: z.ZodTypeAny = z.object({\n templates: z.array(SupportivekoalaListTemplates_TemplateSchema).describe(\"List of template objects\"),\n});\n\nexport const supportivekoalaListTemplates = action(\"SUPPORTIVEKOALA_LIST_TEMPLATES\", {\n slug: \"supportivekoala-list-templates\",\n name: \"List Templates\",\n description: \"Tool to retrieve all templates. Use when you need to list all templates for the authenticated user.\",\n input: SupportivekoalaListTemplatesInput,\n output: SupportivekoalaListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uEAAuE;AAC5J,MAAM,8CAA4DA,IAAAA,EAAE,OAAO;CACzE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC9D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;AAChE,CAAC;AACD,MAAa,qCAAmDA,IAAAA,EAAE,OAAO,EACvE,WAAWA,IAAAA,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,0BAA0B,EACrG,CAAC;AAED,MAAa,+BAA+BC,eAAAA,OAAO,kCAAkC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-templates.d.ts
|
|
4
|
+
declare const SupportivekoalaListTemplatesInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaListTemplatesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaListTemplates };
|
|
9
|
+
//# sourceMappingURL=list-templates.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAA2G;AAAA,cAQhJ,kCAAA,EAAoC,CAAA,CAAE,UAEjD;AAAA,cAEW,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-templates.d.ts
|
|
4
|
+
declare const SupportivekoalaListTemplatesInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaListTemplatesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaListTemplates };
|
|
9
|
+
//# sourceMappingURL=list-templates.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAA2G;AAAA,cAQhJ,kCAAA,EAAoC,CAAA,CAAE,UAEjD;AAAA,cAEW,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/list-templates.ts
|
|
4
|
+
const SupportivekoalaListTemplatesInput = z.object({}).describe("Request model for LIST_TEMPLATES action.\nNo parameters are required.");
|
|
5
|
+
const SupportivekoalaListTemplates_TemplateSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique identifier for the template"),
|
|
7
|
+
name: z.string().describe("Name of the template"),
|
|
8
|
+
created_at: z.string().describe("Date and time when the template was created (ISO 8601)"),
|
|
9
|
+
description: z.string().describe("Description of the template"),
|
|
10
|
+
preview_url: z.string().describe("URL to preview the template")
|
|
11
|
+
});
|
|
12
|
+
const supportivekoalaListTemplates = action("SUPPORTIVEKOALA_LIST_TEMPLATES", {
|
|
13
|
+
slug: "supportivekoala-list-templates",
|
|
14
|
+
name: "List Templates",
|
|
15
|
+
description: "Tool to retrieve all templates. Use when you need to list all templates for the authenticated user.",
|
|
16
|
+
input: SupportivekoalaListTemplatesInput,
|
|
17
|
+
output: z.object({ templates: z.array(SupportivekoalaListTemplates_TemplateSchema).describe("List of template objects") })
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
export { supportivekoalaListTemplates };
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=list-templates.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaListTemplatesInput: z.ZodTypeAny = z.object({}).describe(\"Request model for LIST_TEMPLATES action.\\nNo parameters are required.\");\nconst SupportivekoalaListTemplates_TemplateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the template\"),\n name: z.string().describe(\"Name of the template\"),\n created_at: z.string().describe(\"Date and time when the template was created (ISO 8601)\"),\n description: z.string().describe(\"Description of the template\"),\n preview_url: z.string().describe(\"URL to preview the template\"),\n});\nexport const SupportivekoalaListTemplatesOutput: z.ZodTypeAny = z.object({\n templates: z.array(SupportivekoalaListTemplates_TemplateSchema).describe(\"List of template objects\"),\n});\n\nexport const supportivekoalaListTemplates = action(\"SUPPORTIVEKOALA_LIST_TEMPLATES\", {\n slug: \"supportivekoala-list-templates\",\n name: \"List Templates\",\n description: \"Tool to retrieve all templates. Use when you need to list all templates for the authenticated user.\",\n input: SupportivekoalaListTemplatesInput,\n output: SupportivekoalaListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uEAAuE;AAC5J,MAAM,8CAA4D,EAAE,OAAO;CACzE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC9D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;AAChE,CAAC;AAKD,MAAa,+BAA+B,OAAO,kCAAkC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT8D,EAAE,OAAO,EACvE,WAAW,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,0BAA0B,EACrG,CAOU;AACV,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/register-user.ts
|
|
4
|
+
const SupportivekoalaRegisterUserInput = zod.z.object({
|
|
5
|
+
email: zod.z.string().describe("The email address of the user. Must be a valid email format."),
|
|
6
|
+
password: zod.z.string().describe("The password for the user account. Choose a strong password.")
|
|
7
|
+
}).describe("Request model for registering a new user account.");
|
|
8
|
+
const SupportivekoalaRegisterUserOutput = zod.z.object({
|
|
9
|
+
id: zod.z.string().describe("Unique identifier for the newly created user."),
|
|
10
|
+
email: zod.z.string().describe("The email address of the newly created user."),
|
|
11
|
+
created_at: zod.z.string().describe("Timestamp when the user was created (ISO 8601 format).")
|
|
12
|
+
}).describe("Response model for the newly registered user.");
|
|
13
|
+
const supportivekoalaRegisterUser = require_action.action("SUPPORTIVEKOALA_REGISTER_USER", {
|
|
14
|
+
slug: "supportivekoala-register-user",
|
|
15
|
+
name: "Register User",
|
|
16
|
+
description: "Tool to register a new user account. Use after collecting valid user credentials.",
|
|
17
|
+
input: SupportivekoalaRegisterUserInput,
|
|
18
|
+
output: SupportivekoalaRegisterUserOutput
|
|
19
|
+
});
|
|
20
|
+
//#endregion
|
|
21
|
+
exports.supportivekoalaRegisterUser = supportivekoalaRegisterUser;
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=register-user.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"register-user.cjs","names":["z","action"],"sources":["../../src/actions/register-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaRegisterUserInput: z.ZodTypeAny = z.object({\n email: z.string().describe(\"The email address of the user. Must be a valid email format.\"),\n password: z.string().describe(\"The password for the user account. Choose a strong password.\"),\n}).describe(\"Request model for registering a new user account.\");\nexport const SupportivekoalaRegisterUserOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the newly created user.\"),\n email: z.string().describe(\"The email address of the newly created user.\"),\n created_at: z.string().describe(\"Timestamp when the user was created (ISO 8601 format).\"),\n}).describe(\"Response model for the newly registered user.\");\n\nexport const supportivekoalaRegisterUser = action(\"SUPPORTIVEKOALA_REGISTER_USER\", {\n slug: \"supportivekoala-register-user\",\n name: \"Register User\",\n description: \"Tool to register a new user account. Use after collecting valid user credentials.\",\n input: SupportivekoalaRegisterUserInput,\n output: SupportivekoalaRegisterUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAiDA,IAAAA,EAAE,OAAO;CACrE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CACzF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;AAC9F,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC/D,MAAa,oCAAkDA,IAAAA,EAAE,OAAO;CACtE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CACvE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CACzE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;AAC1F,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAE3D,MAAa,8BAA8BC,eAAAA,OAAO,iCAAiC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/register-user.d.ts
|
|
4
|
+
declare const SupportivekoalaRegisterUserInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaRegisterUserOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaRegisterUser: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaRegisterUser };
|
|
9
|
+
//# sourceMappingURL=register-user.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"register-user.d.cts","names":[],"sources":["../../src/actions/register-user.ts"],"mappings":";;;cAIa,gCAAA,EAAkC,CAAA,CAAE,UAGe;AAAA,cACnD,iCAAA,EAAmC,CAAA,CAAE,UAIU;AAAA,cAE/C,2BAAA,gCAA2B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/register-user.d.ts
|
|
4
|
+
declare const SupportivekoalaRegisterUserInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaRegisterUserOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaRegisterUser: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaRegisterUser };
|
|
9
|
+
//# sourceMappingURL=register-user.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"register-user.d.mts","names":[],"sources":["../../src/actions/register-user.ts"],"mappings":";;;cAIa,gCAAA,EAAkC,CAAA,CAAE,UAGe;AAAA,cACnD,iCAAA,EAAmC,CAAA,CAAE,UAIU;AAAA,cAE/C,2BAAA,gCAA2B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const supportivekoalaRegisterUser = action("SUPPORTIVEKOALA_REGISTER_USER", {
|
|
4
|
+
slug: "supportivekoala-register-user",
|
|
5
|
+
name: "Register User",
|
|
6
|
+
description: "Tool to register a new user account. Use after collecting valid user credentials.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
email: z.string().describe("The email address of the user. Must be a valid email format."),
|
|
9
|
+
password: z.string().describe("The password for the user account. Choose a strong password.")
|
|
10
|
+
}).describe("Request model for registering a new user account."),
|
|
11
|
+
output: z.object({
|
|
12
|
+
id: z.string().describe("Unique identifier for the newly created user."),
|
|
13
|
+
email: z.string().describe("The email address of the newly created user."),
|
|
14
|
+
created_at: z.string().describe("Timestamp when the user was created (ISO 8601 format).")
|
|
15
|
+
}).describe("Response model for the newly registered user.")
|
|
16
|
+
});
|
|
17
|
+
//#endregion
|
|
18
|
+
export { supportivekoalaRegisterUser };
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=register-user.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"register-user.mjs","names":[],"sources":["../../src/actions/register-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaRegisterUserInput: z.ZodTypeAny = z.object({\n email: z.string().describe(\"The email address of the user. Must be a valid email format.\"),\n password: z.string().describe(\"The password for the user account. Choose a strong password.\"),\n}).describe(\"Request model for registering a new user account.\");\nexport const SupportivekoalaRegisterUserOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the newly created user.\"),\n email: z.string().describe(\"The email address of the newly created user.\"),\n created_at: z.string().describe(\"Timestamp when the user was created (ISO 8601 format).\"),\n}).describe(\"Response model for the newly registered user.\");\n\nexport const supportivekoalaRegisterUser = action(\"SUPPORTIVEKOALA_REGISTER_USER\", {\n slug: \"supportivekoala-register-user\",\n name: \"Register User\",\n description: \"Tool to register a new user account. Use after collecting valid user credentials.\",\n input: SupportivekoalaRegisterUserInput,\n output: SupportivekoalaRegisterUserOutput,\n});\n"],"mappings":";;AAcA,MAAa,8BAA8B,OAAO,iCAAiC;CACjF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd4D,EAAE,OAAO;EACrE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EACzF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CAC9F,CAAC,CAAC,CAAC,SAAS,mDAWH;CACP,QAX6D,EAAE,OAAO;EACtE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;EACvE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;EACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;CAC1F,CAAC,CAAC,CAAC,SAAS,+CAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/retrieve-template.ts
|
|
4
|
+
const SupportivekoalaRetrieveTemplateInput = zod.z.object({ id: zod.z.string().describe("The unique ID of the template to retrieve.") }).describe("Request model for retrieving a template by its ID.");
|
|
5
|
+
const SupportivekoalaRetrieveTemplateOutput = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("The unique ID of the template."),
|
|
7
|
+
name: zod.z.string().describe("The name of the template."),
|
|
8
|
+
content: zod.z.record(zod.z.string(), zod.z.unknown()).describe("The content or structure of the template as a JSON object."),
|
|
9
|
+
created_at: zod.z.string().describe("ISO 8601 timestamp when the template was created."),
|
|
10
|
+
updated_at: zod.z.string().describe("ISO 8601 timestamp of the last update to the template.")
|
|
11
|
+
}).describe("Response model for a retrieved template.");
|
|
12
|
+
const supportivekoalaRetrieveTemplate = require_action.action("SUPPORTIVEKOALA_RETRIEVE_TEMPLATE", {
|
|
13
|
+
slug: "supportivekoala-retrieve-template",
|
|
14
|
+
name: "Retrieve Template by ID",
|
|
15
|
+
description: "Tool to retrieve a template by ID. Use when you have a valid template ID and need full template details. Use after confirming this detail.",
|
|
16
|
+
input: SupportivekoalaRetrieveTemplateInput,
|
|
17
|
+
output: SupportivekoalaRetrieveTemplateOutput
|
|
18
|
+
});
|
|
19
|
+
//#endregion
|
|
20
|
+
exports.supportivekoalaRetrieveTemplate = supportivekoalaRetrieveTemplate;
|
|
21
|
+
|
|
22
|
+
//# sourceMappingURL=retrieve-template.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-template.cjs","names":["z","action"],"sources":["../../src/actions/retrieve-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaRetrieveTemplateInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique ID of the template to retrieve.\"),\n}).describe(\"Request model for retrieving a template by its ID.\");\nexport const SupportivekoalaRetrieveTemplateOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique ID of the template.\"),\n name: z.string().describe(\"The name of the template.\"),\n content: z.record(z.string(), z.unknown()).describe(\"The content or structure of the template as a JSON object.\"),\n created_at: z.string().describe(\"ISO 8601 timestamp when the template was created.\"),\n updated_at: z.string().describe(\"ISO 8601 timestamp of the last update to the template.\"),\n}).describe(\"Response model for a retrieved template.\");\n\nexport const supportivekoalaRetrieveTemplate = action(\"SUPPORTIVEKOALA_RETRIEVE_TEMPLATE\", {\n slug: \"supportivekoala-retrieve-template\",\n name: \"Retrieve Template by ID\",\n description: \"Tool to retrieve a template by ID. Use when you have a valid template ID and need full template details. Use after confirming this detail.\",\n input: SupportivekoalaRetrieveTemplateInput,\n output: SupportivekoalaRetrieveTemplateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAqDA,IAAAA,EAAE,OAAO,EACzE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EACtE,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,wCAAsDA,IAAAA,EAAE,OAAO;CAC1E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,4DAA4D;CAChH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;CACnF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;AAC1F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,kCAAkCC,eAAAA,OAAO,qCAAqC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/retrieve-template.d.ts
|
|
4
|
+
declare const SupportivekoalaRetrieveTemplateInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaRetrieveTemplateOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaRetrieveTemplate: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaRetrieveTemplate };
|
|
9
|
+
//# sourceMappingURL=retrieve-template.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-template.d.cts","names":[],"sources":["../../src/actions/retrieve-template.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAEY;AAAA,cACpD,qCAAA,EAAuC,CAAA,CAAE,UAMC;AAAA,cAE1C,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/retrieve-template.d.ts
|
|
4
|
+
declare const SupportivekoalaRetrieveTemplateInput: z.ZodTypeAny;
|
|
5
|
+
declare const SupportivekoalaRetrieveTemplateOutput: z.ZodTypeAny;
|
|
6
|
+
declare const supportivekoalaRetrieveTemplate: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { supportivekoalaRetrieveTemplate };
|
|
9
|
+
//# sourceMappingURL=retrieve-template.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-template.d.mts","names":[],"sources":["../../src/actions/retrieve-template.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAEY;AAAA,cACpD,qCAAA,EAAuC,CAAA,CAAE,UAMC;AAAA,cAE1C,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const supportivekoalaRetrieveTemplate = action("SUPPORTIVEKOALA_RETRIEVE_TEMPLATE", {
|
|
4
|
+
slug: "supportivekoala-retrieve-template",
|
|
5
|
+
name: "Retrieve Template by ID",
|
|
6
|
+
description: "Tool to retrieve a template by ID. Use when you have a valid template ID and need full template details. Use after confirming this detail.",
|
|
7
|
+
input: z.object({ id: z.string().describe("The unique ID of the template to retrieve.") }).describe("Request model for retrieving a template by its ID."),
|
|
8
|
+
output: z.object({
|
|
9
|
+
id: z.string().describe("The unique ID of the template."),
|
|
10
|
+
name: z.string().describe("The name of the template."),
|
|
11
|
+
content: z.record(z.string(), z.unknown()).describe("The content or structure of the template as a JSON object."),
|
|
12
|
+
created_at: z.string().describe("ISO 8601 timestamp when the template was created."),
|
|
13
|
+
updated_at: z.string().describe("ISO 8601 timestamp of the last update to the template.")
|
|
14
|
+
}).describe("Response model for a retrieved template.")
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { supportivekoalaRetrieveTemplate };
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=retrieve-template.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"retrieve-template.mjs","names":[],"sources":["../../src/actions/retrieve-template.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SupportivekoalaRetrieveTemplateInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique ID of the template to retrieve.\"),\n}).describe(\"Request model for retrieving a template by its ID.\");\nexport const SupportivekoalaRetrieveTemplateOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The unique ID of the template.\"),\n name: z.string().describe(\"The name of the template.\"),\n content: z.record(z.string(), z.unknown()).describe(\"The content or structure of the template as a JSON object.\"),\n created_at: z.string().describe(\"ISO 8601 timestamp when the template was created.\"),\n updated_at: z.string().describe(\"ISO 8601 timestamp of the last update to the template.\"),\n}).describe(\"Response model for a retrieved template.\");\n\nexport const supportivekoalaRetrieveTemplate = action(\"SUPPORTIVEKOALA_RETRIEVE_TEMPLATE\", {\n slug: \"supportivekoala-retrieve-template\",\n name: \"Retrieve Template by ID\",\n description: \"Tool to retrieve a template by ID. Use when you have a valid template ID and need full template details. Use after confirming this detail.\",\n input: SupportivekoalaRetrieveTemplateInput,\n output: SupportivekoalaRetrieveTemplateOutput,\n});\n"],"mappings":";;AAeA,MAAa,kCAAkC,OAAO,qCAAqC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfgE,EAAE,OAAO,EACzE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,EACtE,CAAC,CAAC,CAAC,SAAS,oDAaH;CACP,QAbiE,EAAE,OAAO;EAC1E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;EACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;EACrD,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,4DAA4D;EAChH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;EACnF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD;CAC1F,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
|
package/dist/app.cjs
ADDED
package/dist/app.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const supportivekoala = defineApp({\n slug: \"supportivekoala\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,mBAAA,uCAAA,CAAA,CAAA,UAAA,CAA4B;CACvC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/app.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,eAAA,6BAAe,GAAA,+BAAA,UAAA"}
|
package/dist/app.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,eAAA,6BAAe,GAAA,+BAAA,UAAA"}
|
package/dist/app.mjs
ADDED
package/dist/app.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const supportivekoala = defineApp({\n slug: \"supportivekoala\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,kBAAkB,UAAU;CACvC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/catalog.cjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const supportivekoalaCatalog = {
|
|
4
|
+
"slug": "supportivekoala",
|
|
5
|
+
"name": "Supportivekoala",
|
|
6
|
+
"description": "Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.",
|
|
7
|
+
"category": "Images & Design",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/supportivekoala",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.supportivekoalaCatalog = supportivekoalaCatalog;
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const supportivekoalaCatalog = {\n \"slug\": \"supportivekoala\",\n \"name\": \"Supportivekoala\",\n \"description\": \"Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/supportivekoala\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const supportivekoalaCatalog: {
|
|
4
|
+
readonly slug: "supportivekoala";
|
|
5
|
+
readonly name: "Supportivekoala";
|
|
6
|
+
readonly description: "Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.";
|
|
7
|
+
readonly category: "Images & Design";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/supportivekoala";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { supportivekoalaCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,sBAAA;EAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const supportivekoalaCatalog: {
|
|
4
|
+
readonly slug: "supportivekoala";
|
|
5
|
+
readonly name: "Supportivekoala";
|
|
6
|
+
readonly description: "Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.";
|
|
7
|
+
readonly category: "Images & Design";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/supportivekoala";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { supportivekoalaCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,sBAAA;EAAA"}
|
package/dist/catalog.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const supportivekoalaCatalog = {
|
|
4
|
+
"slug": "supportivekoala",
|
|
5
|
+
"name": "Supportivekoala",
|
|
6
|
+
"description": "Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.",
|
|
7
|
+
"category": "Images & Design",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/supportivekoala",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { supportivekoalaCatalog };
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const supportivekoalaCatalog = {\n \"slug\": \"supportivekoala\",\n \"name\": \"Supportivekoala\",\n \"description\": \"Supportivekoala is a platform that automates image generation using customizable templates, enabling users to create visual content programmatically through API integration.\",\n \"category\": \"Images & Design\",\n \"logo\": \"https://logos.composio.dev/api/supportivekoala\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
package/dist/execute.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "supportivekoala";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeSupportivekoalaTool(tool, args) {
|
|
7
|
+
const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
exports.executeSupportivekoalaTool = executeSupportivekoalaTool;
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"supportivekoala\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSupportivekoalaTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,2BACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/execute.mjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "supportivekoala";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeSupportivekoalaTool(tool, args) {
|
|
7
|
+
const { result } = await createKeystrokeClient().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { executeSupportivekoalaTool };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"supportivekoala\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSupportivekoalaTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,2BACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_app = require("./app.cjs");
|
|
3
|
+
const require_catalog = require("./catalog.cjs");
|
|
4
|
+
const require_create_image = require("./actions/create-image.cjs");
|
|
5
|
+
const require_create_template = require("./actions/create-template.cjs");
|
|
6
|
+
const require_list_images = require("./actions/list-images.cjs");
|
|
7
|
+
const require_list_templates = require("./actions/list-templates.cjs");
|
|
8
|
+
const require_register_user = require("./actions/register-user.cjs");
|
|
9
|
+
const require_retrieve_template = require("./actions/retrieve-template.cjs");
|
|
10
|
+
require("./actions/index.cjs");
|
|
11
|
+
exports.supportivekoala = require_app.supportivekoala;
|
|
12
|
+
exports.supportivekoalaCatalog = require_catalog.supportivekoalaCatalog;
|
|
13
|
+
exports.supportivekoalaCreateImage = require_create_image.supportivekoalaCreateImage;
|
|
14
|
+
exports.supportivekoalaCreateTemplate = require_create_template.supportivekoalaCreateTemplate;
|
|
15
|
+
exports.supportivekoalaListImages = require_list_images.supportivekoalaListImages;
|
|
16
|
+
exports.supportivekoalaListTemplates = require_list_templates.supportivekoalaListTemplates;
|
|
17
|
+
exports.supportivekoalaRegisterUser = require_register_user.supportivekoalaRegisterUser;
|
|
18
|
+
exports.supportivekoalaRetrieveTemplate = require_retrieve_template.supportivekoalaRetrieveTemplate;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { supportivekoalaCreateImage } from "./actions/create-image.cjs";
|
|
2
|
+
import { supportivekoalaCreateTemplate } from "./actions/create-template.cjs";
|
|
3
|
+
import { supportivekoalaListImages } from "./actions/list-images.cjs";
|
|
4
|
+
import { supportivekoalaListTemplates } from "./actions/list-templates.cjs";
|
|
5
|
+
import { supportivekoalaRegisterUser } from "./actions/register-user.cjs";
|
|
6
|
+
import { supportivekoalaRetrieveTemplate } from "./actions/retrieve-template.cjs";
|
|
7
|
+
import { supportivekoala } from "./app.cjs";
|
|
8
|
+
import { supportivekoalaCatalog } from "./catalog.cjs";
|
|
9
|
+
export { supportivekoala, supportivekoalaCatalog, supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { supportivekoalaCreateImage } from "./actions/create-image.mjs";
|
|
2
|
+
import { supportivekoalaCreateTemplate } from "./actions/create-template.mjs";
|
|
3
|
+
import { supportivekoalaListImages } from "./actions/list-images.mjs";
|
|
4
|
+
import { supportivekoalaListTemplates } from "./actions/list-templates.mjs";
|
|
5
|
+
import { supportivekoalaRegisterUser } from "./actions/register-user.mjs";
|
|
6
|
+
import { supportivekoalaRetrieveTemplate } from "./actions/retrieve-template.mjs";
|
|
7
|
+
import { supportivekoala } from "./app.mjs";
|
|
8
|
+
import { supportivekoalaCatalog } from "./catalog.mjs";
|
|
9
|
+
export { supportivekoala, supportivekoalaCatalog, supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { supportivekoala } from "./app.mjs";
|
|
2
|
+
import { supportivekoalaCatalog } from "./catalog.mjs";
|
|
3
|
+
import { supportivekoalaCreateImage } from "./actions/create-image.mjs";
|
|
4
|
+
import { supportivekoalaCreateTemplate } from "./actions/create-template.mjs";
|
|
5
|
+
import { supportivekoalaListImages } from "./actions/list-images.mjs";
|
|
6
|
+
import { supportivekoalaListTemplates } from "./actions/list-templates.mjs";
|
|
7
|
+
import { supportivekoalaRegisterUser } from "./actions/register-user.mjs";
|
|
8
|
+
import { supportivekoalaRetrieveTemplate } from "./actions/retrieve-template.mjs";
|
|
9
|
+
import "./actions/index.mjs";
|
|
10
|
+
export { supportivekoala, supportivekoalaCatalog, supportivekoalaCreateImage, supportivekoalaCreateTemplate, supportivekoalaListImages, supportivekoalaListTemplates, supportivekoalaRegisterUser, supportivekoalaRetrieveTemplate };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/supportivekoala",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
11
|
+
"directory": "packages/integrations/supportivekoala"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./actions": {
|
|
28
|
+
"types": "./dist/actions/index.d.mts",
|
|
29
|
+
"import": "./dist/actions/index.mjs",
|
|
30
|
+
"require": "./dist/actions/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@keystrokehq/keystroke": "^0.1.4",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@keystrokehq/keystroke": "link:../../keystroke",
|
|
39
|
+
"@types/node": "^25.9.1",
|
|
40
|
+
"tsdown": "^0.22.0",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"dev": "tsdown --watch --no-clean",
|
|
47
|
+
"typecheck": "tsc --noEmit"
|
|
48
|
+
}
|
|
49
|
+
}
|