@keystrokehq/short_menu 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.
@@ -1 +1 @@
1
- {"version":3,"file":"action.cjs","names":["shortMenu","executeShortMenuTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { shortMenu } from \"./app\";\nimport { executeShortMenuTool } 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 shortMenu.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 executeShortMenuTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,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,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.cjs","names":["shortMenu","executeShortMenuTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { shortMenu } from \"./app\";\nimport { executeShortMenuTool } 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 shortMenu.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 executeShortMenuTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,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,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { shortMenu } from \"./app\";\nimport { executeShortMenuTool } 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 shortMenu.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 executeShortMenuTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { shortMenu } from \"./app\";\nimport { executeShortMenuTool } 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 shortMenu.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 executeShortMenuTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -12,16 +12,16 @@ const ShortMenuCreateLinkInput = zod.z.object({
12
12
  description: zod.z.string().describe("An optional note or description for this link").optional()
13
13
  }).describe("Input parameters to create a new shortened link.");
14
14
  const ShortMenuCreateLinkOutput = zod.z.object({
15
- id: zod.z.string().describe("Unique ID of the created link"),
16
- url: zod.z.string().describe("The original URL"),
17
- slug: zod.z.string().describe("The custom or auto-generated slug"),
15
+ id: zod.z.string().describe("Unique ID of the created link").nullable(),
16
+ url: zod.z.string().describe("The original URL").nullable(),
17
+ slug: zod.z.string().describe("The custom or auto-generated slug").nullable(),
18
18
  tags: zod.z.array(zod.z.string()).describe("Tags assigned to the link"),
19
- domain: zod.z.string().describe("Domain used for the link"),
20
- short_url: zod.z.string().describe("The shortened URL"),
21
- created_at: zod.z.string().describe("Link creation date/time"),
19
+ domain: zod.z.string().describe("Domain used for the link").nullable(),
20
+ short_url: zod.z.string().describe("The shortened URL").nullable(),
21
+ created_at: zod.z.string().describe("Link creation date/time").nullable(),
22
22
  expires_at: zod.z.string().describe("Expiration date/time of the link").nullable().optional(),
23
23
  description: zod.z.string().describe("Link description or note").nullable().optional(),
24
- password_enabled: zod.z.boolean().describe("Whether the link is password protected")
24
+ password_enabled: zod.z.boolean().describe("Whether the link is password protected").nullable()
25
25
  }).describe("Response schema for the created link.");
26
26
  const shortMenuCreateLink = require_action.action("SHORT_MENU_CREATE_LINK", {
27
27
  slug: "short_menu-create-link",
@@ -1 +1 @@
1
- {"version":3,"file":"create-link.cjs","names":["z","action"],"sources":["../../src/actions/create-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuCreateLinkInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"The original URL to be shortened\"),\n slug: z.string().describe(\"Custom slug for the link (alphanumeric, unique). If not provided, the system will auto-generate one.\").optional(),\n tags: z.array(z.string()).describe(\"List of tags to categorize the link\").optional(),\n domain: z.string().describe(\"Custom domain to use for the generated short link\").optional(),\n password: z.string().describe(\"Password to protect the link (plain text)\").optional(),\n pixel_ids: z.array(z.string()).describe(\"Analytics pixel identifiers to attach to the link\").optional(),\n expires_at: z.string().describe(\"ISO8601 timestamp when the link should expire\").optional(),\n description: z.string().describe(\"An optional note or description for this link\").optional(),\n}).describe(\"Input parameters to create a new shortened link.\");\nexport const ShortMenuCreateLinkOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique ID of the created link\"),\n url: z.string().describe(\"The original URL\"),\n slug: z.string().describe(\"The custom or auto-generated slug\"),\n tags: z.array(z.string()).describe(\"Tags assigned to the link\"),\n domain: z.string().describe(\"Domain used for the link\"),\n short_url: z.string().describe(\"The shortened URL\"),\n created_at: z.string().describe(\"Link creation date/time\"),\n expires_at: z.string().describe(\"Expiration date/time of the link\").nullable().optional(),\n description: z.string().describe(\"Link description or note\").nullable().optional(),\n password_enabled: z.boolean().describe(\"Whether the link is password protected\"),\n}).describe(\"Response schema for the created link.\");\n\nexport const shortMenuCreateLink = action(\"SHORT_MENU_CREATE_LINK\", {\n slug: \"short_menu-create-link\",\n name: \"Create Short Link\",\n description: \"Tool to create a new shortened link. Use when you need to generate a short URL with optional custom parameters like domain, tags, slug, etc. Use after gathering the target URL and any metadata.\",\n input: ShortMenuCreateLinkInput,\n output: ShortMenuCreateLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC3I,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACnF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC1F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACpF,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACvD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC3C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAC7D,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2BAA2B;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CACtD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB;CAClD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACzD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;AACjF,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAEnD,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-link.cjs","names":["z","action"],"sources":["../../src/actions/create-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuCreateLinkInput = z.object({\n url: z.string().describe(\"The original URL to be shortened\"),\n slug: z.string().describe(\"Custom slug for the link (alphanumeric, unique). If not provided, the system will auto-generate one.\").optional(),\n tags: z.array(z.string()).describe(\"List of tags to categorize the link\").optional(),\n domain: z.string().describe(\"Custom domain to use for the generated short link\").optional(),\n password: z.string().describe(\"Password to protect the link (plain text)\").optional(),\n pixel_ids: z.array(z.string()).describe(\"Analytics pixel identifiers to attach to the link\").optional(),\n expires_at: z.string().describe(\"ISO8601 timestamp when the link should expire\").optional(),\n description: z.string().describe(\"An optional note or description for this link\").optional(),\n}).describe(\"Input parameters to create a new shortened link.\");\nexport const ShortMenuCreateLinkOutput = z.object({\n id: z.string().describe(\"Unique ID of the created link\").nullable(),\n url: z.string().describe(\"The original URL\").nullable(),\n slug: z.string().describe(\"The custom or auto-generated slug\").nullable(),\n tags: z.array(z.string()).describe(\"Tags assigned to the link\"),\n domain: z.string().describe(\"Domain used for the link\").nullable(),\n short_url: z.string().describe(\"The shortened URL\").nullable(),\n created_at: z.string().describe(\"Link creation date/time\").nullable(),\n expires_at: z.string().describe(\"Expiration date/time of the link\").nullable().optional(),\n description: z.string().describe(\"Link description or note\").nullable().optional(),\n password_enabled: z.boolean().describe(\"Whether the link is password protected\").nullable(),\n}).describe(\"Response schema for the created link.\");\n\nexport const shortMenuCreateLink = action(\"SHORT_MENU_CREATE_LINK\", {\n slug: \"short_menu-create-link\",\n name: \"Create Short Link\",\n description: \"Tool to create a new shortened link. Use when you need to generate a short URL with optional custom parameters like domain, tags, slug, etc. Use after gathering the target URL and any metadata.\",\n input: ShortMenuCreateLinkInput,\n output: ShortMenuCreateLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC3I,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACnF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC1F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACpF,WAAWA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAClE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACxE,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2BAA2B;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACjE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC7D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CACpE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAEnD,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,38 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/create-link.d.ts
4
- declare const ShortMenuCreateLinkInput: z.ZodTypeAny;
5
- declare const ShortMenuCreateLinkOutput: z.ZodTypeAny;
6
- declare const shortMenuCreateLink: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuCreateLinkInput: z.ZodObject<{
5
+ url: z.ZodString;
6
+ slug: z.ZodOptional<z.ZodString>;
7
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
+ domain: z.ZodOptional<z.ZodString>;
9
+ password: z.ZodOptional<z.ZodString>;
10
+ pixel_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
11
+ expires_at: z.ZodOptional<z.ZodString>;
12
+ description: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>;
14
+ declare const ShortMenuCreateLinkOutput: z.ZodObject<{
15
+ id: z.ZodNullable<z.ZodString>;
16
+ url: z.ZodNullable<z.ZodString>;
17
+ slug: z.ZodNullable<z.ZodString>;
18
+ tags: z.ZodArray<z.ZodString>;
19
+ domain: z.ZodNullable<z.ZodString>;
20
+ short_url: z.ZodNullable<z.ZodString>;
21
+ created_at: z.ZodNullable<z.ZodString>;
22
+ expires_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
+ password_enabled: z.ZodNullable<z.ZodBoolean>;
25
+ }, z.core.$strip>;
26
+ declare const shortMenuCreateLink: import("@keystrokehq/action").WorkflowActionDefinition<{
27
+ url: string;
28
+ slug?: string | undefined;
29
+ tags?: string[] | undefined;
30
+ domain?: string | undefined;
31
+ password?: string | undefined;
32
+ pixel_ids?: string[] | undefined;
33
+ expires_at?: string | undefined;
34
+ description?: string | undefined;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
36
  //#endregion
8
37
  export { shortMenuCreateLink };
9
38
  //# sourceMappingURL=create-link.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-link.d.cts","names":[],"sources":["../../src/actions/create-link.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UASsB;AAAA,cAClD,yBAAA,EAA2B,CAAA,CAAE,UAWU;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"create-link.d.cts","names":[],"sources":["../../src/actions/create-link.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
@@ -1,9 +1,38 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/create-link.d.ts
4
- declare const ShortMenuCreateLinkInput: z.ZodTypeAny;
5
- declare const ShortMenuCreateLinkOutput: z.ZodTypeAny;
6
- declare const shortMenuCreateLink: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuCreateLinkInput: z.ZodObject<{
5
+ url: z.ZodString;
6
+ slug: z.ZodOptional<z.ZodString>;
7
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
+ domain: z.ZodOptional<z.ZodString>;
9
+ password: z.ZodOptional<z.ZodString>;
10
+ pixel_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
11
+ expires_at: z.ZodOptional<z.ZodString>;
12
+ description: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>;
14
+ declare const ShortMenuCreateLinkOutput: z.ZodObject<{
15
+ id: z.ZodNullable<z.ZodString>;
16
+ url: z.ZodNullable<z.ZodString>;
17
+ slug: z.ZodNullable<z.ZodString>;
18
+ tags: z.ZodArray<z.ZodString>;
19
+ domain: z.ZodNullable<z.ZodString>;
20
+ short_url: z.ZodNullable<z.ZodString>;
21
+ created_at: z.ZodNullable<z.ZodString>;
22
+ expires_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
+ password_enabled: z.ZodNullable<z.ZodBoolean>;
25
+ }, z.core.$strip>;
26
+ declare const shortMenuCreateLink: import("@keystrokehq/action").WorkflowActionDefinition<{
27
+ url: string;
28
+ slug?: string | undefined;
29
+ tags?: string[] | undefined;
30
+ domain?: string | undefined;
31
+ password?: string | undefined;
32
+ pixel_ids?: string[] | undefined;
33
+ expires_at?: string | undefined;
34
+ description?: string | undefined;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
36
  //#endregion
8
37
  export { shortMenuCreateLink };
9
38
  //# sourceMappingURL=create-link.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-link.d.mts","names":[],"sources":["../../src/actions/create-link.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UASsB;AAAA,cAClD,yBAAA,EAA2B,CAAA,CAAE,UAWU;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"create-link.d.mts","names":[],"sources":["../../src/actions/create-link.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAazB,mBAAA,gCAAmB,wBAAA"}
@@ -15,16 +15,16 @@ const shortMenuCreateLink = action("SHORT_MENU_CREATE_LINK", {
15
15
  description: z.string().describe("An optional note or description for this link").optional()
16
16
  }).describe("Input parameters to create a new shortened link."),
17
17
  output: z.object({
18
- id: z.string().describe("Unique ID of the created link"),
19
- url: z.string().describe("The original URL"),
20
- slug: z.string().describe("The custom or auto-generated slug"),
18
+ id: z.string().describe("Unique ID of the created link").nullable(),
19
+ url: z.string().describe("The original URL").nullable(),
20
+ slug: z.string().describe("The custom or auto-generated slug").nullable(),
21
21
  tags: z.array(z.string()).describe("Tags assigned to the link"),
22
- domain: z.string().describe("Domain used for the link"),
23
- short_url: z.string().describe("The shortened URL"),
24
- created_at: z.string().describe("Link creation date/time"),
22
+ domain: z.string().describe("Domain used for the link").nullable(),
23
+ short_url: z.string().describe("The shortened URL").nullable(),
24
+ created_at: z.string().describe("Link creation date/time").nullable(),
25
25
  expires_at: z.string().describe("Expiration date/time of the link").nullable().optional(),
26
26
  description: z.string().describe("Link description or note").nullable().optional(),
27
- password_enabled: z.boolean().describe("Whether the link is password protected")
27
+ password_enabled: z.boolean().describe("Whether the link is password protected").nullable()
28
28
  }).describe("Response schema for the created link.")
29
29
  });
30
30
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"create-link.mjs","names":[],"sources":["../../src/actions/create-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuCreateLinkInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"The original URL to be shortened\"),\n slug: z.string().describe(\"Custom slug for the link (alphanumeric, unique). If not provided, the system will auto-generate one.\").optional(),\n tags: z.array(z.string()).describe(\"List of tags to categorize the link\").optional(),\n domain: z.string().describe(\"Custom domain to use for the generated short link\").optional(),\n password: z.string().describe(\"Password to protect the link (plain text)\").optional(),\n pixel_ids: z.array(z.string()).describe(\"Analytics pixel identifiers to attach to the link\").optional(),\n expires_at: z.string().describe(\"ISO8601 timestamp when the link should expire\").optional(),\n description: z.string().describe(\"An optional note or description for this link\").optional(),\n}).describe(\"Input parameters to create a new shortened link.\");\nexport const ShortMenuCreateLinkOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique ID of the created link\"),\n url: z.string().describe(\"The original URL\"),\n slug: z.string().describe(\"The custom or auto-generated slug\"),\n tags: z.array(z.string()).describe(\"Tags assigned to the link\"),\n domain: z.string().describe(\"Domain used for the link\"),\n short_url: z.string().describe(\"The shortened URL\"),\n created_at: z.string().describe(\"Link creation date/time\"),\n expires_at: z.string().describe(\"Expiration date/time of the link\").nullable().optional(),\n description: z.string().describe(\"Link description or note\").nullable().optional(),\n password_enabled: z.boolean().describe(\"Whether the link is password protected\"),\n}).describe(\"Response schema for the created link.\");\n\nexport const shortMenuCreateLink = action(\"SHORT_MENU_CREATE_LINK\", {\n slug: \"short_menu-create-link\",\n name: \"Create Short Link\",\n description: \"Tool to create a new shortened link. Use when you need to generate a short URL with optional custom parameters like domain, tags, slug, etc. Use after gathering the target URL and any metadata.\",\n input: ShortMenuCreateLinkInput,\n output: ShortMenuCreateLinkOutput,\n});\n"],"mappings":";;AA2BA,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3BoD,EAAE,OAAO;EAC7D,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;EAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;EAC3I,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;EACnF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EAC1F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;EACpF,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EACtG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;EAC1F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC7F,CAAC,CAAC,CAAC,SAAS,kDAkBH;CACP,QAlBqD,EAAE,OAAO;EAC9D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;EACvD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;EAC3C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;EAC7D,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2BAA2B;EAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;EACtD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB;EAClD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;EACzD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjF,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;CACjF,CAAC,CAAC,CAAC,SAAS,uCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-link.mjs","names":[],"sources":["../../src/actions/create-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuCreateLinkInput = z.object({\n url: z.string().describe(\"The original URL to be shortened\"),\n slug: z.string().describe(\"Custom slug for the link (alphanumeric, unique). If not provided, the system will auto-generate one.\").optional(),\n tags: z.array(z.string()).describe(\"List of tags to categorize the link\").optional(),\n domain: z.string().describe(\"Custom domain to use for the generated short link\").optional(),\n password: z.string().describe(\"Password to protect the link (plain text)\").optional(),\n pixel_ids: z.array(z.string()).describe(\"Analytics pixel identifiers to attach to the link\").optional(),\n expires_at: z.string().describe(\"ISO8601 timestamp when the link should expire\").optional(),\n description: z.string().describe(\"An optional note or description for this link\").optional(),\n}).describe(\"Input parameters to create a new shortened link.\");\nexport const ShortMenuCreateLinkOutput = z.object({\n id: z.string().describe(\"Unique ID of the created link\").nullable(),\n url: z.string().describe(\"The original URL\").nullable(),\n slug: z.string().describe(\"The custom or auto-generated slug\").nullable(),\n tags: z.array(z.string()).describe(\"Tags assigned to the link\"),\n domain: z.string().describe(\"Domain used for the link\").nullable(),\n short_url: z.string().describe(\"The shortened URL\").nullable(),\n created_at: z.string().describe(\"Link creation date/time\").nullable(),\n expires_at: z.string().describe(\"Expiration date/time of the link\").nullable().optional(),\n description: z.string().describe(\"Link description or note\").nullable().optional(),\n password_enabled: z.boolean().describe(\"Whether the link is password protected\").nullable(),\n}).describe(\"Response schema for the created link.\");\n\nexport const shortMenuCreateLink = action(\"SHORT_MENU_CREATE_LINK\", {\n slug: \"short_menu-create-link\",\n name: \"Create Short Link\",\n description: \"Tool to create a new shortened link. Use when you need to generate a short URL with optional custom parameters like domain, tags, slug, etc. Use after gathering the target URL and any metadata.\",\n input: ShortMenuCreateLinkInput,\n output: ShortMenuCreateLinkOutput,\n});\n"],"mappings":";;AA2BA,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3BsC,EAAE,OAAO;EAC/C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;EAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;EAC3I,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;EACnF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EAC1F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;EACpF,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EACtG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;EAC1F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC7F,CAAC,CAAC,CAAC,SAAS,kDAkBH;CACP,QAlBuC,EAAE,OAAO;EAChD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EAClE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EACxE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2BAA2B;EAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EACjE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;EAC7D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;EACpE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjF,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CAC5F,CAAC,CAAC,CAAC,SAAS,uCAOF;AACV,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"delete-link.cjs","names":["z","action"],"sources":["../../src/actions/delete-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuDeleteLinkInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the link to delete (UUID format)\"),\n}).describe(\"Input parameters to delete an existing short link.\");\nexport const ShortMenuDeleteLinkOutput: z.ZodTypeAny = z.object({\n success: z.boolean().default(true).describe(\"Indicates whether the deletion was successful\").nullable().optional(),\n}).describe(\"Response schema for successful link deletion.\");\n\nexport const shortMenuDeleteLink = action(\"SHORT_MENU_DELETE_LINK\", {\n slug: \"short_menu-delete-link\",\n name: \"Delete Short Link\",\n description: \"Tool to delete an existing short link by its ID. Use when you need to remove a shortened URL from the system.\",\n input: ShortMenuDeleteLinkInput,\n output: ShortMenuDeleteLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO,EAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,EACjF,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAE3D,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"delete-link.cjs","names":["z","action"],"sources":["../../src/actions/delete-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuDeleteLinkInput = z.object({\n id: z.string().describe(\"Unique identifier of the link to delete (UUID format)\"),\n}).describe(\"Input parameters to delete an existing short link.\");\nexport const ShortMenuDeleteLinkOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates whether the deletion was successful\").nullable().optional(),\n}).describe(\"Response schema for successful link deletion.\");\n\nexport const shortMenuDeleteLink = action(\"SHORT_MENU_DELETE_LINK\", {\n slug: \"short_menu-delete-link\",\n name: \"Delete Short Link\",\n description: \"Tool to delete an existing short link by its ID. Use when you need to remove a shortened URL from the system.\",\n input: ShortMenuDeleteLinkInput,\n output: ShortMenuDeleteLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,EACjF,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAE3D,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/delete-link.d.ts
4
- declare const ShortMenuDeleteLinkInput: z.ZodTypeAny;
5
- declare const ShortMenuDeleteLinkOutput: z.ZodTypeAny;
6
- declare const shortMenuDeleteLink: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuDeleteLinkInput: z.ZodObject<{
5
+ id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ShortMenuDeleteLinkOutput: z.ZodObject<{
8
+ success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
9
+ }, z.core.$strip>;
10
+ declare const shortMenuDeleteLink: import("@keystrokehq/action").WorkflowActionDefinition<{
11
+ id: string;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { shortMenuDeleteLink };
9
15
  //# sourceMappingURL=delete-link.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"delete-link.d.cts","names":[],"sources":["../../src/actions/delete-link.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAEwB;AAAA,cACpD,yBAAA,EAA2B,CAAA,CAAE,UAEkB;AAAA,cAE/C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"delete-link.d.cts","names":[],"sources":["../../src/actions/delete-link.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;cAGxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/delete-link.d.ts
4
- declare const ShortMenuDeleteLinkInput: z.ZodTypeAny;
5
- declare const ShortMenuDeleteLinkOutput: z.ZodTypeAny;
6
- declare const shortMenuDeleteLink: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuDeleteLinkInput: z.ZodObject<{
5
+ id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const ShortMenuDeleteLinkOutput: z.ZodObject<{
8
+ success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
9
+ }, z.core.$strip>;
10
+ declare const shortMenuDeleteLink: import("@keystrokehq/action").WorkflowActionDefinition<{
11
+ id: string;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { shortMenuDeleteLink };
9
15
  //# sourceMappingURL=delete-link.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"delete-link.d.mts","names":[],"sources":["../../src/actions/delete-link.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAEwB;AAAA,cACpD,yBAAA,EAA2B,CAAA,CAAE,UAEkB;AAAA,cAE/C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"delete-link.d.mts","names":[],"sources":["../../src/actions/delete-link.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;cAGxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"delete-link.mjs","names":[],"sources":["../../src/actions/delete-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuDeleteLinkInput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the link to delete (UUID format)\"),\n}).describe(\"Input parameters to delete an existing short link.\");\nexport const ShortMenuDeleteLinkOutput: z.ZodTypeAny = z.object({\n success: z.boolean().default(true).describe(\"Indicates whether the deletion was successful\").nullable().optional(),\n}).describe(\"Response schema for successful link deletion.\");\n\nexport const shortMenuDeleteLink = action(\"SHORT_MENU_DELETE_LINK\", {\n slug: \"short_menu-delete-link\",\n name: \"Delete Short Link\",\n description: \"Tool to delete an existing short link by its ID. Use when you need to remove a shortened URL from the system.\",\n input: ShortMenuDeleteLinkInput,\n output: ShortMenuDeleteLinkOutput,\n});\n"],"mappings":";;AAWA,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXoD,EAAE,OAAO,EAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,EACjF,CAAC,CAAC,CAAC,SAAS,oDASH;CACP,QATqD,EAAE,OAAO,EAC9D,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,SAAS,+CAOF;AACV,CAAC"}
1
+ {"version":3,"file":"delete-link.mjs","names":[],"sources":["../../src/actions/delete-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuDeleteLinkInput = z.object({\n id: z.string().describe(\"Unique identifier of the link to delete (UUID format)\"),\n}).describe(\"Input parameters to delete an existing short link.\");\nexport const ShortMenuDeleteLinkOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates whether the deletion was successful\").nullable().optional(),\n}).describe(\"Response schema for successful link deletion.\");\n\nexport const shortMenuDeleteLink = action(\"SHORT_MENU_DELETE_LINK\", {\n slug: \"short_menu-delete-link\",\n name: \"Delete Short Link\",\n description: \"Tool to delete an existing short link by its ID. Use when you need to remove a shortened URL from the system.\",\n input: ShortMenuDeleteLinkInput,\n output: ShortMenuDeleteLinkOutput,\n});\n"],"mappings":";;AAWA,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXsC,EAAE,OAAO,EAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,EACjF,CAAC,CAAC,CAAC,SAAS,oDASH;CACP,QATuC,EAAE,OAAO,EAChD,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACnH,CAAC,CAAC,CAAC,SAAS,+CAOF;AACV,CAAC"}
@@ -3,8 +3,8 @@ let zod = require("zod");
3
3
  //#region src/actions/get-domains.ts
4
4
  const ShortMenuGetDomainsInput = zod.z.object({}).describe("No input parameters required to retrieve custom domains.");
5
5
  const ShortMenuGetDomains_DomainSchema = zod.z.object({
6
- id: zod.z.string().describe("Unique identifier for the domain (UUID)"),
7
- name: zod.z.string().describe("Custom domain name"),
6
+ id: zod.z.string().describe("Unique identifier for the domain (UUID)").nullable(),
7
+ name: zod.z.string().describe("Custom domain name").nullable(),
8
8
  customDomainMetadata: zod.z.unknown().describe("Additional custom domain metadata").nullable().optional()
9
9
  });
10
10
  const ShortMenuGetDomainsOutput = zod.z.object({ domains: zod.z.array(ShortMenuGetDomains_DomainSchema).describe("List of available custom domains") });
@@ -1 +1 @@
1
- {"version":3,"file":"get-domains.cjs","names":["z","action"],"sources":["../../src/actions/get-domains.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuGetDomainsInput: z.ZodTypeAny = z.object({}).describe(\"No input parameters required to retrieve custom domains.\");\nconst ShortMenuGetDomains_DomainSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the domain (UUID)\"),\n name: z.string().describe(\"Custom domain name\"),\n customDomainMetadata: z.unknown().describe(\"Additional custom domain metadata\").nullable().optional(),\n});\nexport const ShortMenuGetDomainsOutput: z.ZodTypeAny = z.object({\n domains: z.array(ShortMenuGetDomains_DomainSchema).describe(\"List of available custom domains\"),\n});\n\nexport const shortMenuGetDomains = action(\"SHORT_MENU_GET_DOMAINS\", {\n slug: \"short_menu-get-domains\",\n name: \"Get Custom Domains\",\n description: \"Tool to retrieve available custom domains. Use when you need to display or select a domain for shortening links.\",\n input: ShortMenuGetDomainsInput,\n output: ShortMenuGetDomainsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtI,MAAM,mCAAiDA,IAAAA,EAAE,OAAO;CAC9D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC9C,sBAAsBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC;AACD,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,SAASA,IAAAA,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,kCAAkC,EAChG,CAAC;AAED,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-domains.cjs","names":["z","action"],"sources":["../../src/actions/get-domains.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuGetDomainsInput = z.object({}).describe(\"No input parameters required to retrieve custom domains.\");\nconst ShortMenuGetDomains_DomainSchema = z.object({\n id: z.string().describe(\"Unique identifier for the domain (UUID)\").nullable(),\n name: z.string().describe(\"Custom domain name\").nullable(),\n customDomainMetadata: z.unknown().describe(\"Additional custom domain metadata\").nullable().optional(),\n});\nexport const ShortMenuGetDomainsOutput = z.object({\n domains: z.array(ShortMenuGetDomains_DomainSchema).describe(\"List of available custom domains\"),\n});\n\nexport const shortMenuGetDomains = action(\"SHORT_MENU_GET_DOMAINS\", {\n slug: \"short_menu-get-domains\",\n name: \"Get Custom Domains\",\n description: \"Tool to retrieve available custom domains. Use when you need to display or select a domain for shortening links.\",\n input: ShortMenuGetDomainsInput,\n output: ShortMenuGetDomainsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACxH,MAAM,mCAAmCA,IAAAA,EAAE,OAAO;CAChD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CAC5E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACzD,sBAAsBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC;AACD,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,SAASA,IAAAA,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,kCAAkC,EAChG,CAAC;AAED,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-domains.d.ts
4
- declare const ShortMenuGetDomainsInput: z.ZodTypeAny;
5
- declare const ShortMenuGetDomainsOutput: z.ZodTypeAny;
6
- declare const shortMenuGetDomains: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuGetDomainsInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ShortMenuGetDomainsOutput: z.ZodObject<{
6
+ domains: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ name: z.ZodNullable<z.ZodString>;
9
+ customDomainMetadata: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
10
+ }, z.core.$strip>>;
11
+ }, z.core.$strip>;
12
+ declare const shortMenuGetDomains: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { shortMenuGetDomains };
9
15
  //# sourceMappingURL=get-domains.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-domains.d.cts","names":[],"sources":["../../src/actions/get-domains.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAA8F;AAAA,cAM1H,yBAAA,EAA2B,CAAA,CAAE,UAExC;AAAA,cAEW,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-domains.d.cts","names":[],"sources":["../../src/actions/get-domains.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,15 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-domains.d.ts
4
- declare const ShortMenuGetDomainsInput: z.ZodTypeAny;
5
- declare const ShortMenuGetDomainsOutput: z.ZodTypeAny;
6
- declare const shortMenuGetDomains: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const ShortMenuGetDomainsInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const ShortMenuGetDomainsOutput: z.ZodObject<{
6
+ domains: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ name: z.ZodNullable<z.ZodString>;
9
+ customDomainMetadata: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
10
+ }, z.core.$strip>>;
11
+ }, z.core.$strip>;
12
+ declare const shortMenuGetDomains: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
13
  //#endregion
8
14
  export { shortMenuGetDomains };
9
15
  //# sourceMappingURL=get-domains.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-domains.d.mts","names":[],"sources":["../../src/actions/get-domains.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAA8F;AAAA,cAM1H,yBAAA,EAA2B,CAAA,CAAE,UAExC;AAAA,cAEW,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-domains.d.mts","names":[],"sources":["../../src/actions/get-domains.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -3,8 +3,8 @@ import { z } from "zod";
3
3
  //#region src/actions/get-domains.ts
4
4
  const ShortMenuGetDomainsInput = z.object({}).describe("No input parameters required to retrieve custom domains.");
5
5
  const ShortMenuGetDomains_DomainSchema = z.object({
6
- id: z.string().describe("Unique identifier for the domain (UUID)"),
7
- name: z.string().describe("Custom domain name"),
6
+ id: z.string().describe("Unique identifier for the domain (UUID)").nullable(),
7
+ name: z.string().describe("Custom domain name").nullable(),
8
8
  customDomainMetadata: z.unknown().describe("Additional custom domain metadata").nullable().optional()
9
9
  });
10
10
  const shortMenuGetDomains = action("SHORT_MENU_GET_DOMAINS", {
@@ -1 +1 @@
1
- {"version":3,"file":"get-domains.mjs","names":[],"sources":["../../src/actions/get-domains.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuGetDomainsInput: z.ZodTypeAny = z.object({}).describe(\"No input parameters required to retrieve custom domains.\");\nconst ShortMenuGetDomains_DomainSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the domain (UUID)\"),\n name: z.string().describe(\"Custom domain name\"),\n customDomainMetadata: z.unknown().describe(\"Additional custom domain metadata\").nullable().optional(),\n});\nexport const ShortMenuGetDomainsOutput: z.ZodTypeAny = z.object({\n domains: z.array(ShortMenuGetDomains_DomainSchema).describe(\"List of available custom domains\"),\n});\n\nexport const shortMenuGetDomains = action(\"SHORT_MENU_GET_DOMAINS\", {\n slug: \"short_menu-get-domains\",\n name: \"Get Custom Domains\",\n description: \"Tool to retrieve available custom domains. Use when you need to display or select a domain for shortening links.\",\n input: ShortMenuGetDomainsInput,\n output: ShortMenuGetDomainsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtI,MAAM,mCAAiD,EAAE,OAAO;CAC9D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC9C,sBAAsB,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC;AAKD,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqD,EAAE,OAAO,EAC9D,SAAS,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,kCAAkC,EAChG,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"get-domains.mjs","names":[],"sources":["../../src/actions/get-domains.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ShortMenuGetDomainsInput = z.object({}).describe(\"No input parameters required to retrieve custom domains.\");\nconst ShortMenuGetDomains_DomainSchema = z.object({\n id: z.string().describe(\"Unique identifier for the domain (UUID)\").nullable(),\n name: z.string().describe(\"Custom domain name\").nullable(),\n customDomainMetadata: z.unknown().describe(\"Additional custom domain metadata\").nullable().optional(),\n});\nexport const ShortMenuGetDomainsOutput = z.object({\n domains: z.array(ShortMenuGetDomains_DomainSchema).describe(\"List of available custom domains\"),\n});\n\nexport const shortMenuGetDomains = action(\"SHORT_MENU_GET_DOMAINS\", {\n slug: \"short_menu-get-domains\",\n name: \"Get Custom Domains\",\n description: \"Tool to retrieve available custom domains. Use when you need to display or select a domain for shortening links.\",\n input: ShortMenuGetDomainsInput,\n output: ShortMenuGetDomainsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACxH,MAAM,mCAAmC,EAAE,OAAO;CAChD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CAC5E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACzD,sBAAsB,EAAE,QAAQ,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC;AAKD,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,SAAS,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,kCAAkC,EAChG,CAOU;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,13 @@ const shortMenuCatalog = {
7
7
  "category": "URL Shortener",
8
8
  "logo": "https://logos.composio.dev/api/short_menu",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Short Menu API Key",
13
+ "secret": true,
14
+ "description": "Your Short Menu API Key. Create one at https://shm.to/create-api-key."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  exports.shortMenuCatalog = shortMenuCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shortMenuCatalog = {\n \"slug\": \"short_menu\",\n \"name\": \"Short Menu\",\n \"description\": \"Short Menu is a URL shortening application that allows users to create and manage short links efficiently.\",\n \"category\": \"URL Shortener\",\n \"logo\": \"https://logos.composio.dev/api/short_menu\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shortMenuCatalog = {\n \"slug\": \"short_menu\",\n \"name\": \"Short Menu\",\n \"description\": \"Short Menu is a URL shortening application that allows users to create and manage short links efficiently.\",\n \"category\": \"URL Shortener\",\n \"logo\": \"https://logos.composio.dev/api/short_menu\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Short Menu API Key\",\n \"secret\": true,\n \"description\": \"Your Short Menu API Key. Create one at https://shm.to/create-api-key.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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"}
@@ -8,6 +8,14 @@ declare const shortMenuCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/short_menu";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Short Menu API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Short Menu API Key. Create one at https://shm.to/create-api-key.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { shortMenuCatalog };
@@ -8,6 +8,14 @@ declare const shortMenuCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/short_menu";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Short Menu API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Short Menu API Key. Create one at https://shm.to/create-api-key.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { shortMenuCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,13 @@ const shortMenuCatalog = {
7
7
  "category": "URL Shortener",
8
8
  "logo": "https://logos.composio.dev/api/short_menu",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Short Menu API Key",
13
+ "secret": true,
14
+ "description": "Your Short Menu API Key. Create one at https://shm.to/create-api-key."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  export { shortMenuCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shortMenuCatalog = {\n \"slug\": \"short_menu\",\n \"name\": \"Short Menu\",\n \"description\": \"Short Menu is a URL shortening application that allows users to create and manage short links efficiently.\",\n \"category\": \"URL Shortener\",\n \"logo\": \"https://logos.composio.dev/api/short_menu\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const shortMenuCatalog = {\n \"slug\": \"short_menu\",\n \"name\": \"Short Menu\",\n \"description\": \"Short Menu is a URL shortening application that allows users to create and manage short links efficiently.\",\n \"category\": \"URL Shortener\",\n \"logo\": \"https://logos.composio.dev/api/short_menu\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Short Menu API Key\",\n \"secret\": true,\n \"description\": \"Your Short Menu API Key. Create one at https://shm.to/create-api-key.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,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/short_menu",
3
- "version": "0.1.0",
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": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {