@keystrokehq/owl_protocol 0.1.0 → 0.1.2
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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/deploy-collection.cjs +4 -4
- package/dist/actions/deploy-collection.cjs.map +1 -1
- package/dist/actions/deploy-collection.d.cts +24 -3
- package/dist/actions/deploy-collection.d.cts.map +1 -1
- package/dist/actions/deploy-collection.d.mts +24 -3
- package/dist/actions/deploy-collection.d.mts.map +1 -1
- package/dist/actions/deploy-collection.mjs +4 -4
- package/dist/actions/deploy-collection.mjs.map +1 -1
- package/dist/actions/get-project-details.cjs +5 -5
- package/dist/actions/get-project-details.cjs.map +1 -1
- package/dist/actions/get-project-details.d.cts +10 -3
- package/dist/actions/get-project-details.d.cts.map +1 -1
- package/dist/actions/get-project-details.d.mts +10 -3
- package/dist/actions/get-project-details.d.mts.map +1 -1
- package/dist/actions/get-project-details.mjs +5 -5
- package/dist/actions/get-project-details.mjs.map +1 -1
- package/dist/actions/list-projects.cjs +4 -4
- package/dist/actions/list-projects.cjs.map +1 -1
- package/dist/actions/list-projects.d.cts +11 -3
- package/dist/actions/list-projects.d.cts.map +1 -1
- package/dist/actions/list-projects.d.mts +11 -3
- package/dist/actions/list-projects.d.mts.map +1 -1
- package/dist/actions/list-projects.mjs +4 -4
- package/dist/actions/list-projects.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["owlProtocol","executeOwlProtocolTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } 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:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["owlProtocol","executeOwlProtocolTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } 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<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return owlProtocol.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeOwlProtocolTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,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,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } 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:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } 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<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return owlProtocol.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeOwlProtocolTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
|
@@ -16,10 +16,10 @@ const OwlProtocolDeployCollectionInput = zod.z.object({
|
|
|
16
16
|
contractName: zod.z.string().describe("Name of the contract to deploy.")
|
|
17
17
|
});
|
|
18
18
|
const OwlProtocolDeployCollectionOutput = zod.z.object({
|
|
19
|
-
status: zod.z.string().describe("Status message of the deployment."),
|
|
20
|
-
address: zod.z.string().describe("Deployed contract address."),
|
|
21
|
-
chainId: zod.z.number().int().describe("Blockchain network chain ID."),
|
|
22
|
-
transactionHash: zod.z.string().describe("Transaction hash of the deployment.")
|
|
19
|
+
status: zod.z.string().describe("Status message of the deployment.").nullable(),
|
|
20
|
+
address: zod.z.string().describe("Deployed contract address.").nullable(),
|
|
21
|
+
chainId: zod.z.number().int().describe("Blockchain network chain ID.").nullable(),
|
|
22
|
+
transactionHash: zod.z.string().describe("Transaction hash of the deployment.").nullable()
|
|
23
23
|
});
|
|
24
24
|
const owlProtocolDeployCollection = require_action.action("OWL_PROTOCOL_DEPLOY_COLLECTION", {
|
|
25
25
|
slug: "owl_protocol-deploy-collection",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy-collection.cjs","names":["z","action"],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput
|
|
1
|
+
{"version":3,"file":"deploy-collection.cjs","names":["z","action"],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput = z.object({\n args: z.array(z.union([z.string(), z.number().int(), z.boolean(), z.number()])).describe(\"Constructor arguments for the contract.\").optional(),\n name: z.string().describe(\"Display name for the ERC721 collection.\"),\n symbol: z.string().describe(\"Symbol for the collection (token ticker).\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n overrides: z.object({}).describe(\"Transaction parameters to override (e.g., gasLimit).\").optional(),\n projectId: z.string().describe(\"Project identifier.\"),\n contractName: z.string().describe(\"Name of the contract to deploy.\"),\n});\nexport const OwlProtocolDeployCollectionOutput = z.object({\n status: z.string().describe(\"Status message of the deployment.\").nullable(),\n address: z.string().describe(\"Deployed contract address.\").nullable(),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\").nullable(),\n transactionHash: z.string().describe(\"Transaction hash of the deployment.\").nullable(),\n});\n\nexport const owlProtocolDeployCollection = action(\"OWL_PROTOCOL_DEPLOY_COLLECTION\", {\n slug: \"owl_protocol-deploy-collection\",\n name: \"Deploy ERC721 Collection\",\n description: \"Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.\",\n input: OwlProtocolDeployCollectionInput,\n output: OwlProtocolDeployCollectionOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,QAAQ;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CAC7I,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACnE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACvE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CACjE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CACpD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;AACrE,CAAC;AACD,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC1E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACpE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CAC5E,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;AACvF,CAAC;AAED,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,30 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/deploy-collection.d.ts
|
|
4
|
-
declare const OwlProtocolDeployCollectionInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolDeployCollectionInput: z.ZodObject<{
|
|
5
|
+
args: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNumber]>>>;
|
|
6
|
+
name: z.ZodString;
|
|
7
|
+
symbol: z.ZodString;
|
|
8
|
+
chainId: z.ZodNumber;
|
|
9
|
+
overrides: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
10
|
+
projectId: z.ZodString;
|
|
11
|
+
contractName: z.ZodString;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const OwlProtocolDeployCollectionOutput: z.ZodObject<{
|
|
14
|
+
status: z.ZodNullable<z.ZodString>;
|
|
15
|
+
address: z.ZodNullable<z.ZodString>;
|
|
16
|
+
chainId: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
transactionHash: z.ZodNullable<z.ZodString>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const owlProtocolDeployCollection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
name: string;
|
|
21
|
+
symbol: string;
|
|
22
|
+
chainId: number;
|
|
23
|
+
projectId: string;
|
|
24
|
+
contractName: string;
|
|
25
|
+
args?: (string | number | boolean)[] | undefined;
|
|
26
|
+
overrides?: Record<string, never> | undefined;
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
28
|
//#endregion
|
|
8
29
|
export { owlProtocolDeployCollection };
|
|
9
30
|
//# sourceMappingURL=deploy-collection.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy-collection.d.cts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"deploy-collection.d.cts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAShC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAOjC,2BAAA,gCAA2B,wBAAA;;;;;;;cAMtC,MAAA;AAAA"}
|
|
@@ -1,9 +1,30 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/deploy-collection.d.ts
|
|
4
|
-
declare const OwlProtocolDeployCollectionInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolDeployCollectionInput: z.ZodObject<{
|
|
5
|
+
args: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNumber]>>>;
|
|
6
|
+
name: z.ZodString;
|
|
7
|
+
symbol: z.ZodString;
|
|
8
|
+
chainId: z.ZodNumber;
|
|
9
|
+
overrides: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
10
|
+
projectId: z.ZodString;
|
|
11
|
+
contractName: z.ZodString;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const OwlProtocolDeployCollectionOutput: z.ZodObject<{
|
|
14
|
+
status: z.ZodNullable<z.ZodString>;
|
|
15
|
+
address: z.ZodNullable<z.ZodString>;
|
|
16
|
+
chainId: z.ZodNullable<z.ZodNumber>;
|
|
17
|
+
transactionHash: z.ZodNullable<z.ZodString>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
declare const owlProtocolDeployCollection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
|
+
name: string;
|
|
21
|
+
symbol: string;
|
|
22
|
+
chainId: number;
|
|
23
|
+
projectId: string;
|
|
24
|
+
contractName: string;
|
|
25
|
+
args?: (string | number | boolean)[] | undefined;
|
|
26
|
+
overrides?: Record<string, never> | undefined;
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
28
|
//#endregion
|
|
8
29
|
export { owlProtocolDeployCollection };
|
|
9
30
|
//# sourceMappingURL=deploy-collection.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy-collection.d.mts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"deploy-collection.d.mts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAShC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAOjC,2BAAA,gCAA2B,wBAAA;;;;;;;cAMtC,MAAA;AAAA"}
|
|
@@ -19,10 +19,10 @@ const owlProtocolDeployCollection = action("OWL_PROTOCOL_DEPLOY_COLLECTION", {
|
|
|
19
19
|
contractName: z.string().describe("Name of the contract to deploy.")
|
|
20
20
|
}),
|
|
21
21
|
output: z.object({
|
|
22
|
-
status: z.string().describe("Status message of the deployment."),
|
|
23
|
-
address: z.string().describe("Deployed contract address."),
|
|
24
|
-
chainId: z.number().int().describe("Blockchain network chain ID."),
|
|
25
|
-
transactionHash: z.string().describe("Transaction hash of the deployment.")
|
|
22
|
+
status: z.string().describe("Status message of the deployment.").nullable(),
|
|
23
|
+
address: z.string().describe("Deployed contract address.").nullable(),
|
|
24
|
+
chainId: z.number().int().describe("Blockchain network chain ID.").nullable(),
|
|
25
|
+
transactionHash: z.string().describe("Transaction hash of the deployment.").nullable()
|
|
26
26
|
})
|
|
27
27
|
});
|
|
28
28
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy-collection.mjs","names":[],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput
|
|
1
|
+
{"version":3,"file":"deploy-collection.mjs","names":[],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput = z.object({\n args: z.array(z.union([z.string(), z.number().int(), z.boolean(), z.number()])).describe(\"Constructor arguments for the contract.\").optional(),\n name: z.string().describe(\"Display name for the ERC721 collection.\"),\n symbol: z.string().describe(\"Symbol for the collection (token ticker).\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n overrides: z.object({}).describe(\"Transaction parameters to override (e.g., gasLimit).\").optional(),\n projectId: z.string().describe(\"Project identifier.\"),\n contractName: z.string().describe(\"Name of the contract to deploy.\"),\n});\nexport const OwlProtocolDeployCollectionOutput = z.object({\n status: z.string().describe(\"Status message of the deployment.\").nullable(),\n address: z.string().describe(\"Deployed contract address.\").nullable(),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\").nullable(),\n transactionHash: z.string().describe(\"Transaction hash of the deployment.\").nullable(),\n});\n\nexport const owlProtocolDeployCollection = action(\"OWL_PROTOCOL_DEPLOY_COLLECTION\", {\n slug: \"owl_protocol-deploy-collection\",\n name: \"Deploy ERC721 Collection\",\n description: \"Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.\",\n input: OwlProtocolDeployCollectionInput,\n output: OwlProtocolDeployCollectionOutput,\n});\n"],"mappings":";;AAoBA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApB8C,EAAE,OAAO;EACvD,MAAM,EAAE,MAAM,EAAE,MAAM;GAAC,EAAE,OAAO;GAAG,EAAE,OAAO,CAAC,CAAC,IAAI;GAAG,EAAE,QAAQ;GAAG,EAAE,OAAO;EAAC,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;EAC7I,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;EACnE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;EACvE,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;EACjE,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EAClG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;EACpD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACrE,CAYS;CACP,QAZ+C,EAAE,OAAO;EACxD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC1E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACpE,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EAC5E,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACvF,CAOU;AACV,CAAC"}
|
|
@@ -3,11 +3,11 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/get-project-details.ts
|
|
4
4
|
const OwlProtocolGetProjectDetailsInput = zod.z.object({}).describe("Request model for retrieving project details. No parameters are required; the project is identified via the API key header.");
|
|
5
5
|
const OwlProtocolGetProjectDetailsOutput = zod.z.object({
|
|
6
|
-
name: zod.z.string().describe("Name of the project."),
|
|
7
|
-
owner: zod.z.string().describe("Owner of the project."),
|
|
8
|
-
createdAt: zod.z.string().describe("ISO-8601 timestamp when the project was created."),
|
|
9
|
-
projectId: zod.z.string().describe("Unique identifier of the project."),
|
|
10
|
-
updatedAt: zod.z.string().describe("ISO-8601 timestamp when the project was last updated."),
|
|
6
|
+
name: zod.z.string().describe("Name of the project.").nullable(),
|
|
7
|
+
owner: zod.z.string().describe("Owner of the project.").nullable(),
|
|
8
|
+
createdAt: zod.z.string().describe("ISO-8601 timestamp when the project was created.").nullable(),
|
|
9
|
+
projectId: zod.z.string().describe("Unique identifier of the project.").nullable(),
|
|
10
|
+
updatedAt: zod.z.string().describe("ISO-8601 timestamp when the project was last updated.").nullable(),
|
|
11
11
|
description: zod.z.string().describe("Optional description of the project.").nullable().optional()
|
|
12
12
|
}).describe("Response model for GetProjectDetails action.");
|
|
13
13
|
const owlProtocolGetProjectDetails = require_action.action("OWL_PROTOCOL_GET_PROJECT_DETAILS", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-project-details.cjs","names":["z","action"],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput
|
|
1
|
+
{"version":3,"file":"get-project-details.cjs","names":["z","action"],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput = z.object({}).describe(\"Request model for retrieving project details. No parameters are required; the project is identified via the API key header.\");\nexport const OwlProtocolGetProjectDetailsOutput = z.object({\n name: z.string().describe(\"Name of the project.\").nullable(),\n owner: z.string().describe(\"Owner of the project.\").nullable(),\n createdAt: z.string().describe(\"ISO-8601 timestamp when the project was created.\").nullable(),\n projectId: z.string().describe(\"Unique identifier of the project.\").nullable(),\n updatedAt: z.string().describe(\"ISO-8601 timestamp when the project was last updated.\").nullable(),\n description: z.string().describe(\"Optional description of the project.\").nullable().optional(),\n}).describe(\"Response model for GetProjectDetails action.\");\n\nexport const owlProtocolGetProjectDetails = action(\"OWL_PROTOCOL_GET_PROJECT_DETAILS\", {\n slug: \"owl_protocol-get-project-details\",\n name: \"Get Project Details\",\n description: \"Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.\",\n input: OwlProtocolGetProjectDetailsInput,\n output: OwlProtocolGetProjectDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6HAA6H;AACpM,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS;CAC7D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC7E,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;CACjG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-project-details.d.ts
|
|
4
|
-
declare const OwlProtocolGetProjectDetailsInput: z.
|
|
5
|
-
declare const OwlProtocolGetProjectDetailsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolGetProjectDetailsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const OwlProtocolGetProjectDetailsOutput: z.ZodObject<{
|
|
6
|
+
name: z.ZodNullable<z.ZodString>;
|
|
7
|
+
owner: z.ZodNullable<z.ZodString>;
|
|
8
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
9
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
10
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
11
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const owlProtocolGetProjectDetails: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { owlProtocolGetProjectDetails };
|
|
9
16
|
//# sourceMappingURL=get-project-details.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-project-details.d.cts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,
|
|
1
|
+
{"version":3,"file":"get-project-details.d.cts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;cASlC,4BAAA,gCAA4B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-project-details.d.ts
|
|
4
|
-
declare const OwlProtocolGetProjectDetailsInput: z.
|
|
5
|
-
declare const OwlProtocolGetProjectDetailsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolGetProjectDetailsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const OwlProtocolGetProjectDetailsOutput: z.ZodObject<{
|
|
6
|
+
name: z.ZodNullable<z.ZodString>;
|
|
7
|
+
owner: z.ZodNullable<z.ZodString>;
|
|
8
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
9
|
+
projectId: z.ZodNullable<z.ZodString>;
|
|
10
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
11
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const owlProtocolGetProjectDetails: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { owlProtocolGetProjectDetails };
|
|
9
16
|
//# sourceMappingURL=get-project-details.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-project-details.d.mts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,
|
|
1
|
+
{"version":3,"file":"get-project-details.d.mts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;cASlC,4BAAA,gCAA4B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -6,11 +6,11 @@ const owlProtocolGetProjectDetails = action("OWL_PROTOCOL_GET_PROJECT_DETAILS",
|
|
|
6
6
|
description: "Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.",
|
|
7
7
|
input: z.object({}).describe("Request model for retrieving project details. No parameters are required; the project is identified via the API key header."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
name: z.string().describe("Name of the project."),
|
|
10
|
-
owner: z.string().describe("Owner of the project."),
|
|
11
|
-
createdAt: z.string().describe("ISO-8601 timestamp when the project was created."),
|
|
12
|
-
projectId: z.string().describe("Unique identifier of the project."),
|
|
13
|
-
updatedAt: z.string().describe("ISO-8601 timestamp when the project was last updated."),
|
|
9
|
+
name: z.string().describe("Name of the project.").nullable(),
|
|
10
|
+
owner: z.string().describe("Owner of the project.").nullable(),
|
|
11
|
+
createdAt: z.string().describe("ISO-8601 timestamp when the project was created.").nullable(),
|
|
12
|
+
projectId: z.string().describe("Unique identifier of the project.").nullable(),
|
|
13
|
+
updatedAt: z.string().describe("ISO-8601 timestamp when the project was last updated.").nullable(),
|
|
14
14
|
description: z.string().describe("Optional description of the project.").nullable().optional()
|
|
15
15
|
}).describe("Response model for GetProjectDetails action.")
|
|
16
16
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-project-details.mjs","names":[],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput
|
|
1
|
+
{"version":3,"file":"get-project-details.mjs","names":[],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput = z.object({}).describe(\"Request model for retrieving project details. No parameters are required; the project is identified via the API key header.\");\nexport const OwlProtocolGetProjectDetailsOutput = z.object({\n name: z.string().describe(\"Name of the project.\").nullable(),\n owner: z.string().describe(\"Owner of the project.\").nullable(),\n createdAt: z.string().describe(\"ISO-8601 timestamp when the project was created.\").nullable(),\n projectId: z.string().describe(\"Unique identifier of the project.\").nullable(),\n updatedAt: z.string().describe(\"ISO-8601 timestamp when the project was last updated.\").nullable(),\n description: z.string().describe(\"Optional description of the project.\").nullable().optional(),\n}).describe(\"Response model for GetProjectDetails action.\");\n\nexport const owlProtocolGetProjectDetails = action(\"OWL_PROTOCOL_GET_PROJECT_DETAILS\", {\n slug: \"owl_protocol-get-project-details\",\n name: \"Get Project Details\",\n description: \"Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.\",\n input: OwlProtocolGetProjectDetailsInput,\n output: OwlProtocolGetProjectDetailsOutput,\n});\n"],"mappings":";;AAcA,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd+C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6HAc9D;CACP,QAdgD,EAAE,OAAO;EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC3D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS;EAC7D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;EAC5F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC7E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;EACjG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
|
|
@@ -3,10 +3,10 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/list-projects.ts
|
|
4
4
|
const OwlProtocolListProjectsInput = zod.z.object({}).describe("Request model for listing all projects.");
|
|
5
5
|
const OwlProtocolListProjects_ProjectSchema = zod.z.object({
|
|
6
|
-
id: zod.z.string().describe("Unique identifier for the project."),
|
|
7
|
-
name: zod.z.string().describe("Name of the project."),
|
|
8
|
-
createdAt: zod.z.string().describe("Timestamp when the project was created."),
|
|
9
|
-
updatedAt: zod.z.string().describe("Timestamp when the project was last updated."),
|
|
6
|
+
id: zod.z.string().describe("Unique identifier for the project.").nullable(),
|
|
7
|
+
name: zod.z.string().describe("Name of the project.").nullable(),
|
|
8
|
+
createdAt: zod.z.string().describe("Timestamp when the project was created.").nullable(),
|
|
9
|
+
updatedAt: zod.z.string().describe("Timestamp when the project was last updated.").nullable(),
|
|
10
10
|
description: zod.z.string().describe("Description of the project.").nullable().optional()
|
|
11
11
|
}).passthrough().describe("Model representing a single project.");
|
|
12
12
|
const OwlProtocolListProjectsOutput = zod.z.object({ projects: zod.z.array(OwlProtocolListProjects_ProjectSchema).describe("List of project objects.") }).describe("Response model for listing all projects.");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput
|
|
1
|
+
{"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput = z.object({}).describe(\"Request model for listing all projects.\");\nconst OwlProtocolListProjects_ProjectSchema = z.object({\n id: z.string().describe(\"Unique identifier for the project.\").nullable(),\n name: z.string().describe(\"Name of the project.\").nullable(),\n createdAt: z.string().describe(\"Timestamp when the project was created.\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the project was last updated.\").nullable(),\n description: z.string().describe(\"Description of the project.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single project.\");\nexport const OwlProtocolListProjectsOutput = z.object({\n projects: z.array(OwlProtocolListProjects_ProjectSchema).describe(\"List of project objects.\"),\n}).describe(\"Response model for listing all projects.\");\n\nexport const owlProtocolListProjects = action(\"OWL_PROTOCOL_LIST_PROJECTS\", {\n slug: \"owl_protocol-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.\",\n input: OwlProtocolListProjectsInput,\n output: OwlProtocolListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC;AAC3G,MAAM,wCAAwCA,IAAAA,EAAE,OAAO;CACrD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAChE,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,EACpD,UAAUA,IAAAA,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,0BAA0B,EAC9F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-projects.d.ts
|
|
4
|
-
declare const OwlProtocolListProjectsInput: z.
|
|
5
|
-
declare const OwlProtocolListProjectsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolListProjectsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const OwlProtocolListProjectsOutput: z.ZodObject<{
|
|
6
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
7
|
+
id: z.ZodNullable<z.ZodString>;
|
|
8
|
+
name: z.ZodNullable<z.ZodString>;
|
|
9
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
10
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
11
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
}, z.core.$loose>>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
declare const owlProtocolListProjects: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
15
|
//#endregion
|
|
8
16
|
export { owlProtocolListProjects };
|
|
9
17
|
//# sourceMappingURL=list-projects.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-projects.d.cts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"list-projects.d.cts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-projects.d.ts
|
|
4
|
-
declare const OwlProtocolListProjectsInput: z.
|
|
5
|
-
declare const OwlProtocolListProjectsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const OwlProtocolListProjectsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const OwlProtocolListProjectsOutput: z.ZodObject<{
|
|
6
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
7
|
+
id: z.ZodNullable<z.ZodString>;
|
|
8
|
+
name: z.ZodNullable<z.ZodString>;
|
|
9
|
+
createdAt: z.ZodNullable<z.ZodString>;
|
|
10
|
+
updatedAt: z.ZodNullable<z.ZodString>;
|
|
11
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
}, z.core.$loose>>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
declare const owlProtocolListProjects: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
15
|
//#endregion
|
|
8
16
|
export { owlProtocolListProjects };
|
|
9
17
|
//# sourceMappingURL=list-projects.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-projects.d.mts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"list-projects.d.mts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -3,10 +3,10 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-projects.ts
|
|
4
4
|
const OwlProtocolListProjectsInput = z.object({}).describe("Request model for listing all projects.");
|
|
5
5
|
const OwlProtocolListProjects_ProjectSchema = z.object({
|
|
6
|
-
id: z.string().describe("Unique identifier for the project."),
|
|
7
|
-
name: z.string().describe("Name of the project."),
|
|
8
|
-
createdAt: z.string().describe("Timestamp when the project was created."),
|
|
9
|
-
updatedAt: z.string().describe("Timestamp when the project was last updated."),
|
|
6
|
+
id: z.string().describe("Unique identifier for the project.").nullable(),
|
|
7
|
+
name: z.string().describe("Name of the project.").nullable(),
|
|
8
|
+
createdAt: z.string().describe("Timestamp when the project was created.").nullable(),
|
|
9
|
+
updatedAt: z.string().describe("Timestamp when the project was last updated.").nullable(),
|
|
10
10
|
description: z.string().describe("Description of the project.").nullable().optional()
|
|
11
11
|
}).passthrough().describe("Model representing a single project.");
|
|
12
12
|
const owlProtocolListProjects = action("OWL_PROTOCOL_LIST_PROJECTS", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput
|
|
1
|
+
{"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput = z.object({}).describe(\"Request model for listing all projects.\");\nconst OwlProtocolListProjects_ProjectSchema = z.object({\n id: z.string().describe(\"Unique identifier for the project.\").nullable(),\n name: z.string().describe(\"Name of the project.\").nullable(),\n createdAt: z.string().describe(\"Timestamp when the project was created.\").nullable(),\n updatedAt: z.string().describe(\"Timestamp when the project was last updated.\").nullable(),\n description: z.string().describe(\"Description of the project.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single project.\");\nexport const OwlProtocolListProjectsOutput = z.object({\n projects: z.array(OwlProtocolListProjects_ProjectSchema).describe(\"List of project objects.\"),\n}).describe(\"Response model for listing all projects.\");\n\nexport const owlProtocolListProjects = action(\"OWL_PROTOCOL_LIST_PROJECTS\", {\n slug: \"owl_protocol-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.\",\n input: OwlProtocolListProjectsInput,\n output: OwlProtocolListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC;AAC3G,MAAM,wCAAwC,EAAE,OAAO;CACrD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAKhE,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT2C,EAAE,OAAO,EACpD,UAAU,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,0BAA0B,EAC9F,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const owlProtocolCatalog = {
|
|
|
7
7
|
"category": "Developer Tools",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/owl_protocol",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Owl Protocol API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.owlProtocolCatalog = owlProtocolCatalog;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Owl Protocol API Key\",\n \"secret\": true,\n \"description\": \"Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const owlProtocolCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/owl_protocol";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Owl Protocol API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { owlProtocolCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const owlProtocolCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/owl_protocol";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "Owl Protocol API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { owlProtocolCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const owlProtocolCatalog = {
|
|
|
7
7
|
"category": "Developer Tools",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/owl_protocol",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "Owl Protocol API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)"
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { owlProtocolCatalog };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Owl Protocol API Key\",\n \"secret\": true,\n \"description\": \"Your Owl Protocol API Key for authentication (add from your Owl Protocol dashboard)\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/owl_protocol",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|