@keystrokehq/mural 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/authorization-request.cjs +22 -0
  7. package/dist/actions/authorization-request.cjs.map +1 -0
  8. package/dist/actions/authorization-request.d.cts +9 -0
  9. package/dist/actions/authorization-request.d.cts.map +1 -0
  10. package/dist/actions/authorization-request.d.mts +9 -0
  11. package/dist/actions/authorization-request.d.mts.map +1 -0
  12. package/dist/actions/authorization-request.mjs +19 -0
  13. package/dist/actions/authorization-request.mjs.map +1 -0
  14. package/dist/actions/create-sticky-note.cjs +77 -0
  15. package/dist/actions/create-sticky-note.cjs.map +1 -0
  16. package/dist/actions/create-sticky-note.d.cts +9 -0
  17. package/dist/actions/create-sticky-note.d.cts.map +1 -0
  18. package/dist/actions/create-sticky-note.d.mts +9 -0
  19. package/dist/actions/create-sticky-note.d.mts.map +1 -0
  20. package/dist/actions/create-sticky-note.mjs +76 -0
  21. package/dist/actions/create-sticky-note.mjs.map +1 -0
  22. package/dist/actions/get-current-user.cjs +25 -0
  23. package/dist/actions/get-current-user.cjs.map +1 -0
  24. package/dist/actions/get-current-user.d.cts +9 -0
  25. package/dist/actions/get-current-user.d.cts.map +1 -0
  26. package/dist/actions/get-current-user.d.mts +9 -0
  27. package/dist/actions/get-current-user.d.mts.map +1 -0
  28. package/dist/actions/get-current-user.mjs +22 -0
  29. package/dist/actions/get-current-user.mjs.map +1 -0
  30. package/dist/actions/get-files-for-mural.cjs +58 -0
  31. package/dist/actions/get-files-for-mural.cjs.map +1 -0
  32. package/dist/actions/get-files-for-mural.d.cts +9 -0
  33. package/dist/actions/get-files-for-mural.d.cts.map +1 -0
  34. package/dist/actions/get-files-for-mural.d.mts +9 -0
  35. package/dist/actions/get-files-for-mural.d.mts.map +1 -0
  36. package/dist/actions/get-files-for-mural.mjs +57 -0
  37. package/dist/actions/get-files-for-mural.mjs.map +1 -0
  38. package/dist/actions/get-mural-widgets.cjs +56 -0
  39. package/dist/actions/get-mural-widgets.cjs.map +1 -0
  40. package/dist/actions/get-mural-widgets.d.cts +9 -0
  41. package/dist/actions/get-mural-widgets.d.cts.map +1 -0
  42. package/dist/actions/get-mural-widgets.d.mts +9 -0
  43. package/dist/actions/get-mural-widgets.d.mts.map +1 -0
  44. package/dist/actions/get-mural-widgets.mjs +55 -0
  45. package/dist/actions/get-mural-widgets.mjs.map +1 -0
  46. package/dist/actions/get-room.cjs +27 -0
  47. package/dist/actions/get-room.cjs.map +1 -0
  48. package/dist/actions/get-room.d.cts +9 -0
  49. package/dist/actions/get-room.d.cts.map +1 -0
  50. package/dist/actions/get-room.d.mts +9 -0
  51. package/dist/actions/get-room.d.mts.map +1 -0
  52. package/dist/actions/get-room.mjs +24 -0
  53. package/dist/actions/get-room.mjs.map +1 -0
  54. package/dist/actions/get-workspace.cjs +22 -0
  55. package/dist/actions/get-workspace.cjs.map +1 -0
  56. package/dist/actions/get-workspace.d.cts +9 -0
  57. package/dist/actions/get-workspace.d.cts.map +1 -0
  58. package/dist/actions/get-workspace.d.mts +9 -0
  59. package/dist/actions/get-workspace.d.mts.map +1 -0
  60. package/dist/actions/get-workspace.mjs +19 -0
  61. package/dist/actions/get-workspace.mjs.map +1 -0
  62. package/dist/actions/get-workspaces.cjs +29 -0
  63. package/dist/actions/get-workspaces.cjs.map +1 -0
  64. package/dist/actions/get-workspaces.d.cts +9 -0
  65. package/dist/actions/get-workspaces.d.cts.map +1 -0
  66. package/dist/actions/get-workspaces.d.mts +9 -0
  67. package/dist/actions/get-workspaces.d.mts.map +1 -0
  68. package/dist/actions/get-workspaces.mjs +28 -0
  69. package/dist/actions/get-workspaces.mjs.map +1 -0
  70. package/dist/actions/index.cjs +45 -0
  71. package/dist/actions/index.d.cts +23 -0
  72. package/dist/actions/index.d.mts +23 -0
  73. package/dist/actions/index.mjs +23 -0
  74. package/dist/actions/list-folders.cjs +30 -0
  75. package/dist/actions/list-folders.cjs.map +1 -0
  76. package/dist/actions/list-folders.d.cts +9 -0
  77. package/dist/actions/list-folders.d.cts.map +1 -0
  78. package/dist/actions/list-folders.d.mts +9 -0
  79. package/dist/actions/list-folders.d.mts.map +1 -0
  80. package/dist/actions/list-folders.mjs +29 -0
  81. package/dist/actions/list-folders.mjs.map +1 -0
  82. package/dist/actions/list-open-rooms.cjs +35 -0
  83. package/dist/actions/list-open-rooms.cjs.map +1 -0
  84. package/dist/actions/list-open-rooms.d.cts +9 -0
  85. package/dist/actions/list-open-rooms.d.cts.map +1 -0
  86. package/dist/actions/list-open-rooms.d.mts +9 -0
  87. package/dist/actions/list-open-rooms.d.mts.map +1 -0
  88. package/dist/actions/list-open-rooms.mjs +34 -0
  89. package/dist/actions/list-open-rooms.mjs.map +1 -0
  90. package/dist/actions/list-recent-murals.cjs +36 -0
  91. package/dist/actions/list-recent-murals.cjs.map +1 -0
  92. package/dist/actions/list-recent-murals.d.cts +9 -0
  93. package/dist/actions/list-recent-murals.d.cts.map +1 -0
  94. package/dist/actions/list-recent-murals.d.mts +9 -0
  95. package/dist/actions/list-recent-murals.d.mts.map +1 -0
  96. package/dist/actions/list-recent-murals.mjs +35 -0
  97. package/dist/actions/list-recent-murals.mjs.map +1 -0
  98. package/dist/actions/list-recent-templates.cjs +34 -0
  99. package/dist/actions/list-recent-templates.cjs.map +1 -0
  100. package/dist/actions/list-recent-templates.d.cts +9 -0
  101. package/dist/actions/list-recent-templates.d.cts.map +1 -0
  102. package/dist/actions/list-recent-templates.d.mts +9 -0
  103. package/dist/actions/list-recent-templates.d.mts.map +1 -0
  104. package/dist/actions/list-recent-templates.mjs +33 -0
  105. package/dist/actions/list-recent-templates.mjs.map +1 -0
  106. package/dist/actions/list-room-murals.cjs +41 -0
  107. package/dist/actions/list-room-murals.cjs.map +1 -0
  108. package/dist/actions/list-room-murals.d.cts +9 -0
  109. package/dist/actions/list-room-murals.d.cts.map +1 -0
  110. package/dist/actions/list-room-murals.d.mts +9 -0
  111. package/dist/actions/list-room-murals.d.mts.map +1 -0
  112. package/dist/actions/list-room-murals.mjs +40 -0
  113. package/dist/actions/list-room-murals.mjs.map +1 -0
  114. package/dist/actions/list-room-users.cjs +32 -0
  115. package/dist/actions/list-room-users.cjs.map +1 -0
  116. package/dist/actions/list-room-users.d.cts +9 -0
  117. package/dist/actions/list-room-users.d.cts.map +1 -0
  118. package/dist/actions/list-room-users.d.mts +9 -0
  119. package/dist/actions/list-room-users.d.mts.map +1 -0
  120. package/dist/actions/list-room-users.mjs +31 -0
  121. package/dist/actions/list-room-users.mjs.map +1 -0
  122. package/dist/actions/list-rooms.cjs +35 -0
  123. package/dist/actions/list-rooms.cjs.map +1 -0
  124. package/dist/actions/list-rooms.d.cts +9 -0
  125. package/dist/actions/list-rooms.d.cts.map +1 -0
  126. package/dist/actions/list-rooms.d.mts +9 -0
  127. package/dist/actions/list-rooms.d.mts.map +1 -0
  128. package/dist/actions/list-rooms.mjs +34 -0
  129. package/dist/actions/list-rooms.mjs.map +1 -0
  130. package/dist/actions/list-tags.cjs +23 -0
  131. package/dist/actions/list-tags.cjs.map +1 -0
  132. package/dist/actions/list-tags.d.cts +9 -0
  133. package/dist/actions/list-tags.d.cts.map +1 -0
  134. package/dist/actions/list-tags.d.mts +9 -0
  135. package/dist/actions/list-tags.d.mts.map +1 -0
  136. package/dist/actions/list-tags.mjs +22 -0
  137. package/dist/actions/list-tags.mjs.map +1 -0
  138. package/dist/actions/list-templates.cjs +29 -0
  139. package/dist/actions/list-templates.cjs.map +1 -0
  140. package/dist/actions/list-templates.d.cts +9 -0
  141. package/dist/actions/list-templates.d.cts.map +1 -0
  142. package/dist/actions/list-templates.d.mts +9 -0
  143. package/dist/actions/list-templates.d.mts.map +1 -0
  144. package/dist/actions/list-templates.mjs +28 -0
  145. package/dist/actions/list-templates.mjs.map +1 -0
  146. package/dist/actions/list-workspace-murals.cjs +39 -0
  147. package/dist/actions/list-workspace-murals.cjs.map +1 -0
  148. package/dist/actions/list-workspace-murals.d.cts +9 -0
  149. package/dist/actions/list-workspace-murals.d.cts.map +1 -0
  150. package/dist/actions/list-workspace-murals.d.mts +9 -0
  151. package/dist/actions/list-workspace-murals.d.mts.map +1 -0
  152. package/dist/actions/list-workspace-murals.mjs +38 -0
  153. package/dist/actions/list-workspace-murals.mjs.map +1 -0
  154. package/dist/actions/list-workspace-templates.cjs +35 -0
  155. package/dist/actions/list-workspace-templates.cjs.map +1 -0
  156. package/dist/actions/list-workspace-templates.d.cts +9 -0
  157. package/dist/actions/list-workspace-templates.d.cts.map +1 -0
  158. package/dist/actions/list-workspace-templates.d.mts +9 -0
  159. package/dist/actions/list-workspace-templates.d.mts.map +1 -0
  160. package/dist/actions/list-workspace-templates.mjs +34 -0
  161. package/dist/actions/list-workspace-templates.mjs.map +1 -0
  162. package/dist/actions/search-murals.cjs +35 -0
  163. package/dist/actions/search-murals.cjs.map +1 -0
  164. package/dist/actions/search-murals.d.cts +9 -0
  165. package/dist/actions/search-murals.d.cts.map +1 -0
  166. package/dist/actions/search-murals.d.mts +9 -0
  167. package/dist/actions/search-murals.d.mts.map +1 -0
  168. package/dist/actions/search-murals.mjs +34 -0
  169. package/dist/actions/search-murals.mjs.map +1 -0
  170. package/dist/actions/search-rooms.cjs +36 -0
  171. package/dist/actions/search-rooms.cjs.map +1 -0
  172. package/dist/actions/search-rooms.d.cts +9 -0
  173. package/dist/actions/search-rooms.d.cts.map +1 -0
  174. package/dist/actions/search-rooms.d.mts +9 -0
  175. package/dist/actions/search-rooms.d.mts.map +1 -0
  176. package/dist/actions/search-rooms.mjs +35 -0
  177. package/dist/actions/search-rooms.mjs.map +1 -0
  178. package/dist/actions/search-templates.cjs +32 -0
  179. package/dist/actions/search-templates.cjs.map +1 -0
  180. package/dist/actions/search-templates.d.cts +9 -0
  181. package/dist/actions/search-templates.d.cts.map +1 -0
  182. package/dist/actions/search-templates.d.mts +9 -0
  183. package/dist/actions/search-templates.d.mts.map +1 -0
  184. package/dist/actions/search-templates.mjs +31 -0
  185. package/dist/actions/search-templates.mjs.map +1 -0
  186. package/dist/app.cjs +9 -0
  187. package/dist/app.cjs.map +1 -0
  188. package/dist/app.d.cts +5 -0
  189. package/dist/app.d.cts.map +1 -0
  190. package/dist/app.d.mts +5 -0
  191. package/dist/app.d.mts.map +1 -0
  192. package/dist/app.mjs +10 -0
  193. package/dist/app.mjs.map +1 -0
  194. package/dist/catalog.cjs +15 -0
  195. package/dist/catalog.cjs.map +1 -0
  196. package/dist/catalog.d.cts +14 -0
  197. package/dist/catalog.d.cts.map +1 -0
  198. package/dist/catalog.d.mts +14 -0
  199. package/dist/catalog.d.mts.map +1 -0
  200. package/dist/catalog.mjs +15 -0
  201. package/dist/catalog.mjs.map +1 -0
  202. package/dist/execute.cjs +18 -0
  203. package/dist/execute.cjs.map +1 -0
  204. package/dist/execute.mjs +18 -0
  205. package/dist/execute.mjs.map +1 -0
  206. package/dist/index.cjs +50 -0
  207. package/dist/index.d.cts +25 -0
  208. package/dist/index.d.mts +25 -0
  209. package/dist/index.mjs +26 -0
  210. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/mural
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `mural`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 22
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { muralAuthorizationRequest } from "@keystrokehq/mural/actions";
12
+
13
+ export default defineAgent({
14
+ key: "mural-agent",
15
+ tools: [muralAuthorizationRequest],
16
+ });
17
+ ```
@@ -0,0 +1,21 @@
1
+ const require_app = require("./app.cjs");
2
+ const require_execute = require("./execute.cjs");
3
+ require("zod");
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return require_app.mural.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await require_execute.executeMuralTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ exports.action = action;
20
+
21
+ //# sourceMappingURL=action.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.cjs","names":["mural","executeMuralTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { mural } from \"./app\";\nimport { executeMuralTool } 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 mural.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 executeMuralTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,MAAM,OAAO;EAClB,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,iBAAiB,MAAM,KAAgC,CAAC;EACxF;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ import { mural } from "./app.mjs";
2
+ import { executeMuralTool } from "./execute.mjs";
3
+ import "zod";
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return mural.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await executeMuralTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ export { action };
20
+
21
+ //# sourceMappingURL=action.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { mural } from \"./app\";\nimport { executeMuralTool } 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 mural.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 executeMuralTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,MAAM,OAAO;EAClB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,iBAAiB,MAAM,KAAgC,CAAC;EACxF;CACF,CAAC;AACH"}
@@ -0,0 +1,22 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/authorization-request.ts
4
+ const MuralAuthorizationRequestInput = zod.z.object({
5
+ scope: zod.z.array(zod.z.string()).describe("List of permission scopes to request. Provided as a list of strings; they will be joined with spaces in the URL."),
6
+ state: zod.z.string().describe("Optional opaque value sent and returned in the callback to prevent CSRF and correlate requests.").optional(),
7
+ client_id: zod.z.string().describe("The client identifier for your Mural app (provided when registering your app)."),
8
+ redirect_uri: zod.z.string().describe("The callback URL where users are redirected after granting access. Must match one of your app's registered redirect URLs."),
9
+ response_type: zod.z.string().default("code").describe("Grant type for authorization code flow; must be 'code'.").optional()
10
+ }).describe("Request model for initiating the OAuth 2.0 authorization process with Mural.");
11
+ const MuralAuthorizationRequestOutput = zod.z.object({ authorization_url: zod.z.string().describe("Full URL to which the user's browser must be redirected to start the OAuth flow.") }).describe("Response model returning the URL to initiate the OAuth 2.0 authorization flow.");
12
+ const muralAuthorizationRequest = require_action.action("MURAL_AUTHORIZATION_REQUEST", {
13
+ slug: "mural-authorization-request",
14
+ name: "MURAL Authorization Request",
15
+ description: "Tool to initiate the OAuth 2.0 authorization process. Use when you need to redirect a user to Mural to obtain an authorization code.",
16
+ input: MuralAuthorizationRequestInput,
17
+ output: MuralAuthorizationRequestOutput
18
+ });
19
+ //#endregion
20
+ exports.muralAuthorizationRequest = muralAuthorizationRequest;
21
+
22
+ //# sourceMappingURL=authorization-request.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorization-request.cjs","names":["z","action"],"sources":["../../src/actions/authorization-request.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralAuthorizationRequestInput: z.ZodTypeAny = z.object({\n scope: z.array(z.string()).describe(\"List of permission scopes to request. Provided as a list of strings; they will be joined with spaces in the URL.\"),\n state: z.string().describe(\"Optional opaque value sent and returned in the callback to prevent CSRF and correlate requests.\").optional(),\n client_id: z.string().describe(\"The client identifier for your Mural app (provided when registering your app).\"),\n redirect_uri: z.string().describe(\"The callback URL where users are redirected after granting access. Must match one of your app's registered redirect URLs.\"),\n response_type: z.string().default(\"code\").describe(\"Grant type for authorization code flow; must be 'code'.\").optional(),\n}).describe(\"Request model for initiating the OAuth 2.0 authorization process with Mural.\");\nexport const MuralAuthorizationRequestOutput: z.ZodTypeAny = z.object({\n authorization_url: z.string().describe(\"Full URL to which the user's browser must be redirected to start the OAuth flow.\"),\n}).describe(\"Response model returning the URL to initiate the OAuth 2.0 authorization flow.\");\n\nexport const muralAuthorizationRequest = action(\"MURAL_AUTHORIZATION_REQUEST\", {\n slug: \"mural-authorization-request\",\n name: \"MURAL Authorization Request\",\n description: \"Tool to initiate the OAuth 2.0 authorization process. Use when you need to redirect a user to Mural to obtain an authorization code.\",\n input: MuralAuthorizationRequestInput,\n output: MuralAuthorizationRequestOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO;CACnE,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kHAAkH;CACtJ,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iGAAiG,CAAC,CAAC,SAAS;CACvI,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF;CAC/G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2HAA2H;CAC7J,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,QAAQ,MAAM,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;AACzH,CAAC,CAAC,CAAC,SAAS,8EAA8E;AAC1F,MAAa,kCAAgDA,IAAAA,EAAE,OAAO,EACpE,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,EAC3H,CAAC,CAAC,CAAC,SAAS,gFAAgF;AAE5F,MAAa,4BAA4BC,eAAAA,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/authorization-request.d.ts
4
+ declare const MuralAuthorizationRequestInput: z.ZodTypeAny;
5
+ declare const MuralAuthorizationRequestOutput: z.ZodTypeAny;
6
+ declare const muralAuthorizationRequest: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralAuthorizationRequest };
9
+ //# sourceMappingURL=authorization-request.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorization-request.d.cts","names":[],"sources":["../../src/actions/authorization-request.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAM4C;AAAA,cAC9E,+BAAA,EAAiC,CAAA,CAAE,UAE6C;AAAA,cAEhF,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/authorization-request.d.ts
4
+ declare const MuralAuthorizationRequestInput: z.ZodTypeAny;
5
+ declare const MuralAuthorizationRequestOutput: z.ZodTypeAny;
6
+ declare const muralAuthorizationRequest: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralAuthorizationRequest };
9
+ //# sourceMappingURL=authorization-request.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorization-request.d.mts","names":[],"sources":["../../src/actions/authorization-request.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAM4C;AAAA,cAC9E,+BAAA,EAAiC,CAAA,CAAE,UAE6C;AAAA,cAEhF,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,19 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const muralAuthorizationRequest = action("MURAL_AUTHORIZATION_REQUEST", {
4
+ slug: "mural-authorization-request",
5
+ name: "MURAL Authorization Request",
6
+ description: "Tool to initiate the OAuth 2.0 authorization process. Use when you need to redirect a user to Mural to obtain an authorization code.",
7
+ input: z.object({
8
+ scope: z.array(z.string()).describe("List of permission scopes to request. Provided as a list of strings; they will be joined with spaces in the URL."),
9
+ state: z.string().describe("Optional opaque value sent and returned in the callback to prevent CSRF and correlate requests.").optional(),
10
+ client_id: z.string().describe("The client identifier for your Mural app (provided when registering your app)."),
11
+ redirect_uri: z.string().describe("The callback URL where users are redirected after granting access. Must match one of your app's registered redirect URLs."),
12
+ response_type: z.string().default("code").describe("Grant type for authorization code flow; must be 'code'.").optional()
13
+ }).describe("Request model for initiating the OAuth 2.0 authorization process with Mural."),
14
+ output: z.object({ authorization_url: z.string().describe("Full URL to which the user's browser must be redirected to start the OAuth flow.") }).describe("Response model returning the URL to initiate the OAuth 2.0 authorization flow.")
15
+ });
16
+ //#endregion
17
+ export { muralAuthorizationRequest };
18
+
19
+ //# sourceMappingURL=authorization-request.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authorization-request.mjs","names":[],"sources":["../../src/actions/authorization-request.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralAuthorizationRequestInput: z.ZodTypeAny = z.object({\n scope: z.array(z.string()).describe(\"List of permission scopes to request. Provided as a list of strings; they will be joined with spaces in the URL.\"),\n state: z.string().describe(\"Optional opaque value sent and returned in the callback to prevent CSRF and correlate requests.\").optional(),\n client_id: z.string().describe(\"The client identifier for your Mural app (provided when registering your app).\"),\n redirect_uri: z.string().describe(\"The callback URL where users are redirected after granting access. Must match one of your app's registered redirect URLs.\"),\n response_type: z.string().default(\"code\").describe(\"Grant type for authorization code flow; must be 'code'.\").optional(),\n}).describe(\"Request model for initiating the OAuth 2.0 authorization process with Mural.\");\nexport const MuralAuthorizationRequestOutput: z.ZodTypeAny = z.object({\n authorization_url: z.string().describe(\"Full URL to which the user's browser must be redirected to start the OAuth flow.\"),\n}).describe(\"Response model returning the URL to initiate the OAuth 2.0 authorization flow.\");\n\nexport const muralAuthorizationRequest = action(\"MURAL_AUTHORIZATION_REQUEST\", {\n slug: \"mural-authorization-request\",\n name: \"MURAL Authorization Request\",\n description: \"Tool to initiate the OAuth 2.0 authorization process. Use when you need to redirect a user to Mural to obtain an authorization code.\",\n input: MuralAuthorizationRequestInput,\n output: MuralAuthorizationRequestOutput,\n});\n"],"mappings":";;AAeA,MAAa,4BAA4B,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAf0D,EAAE,OAAO;EACnE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,kHAAkH;EACtJ,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,iGAAiG,CAAC,CAAC,SAAS;EACvI,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF;EAC/G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,2HAA2H;EAC7J,eAAe,EAAE,OAAO,CAAC,CAAC,QAAQ,MAAM,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACzH,CAAC,CAAC,CAAC,SAAS,8EASH;CACP,QAT2D,EAAE,OAAO,EACpE,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,EAC3H,CAAC,CAAC,CAAC,SAAS,gFAOF;AACV,CAAC"}
@@ -0,0 +1,77 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/create-sticky-note.ts
4
+ const MuralCreateStickyNoteInput = zod.z.object({
5
+ muralId: zod.z.string().describe("Unique identifier of the mural"),
6
+ stickies: zod.z.array(zod.z.object({
7
+ x: zod.z.number().describe("X-coordinate position in pixels (required)"),
8
+ y: zod.z.number().describe("Y-coordinate position in pixels (required)"),
9
+ text: zod.z.string().describe("Text content of the sticky note").optional(),
10
+ shape: zod.z.enum(["rectangle", "circle"]).default("rectangle").describe("Shape of the sticky note ('rectangle' or 'circle')").optional(),
11
+ style: zod.z.object({
12
+ bold: zod.z.boolean().describe("Whether text is bold. Defaults to false if not provided.").optional(),
13
+ font: zod.z.string().describe("Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.").optional(),
14
+ border: zod.z.boolean().describe("Whether the sticky note has a border. Defaults to false if not provided.").optional(),
15
+ italic: zod.z.boolean().describe("Whether text is italicized. Defaults to false if not provided.").optional(),
16
+ strike: zod.z.boolean().describe("Whether text has strikethrough. Defaults to false if not provided.").optional(),
17
+ fontSize: zod.z.number().int().describe("Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.").optional(),
18
+ textAlign: zod.z.enum([
19
+ "left",
20
+ "center",
21
+ "right"
22
+ ]).describe("Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.").optional(),
23
+ underline: zod.z.boolean().describe("Whether text is underlined. Defaults to false if not provided.").optional(),
24
+ backgroundColor: zod.z.string().describe("Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).").optional()
25
+ }).describe("Styling options for a sticky note widget.\n\nAll properties are optional. When not provided, MURAL uses its default styling.").optional(),
26
+ width: zod.z.number().describe("Width of the sticky note in pixels").optional(),
27
+ areaId: zod.z.string().describe("ID of the area widget containing this sticky note").optional(),
28
+ height: zod.z.number().describe("Height of the sticky note in pixels").optional(),
29
+ rotation: zod.z.number().describe("Rotation angle of the widget in degrees").optional(),
30
+ stackable: zod.z.boolean().describe("Whether the widget is stackable within areas").optional()
31
+ }).describe("Definition of a sticky note to create on a mural.\n\nEach sticky note must be an object/dictionary with x and y coordinates.\nDo NOT pass strings or nested objects - pass a direct object with properties.\n\nExample of correct format:\n{\"x\": 100, \"y\": 200, \"text\": \"My note\", \"shape\": \"rectangle\"}")).describe("Array of sticky note objects to create. Each object must have 'x' and 'y' coordinates. Pass objects directly, not strings or nested structures. Maximum 1000 items.")
32
+ }).describe("Request model for creating sticky note widgets on a mural.\n\nThe 'stickies' parameter must be a direct array of sticky note objects.\nEach object must contain at minimum the 'x' and 'y' coordinate fields.\n\nCORRECT format:\n{\n \"muralId\": \"your-mural-id\",\n \"stickies\": [\n {\"x\": 100, \"y\": 200, \"text\": \"Note 1\"},\n {\"x\": 300, \"y\": 400, \"text\": \"Note 2\"}\n ]\n}\n\nINCORRECT formats (DO NOT USE):\n- Nested object: {\"stickies\": {\"stickies\": [...]}}\n- String values: {\"stickies\": [\"sticky1\", \"sticky2\"]}\n- Missing coordinates: {\"stickies\": [{\"text\": \"Note\"}]}");
33
+ const MuralCreateStickyNote_StickyNoteStyleSchema = zod.z.object({
34
+ bold: zod.z.boolean().describe("Whether text is bold. Defaults to false if not provided.").nullable().optional(),
35
+ font: zod.z.string().describe("Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.").nullable().optional(),
36
+ border: zod.z.boolean().describe("Whether the sticky note has a border. Defaults to false if not provided.").nullable().optional(),
37
+ italic: zod.z.boolean().describe("Whether text is italicized. Defaults to false if not provided.").nullable().optional(),
38
+ strike: zod.z.boolean().describe("Whether text has strikethrough. Defaults to false if not provided.").nullable().optional(),
39
+ fontSize: zod.z.number().int().describe("Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.").nullable().optional(),
40
+ textAlign: zod.z.enum([
41
+ "left",
42
+ "center",
43
+ "right"
44
+ ]).describe("Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.").nullable().optional(),
45
+ underline: zod.z.boolean().describe("Whether text is underlined. Defaults to false if not provided.").nullable().optional(),
46
+ backgroundColor: zod.z.string().describe("Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).").nullable().optional()
47
+ }).describe("Styling options for a sticky note widget.\n\nAll properties are optional. When not provided, MURAL uses its default styling.");
48
+ const MuralCreateStickyNote_StickyNoteUserSchema = zod.z.object({
49
+ lastName: zod.z.string().describe("Last name of the user"),
50
+ firstName: zod.z.string().describe("First name of the user")
51
+ }).describe("Information about a user associated with a widget.");
52
+ const MuralCreateStickyNote_StickyNoteResponseSchema = zod.z.object({
53
+ x: zod.z.number().describe("X-coordinate position in pixels"),
54
+ y: zod.z.number().describe("Y-coordinate position in pixels"),
55
+ id: zod.z.string().describe("Unique identifier of the widget"),
56
+ text: zod.z.string().describe("Text content of the sticky note").nullable().optional(),
57
+ type: zod.z.string().describe("Widget type, always 'sticky note'"),
58
+ style: MuralCreateStickyNote_StickyNoteStyleSchema.nullable(),
59
+ width: zod.z.number().describe("Width of the widget in pixels"),
60
+ height: zod.z.number().describe("Height of the widget in pixels"),
61
+ createdBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),
62
+ createdOn: zod.z.number().int().describe("Timestamp (ms since epoch) when created"),
63
+ updatedBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),
64
+ updatedOn: zod.z.number().int().describe("Timestamp (ms since epoch) when last updated")
65
+ }).describe("Schema for a created sticky note widget.");
66
+ const MuralCreateStickyNoteOutput = zod.z.object({ value: zod.z.array(MuralCreateStickyNote_StickyNoteResponseSchema).describe("List of created sticky note widgets") }).describe("Response model for creating sticky note widgets.");
67
+ const muralCreateStickyNote = require_action.action("MURAL_CREATE_STICKY_NOTE", {
68
+ slug: "mural-create-sticky-note",
69
+ name: "Create sticky note",
70
+ description: "Create one or more sticky note widgets on a mural. Each sticky note must be a properly structured object with required x and y coordinates. Pass the 'stickies' parameter as a direct array of objects - NOT strings, NOT nested objects. Example usage: { \"muralId\": \"mural-id-here\", \"stickies\": [ {\"x\": 100, \"y\": 200, \"text\": \"First note\"}, {\"x\": 300, \"y\": 400, \"text\": \"Second note\", \"shape\": \"circle\"} ] }",
71
+ input: MuralCreateStickyNoteInput,
72
+ output: MuralCreateStickyNoteOutput
73
+ });
74
+ //#endregion
75
+ exports.muralCreateStickyNote = muralCreateStickyNote;
76
+
77
+ //# sourceMappingURL=create-sticky-note.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-sticky-note.cjs","names":["z","action"],"sources":["../../src/actions/create-sticky-note.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralCreateStickyNoteInput: z.ZodTypeAny = z.object({\n muralId: z.string().describe(\"Unique identifier of the mural\"),\n stickies: z.array(z.object({\n x: z.number().describe(\"X-coordinate position in pixels (required)\"),\n y: z.number().describe(\"Y-coordinate position in pixels (required)\"),\n text: z.string().describe(\"Text content of the sticky note\").optional(),\n shape: z.enum([\"rectangle\", \"circle\"]).default(\"rectangle\").describe(\"Shape of the sticky note ('rectangle' or 'circle')\").optional(),\n style: z.object({\n bold: z.boolean().describe(\"Whether text is bold. Defaults to false if not provided.\").optional(),\n font: z.string().describe(\"Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.\").optional(),\n border: z.boolean().describe(\"Whether the sticky note has a border. Defaults to false if not provided.\").optional(),\n italic: z.boolean().describe(\"Whether text is italicized. Defaults to false if not provided.\").optional(),\n strike: z.boolean().describe(\"Whether text has strikethrough. Defaults to false if not provided.\").optional(),\n fontSize: z.number().int().describe(\"Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.\").optional(),\n textAlign: z.enum([\"left\", \"center\", \"right\"]).describe(\"Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.\").optional(),\n underline: z.boolean().describe(\"Whether text is underlined. Defaults to false if not provided.\").optional(),\n backgroundColor: z.string().describe(\"Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).\").optional(),\n}).describe(\"Styling options for a sticky note widget.\\n\\nAll properties are optional. When not provided, MURAL uses its default styling.\").optional(),\n width: z.number().describe(\"Width of the sticky note in pixels\").optional(),\n areaId: z.string().describe(\"ID of the area widget containing this sticky note\").optional(),\n height: z.number().describe(\"Height of the sticky note in pixels\").optional(),\n rotation: z.number().describe(\"Rotation angle of the widget in degrees\").optional(),\n stackable: z.boolean().describe(\"Whether the widget is stackable within areas\").optional(),\n}).describe(\"Definition of a sticky note to create on a mural.\\n\\nEach sticky note must be an object/dictionary with x and y coordinates.\\nDo NOT pass strings or nested objects - pass a direct object with properties.\\n\\nExample of correct format:\\n{\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"My note\\\", \\\"shape\\\": \\\"rectangle\\\"}\")).describe(\"Array of sticky note objects to create. Each object must have 'x' and 'y' coordinates. Pass objects directly, not strings or nested structures. Maximum 1000 items.\"),\n}).describe(\"Request model for creating sticky note widgets on a mural.\\n\\nThe 'stickies' parameter must be a direct array of sticky note objects.\\nEach object must contain at minimum the 'x' and 'y' coordinate fields.\\n\\nCORRECT format:\\n{\\n \\\"muralId\\\": \\\"your-mural-id\\\",\\n \\\"stickies\\\": [\\n {\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"Note 1\\\"},\\n {\\\"x\\\": 300, \\\"y\\\": 400, \\\"text\\\": \\\"Note 2\\\"}\\n ]\\n}\\n\\nINCORRECT formats (DO NOT USE):\\n- Nested object: {\\\"stickies\\\": {\\\"stickies\\\": [...]}}\\n- String values: {\\\"stickies\\\": [\\\"sticky1\\\", \\\"sticky2\\\"]}\\n- Missing coordinates: {\\\"stickies\\\": [{\\\"text\\\": \\\"Note\\\"}]}\");\nconst MuralCreateStickyNote_StickyNoteStyleSchema: z.ZodTypeAny = z.object({\n bold: z.boolean().describe(\"Whether text is bold. Defaults to false if not provided.\").nullable().optional(),\n font: z.string().describe(\"Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.\").nullable().optional(),\n border: z.boolean().describe(\"Whether the sticky note has a border. Defaults to false if not provided.\").nullable().optional(),\n italic: z.boolean().describe(\"Whether text is italicized. Defaults to false if not provided.\").nullable().optional(),\n strike: z.boolean().describe(\"Whether text has strikethrough. Defaults to false if not provided.\").nullable().optional(),\n fontSize: z.number().int().describe(\"Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.\").nullable().optional(),\n textAlign: z.enum([\"left\", \"center\", \"right\"]).describe(\"Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.\").nullable().optional(),\n underline: z.boolean().describe(\"Whether text is underlined. Defaults to false if not provided.\").nullable().optional(),\n backgroundColor: z.string().describe(\"Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).\").nullable().optional(),\n}).describe(\"Styling options for a sticky note widget.\\n\\nAll properties are optional. When not provided, MURAL uses its default styling.\");\nconst MuralCreateStickyNote_StickyNoteUserSchema: z.ZodTypeAny = z.object({\n lastName: z.string().describe(\"Last name of the user\"),\n firstName: z.string().describe(\"First name of the user\"),\n}).describe(\"Information about a user associated with a widget.\");\nconst MuralCreateStickyNote_StickyNoteResponseSchema: z.ZodTypeAny = z.object({\n x: z.number().describe(\"X-coordinate position in pixels\"),\n y: z.number().describe(\"Y-coordinate position in pixels\"),\n id: z.string().describe(\"Unique identifier of the widget\"),\n text: z.string().describe(\"Text content of the sticky note\").nullable().optional(),\n type: z.string().describe(\"Widget type, always 'sticky note'\"),\n style: MuralCreateStickyNote_StickyNoteStyleSchema.nullable(),\n width: z.number().describe(\"Width of the widget in pixels\"),\n height: z.number().describe(\"Height of the widget in pixels\"),\n createdBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),\n createdOn: z.number().int().describe(\"Timestamp (ms since epoch) when created\"),\n updatedBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),\n updatedOn: z.number().int().describe(\"Timestamp (ms since epoch) when last updated\"),\n}).describe(\"Schema for a created sticky note widget.\");\nexport const MuralCreateStickyNoteOutput: z.ZodTypeAny = z.object({\n value: z.array(MuralCreateStickyNote_StickyNoteResponseSchema).describe(\"List of created sticky note widgets\"),\n}).describe(\"Response model for creating sticky note widgets.\");\n\nexport const muralCreateStickyNote = action(\"MURAL_CREATE_STICKY_NOTE\", {\n slug: \"mural-create-sticky-note\",\n name: \"Create sticky note\",\n description: \"Create one or more sticky note widgets on a mural. Each sticky note must be a properly structured object with required x and y coordinates. Pass the 'stickies' parameter as a direct array of objects - NOT strings, NOT nested objects. Example usage: { \\\"muralId\\\": \\\"mural-id-here\\\", \\\"stickies\\\": [ {\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"First note\\\"}, {\\\"x\\\": 300, \\\"y\\\": 400, \\\"text\\\": \\\"Second note\\\", \\\"shape\\\": \\\"circle\\\"} ] }\",\n input: MuralCreateStickyNoteInput,\n output: MuralCreateStickyNoteOutput,\n});\n"],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/create-sticky-note.d.ts
4
+ declare const MuralCreateStickyNoteInput: z.ZodTypeAny;
5
+ declare const MuralCreateStickyNoteOutput: z.ZodTypeAny;
6
+ declare const muralCreateStickyNote: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralCreateStickyNote };
9
+ //# sourceMappingURL=create-sticky-note.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-sticky-note.d.cts","names":[],"sources":["../../src/actions/create-sticky-note.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAwBmlB;AAAA,cA8BjnB,2BAAA,EAA6B,CAAA,CAAE,UAEmB;AAAA,cAElD,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/create-sticky-note.d.ts
4
+ declare const MuralCreateStickyNoteInput: z.ZodTypeAny;
5
+ declare const MuralCreateStickyNoteOutput: z.ZodTypeAny;
6
+ declare const muralCreateStickyNote: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralCreateStickyNote };
9
+ //# sourceMappingURL=create-sticky-note.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-sticky-note.d.mts","names":[],"sources":["../../src/actions/create-sticky-note.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAwBmlB;AAAA,cA8BjnB,2BAAA,EAA6B,CAAA,CAAE,UAEmB;AAAA,cAElD,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,76 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/create-sticky-note.ts
4
+ const MuralCreateStickyNoteInput = z.object({
5
+ muralId: z.string().describe("Unique identifier of the mural"),
6
+ stickies: z.array(z.object({
7
+ x: z.number().describe("X-coordinate position in pixels (required)"),
8
+ y: z.number().describe("Y-coordinate position in pixels (required)"),
9
+ text: z.string().describe("Text content of the sticky note").optional(),
10
+ shape: z.enum(["rectangle", "circle"]).default("rectangle").describe("Shape of the sticky note ('rectangle' or 'circle')").optional(),
11
+ style: z.object({
12
+ bold: z.boolean().describe("Whether text is bold. Defaults to false if not provided.").optional(),
13
+ font: z.string().describe("Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.").optional(),
14
+ border: z.boolean().describe("Whether the sticky note has a border. Defaults to false if not provided.").optional(),
15
+ italic: z.boolean().describe("Whether text is italicized. Defaults to false if not provided.").optional(),
16
+ strike: z.boolean().describe("Whether text has strikethrough. Defaults to false if not provided.").optional(),
17
+ fontSize: z.number().int().describe("Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.").optional(),
18
+ textAlign: z.enum([
19
+ "left",
20
+ "center",
21
+ "right"
22
+ ]).describe("Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.").optional(),
23
+ underline: z.boolean().describe("Whether text is underlined. Defaults to false if not provided.").optional(),
24
+ backgroundColor: z.string().describe("Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).").optional()
25
+ }).describe("Styling options for a sticky note widget.\n\nAll properties are optional. When not provided, MURAL uses its default styling.").optional(),
26
+ width: z.number().describe("Width of the sticky note in pixels").optional(),
27
+ areaId: z.string().describe("ID of the area widget containing this sticky note").optional(),
28
+ height: z.number().describe("Height of the sticky note in pixels").optional(),
29
+ rotation: z.number().describe("Rotation angle of the widget in degrees").optional(),
30
+ stackable: z.boolean().describe("Whether the widget is stackable within areas").optional()
31
+ }).describe("Definition of a sticky note to create on a mural.\n\nEach sticky note must be an object/dictionary with x and y coordinates.\nDo NOT pass strings or nested objects - pass a direct object with properties.\n\nExample of correct format:\n{\"x\": 100, \"y\": 200, \"text\": \"My note\", \"shape\": \"rectangle\"}")).describe("Array of sticky note objects to create. Each object must have 'x' and 'y' coordinates. Pass objects directly, not strings or nested structures. Maximum 1000 items.")
32
+ }).describe("Request model for creating sticky note widgets on a mural.\n\nThe 'stickies' parameter must be a direct array of sticky note objects.\nEach object must contain at minimum the 'x' and 'y' coordinate fields.\n\nCORRECT format:\n{\n \"muralId\": \"your-mural-id\",\n \"stickies\": [\n {\"x\": 100, \"y\": 200, \"text\": \"Note 1\"},\n {\"x\": 300, \"y\": 400, \"text\": \"Note 2\"}\n ]\n}\n\nINCORRECT formats (DO NOT USE):\n- Nested object: {\"stickies\": {\"stickies\": [...]}}\n- String values: {\"stickies\": [\"sticky1\", \"sticky2\"]}\n- Missing coordinates: {\"stickies\": [{\"text\": \"Note\"}]}");
33
+ const MuralCreateStickyNote_StickyNoteStyleSchema = z.object({
34
+ bold: z.boolean().describe("Whether text is bold. Defaults to false if not provided.").nullable().optional(),
35
+ font: z.string().describe("Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.").nullable().optional(),
36
+ border: z.boolean().describe("Whether the sticky note has a border. Defaults to false if not provided.").nullable().optional(),
37
+ italic: z.boolean().describe("Whether text is italicized. Defaults to false if not provided.").nullable().optional(),
38
+ strike: z.boolean().describe("Whether text has strikethrough. Defaults to false if not provided.").nullable().optional(),
39
+ fontSize: z.number().int().describe("Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.").nullable().optional(),
40
+ textAlign: z.enum([
41
+ "left",
42
+ "center",
43
+ "right"
44
+ ]).describe("Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.").nullable().optional(),
45
+ underline: z.boolean().describe("Whether text is underlined. Defaults to false if not provided.").nullable().optional(),
46
+ backgroundColor: z.string().describe("Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).").nullable().optional()
47
+ }).describe("Styling options for a sticky note widget.\n\nAll properties are optional. When not provided, MURAL uses its default styling.");
48
+ const MuralCreateStickyNote_StickyNoteUserSchema = z.object({
49
+ lastName: z.string().describe("Last name of the user"),
50
+ firstName: z.string().describe("First name of the user")
51
+ }).describe("Information about a user associated with a widget.");
52
+ const MuralCreateStickyNote_StickyNoteResponseSchema = z.object({
53
+ x: z.number().describe("X-coordinate position in pixels"),
54
+ y: z.number().describe("Y-coordinate position in pixels"),
55
+ id: z.string().describe("Unique identifier of the widget"),
56
+ text: z.string().describe("Text content of the sticky note").nullable().optional(),
57
+ type: z.string().describe("Widget type, always 'sticky note'"),
58
+ style: MuralCreateStickyNote_StickyNoteStyleSchema.nullable(),
59
+ width: z.number().describe("Width of the widget in pixels"),
60
+ height: z.number().describe("Height of the widget in pixels"),
61
+ createdBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),
62
+ createdOn: z.number().int().describe("Timestamp (ms since epoch) when created"),
63
+ updatedBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),
64
+ updatedOn: z.number().int().describe("Timestamp (ms since epoch) when last updated")
65
+ }).describe("Schema for a created sticky note widget.");
66
+ const muralCreateStickyNote = action("MURAL_CREATE_STICKY_NOTE", {
67
+ slug: "mural-create-sticky-note",
68
+ name: "Create sticky note",
69
+ description: "Create one or more sticky note widgets on a mural. Each sticky note must be a properly structured object with required x and y coordinates. Pass the 'stickies' parameter as a direct array of objects - NOT strings, NOT nested objects. Example usage: { \"muralId\": \"mural-id-here\", \"stickies\": [ {\"x\": 100, \"y\": 200, \"text\": \"First note\"}, {\"x\": 300, \"y\": 400, \"text\": \"Second note\", \"shape\": \"circle\"} ] }",
70
+ input: MuralCreateStickyNoteInput,
71
+ output: z.object({ value: z.array(MuralCreateStickyNote_StickyNoteResponseSchema).describe("List of created sticky note widgets") }).describe("Response model for creating sticky note widgets.")
72
+ });
73
+ //#endregion
74
+ export { muralCreateStickyNote };
75
+
76
+ //# sourceMappingURL=create-sticky-note.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-sticky-note.mjs","names":[],"sources":["../../src/actions/create-sticky-note.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralCreateStickyNoteInput: z.ZodTypeAny = z.object({\n muralId: z.string().describe(\"Unique identifier of the mural\"),\n stickies: z.array(z.object({\n x: z.number().describe(\"X-coordinate position in pixels (required)\"),\n y: z.number().describe(\"Y-coordinate position in pixels (required)\"),\n text: z.string().describe(\"Text content of the sticky note\").optional(),\n shape: z.enum([\"rectangle\", \"circle\"]).default(\"rectangle\").describe(\"Shape of the sticky note ('rectangle' or 'circle')\").optional(),\n style: z.object({\n bold: z.boolean().describe(\"Whether text is bold. Defaults to false if not provided.\").optional(),\n font: z.string().describe(\"Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.\").optional(),\n border: z.boolean().describe(\"Whether the sticky note has a border. Defaults to false if not provided.\").optional(),\n italic: z.boolean().describe(\"Whether text is italicized. Defaults to false if not provided.\").optional(),\n strike: z.boolean().describe(\"Whether text has strikethrough. Defaults to false if not provided.\").optional(),\n fontSize: z.number().int().describe(\"Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.\").optional(),\n textAlign: z.enum([\"left\", \"center\", \"right\"]).describe(\"Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.\").optional(),\n underline: z.boolean().describe(\"Whether text is underlined. Defaults to false if not provided.\").optional(),\n backgroundColor: z.string().describe(\"Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).\").optional(),\n}).describe(\"Styling options for a sticky note widget.\\n\\nAll properties are optional. When not provided, MURAL uses its default styling.\").optional(),\n width: z.number().describe(\"Width of the sticky note in pixels\").optional(),\n areaId: z.string().describe(\"ID of the area widget containing this sticky note\").optional(),\n height: z.number().describe(\"Height of the sticky note in pixels\").optional(),\n rotation: z.number().describe(\"Rotation angle of the widget in degrees\").optional(),\n stackable: z.boolean().describe(\"Whether the widget is stackable within areas\").optional(),\n}).describe(\"Definition of a sticky note to create on a mural.\\n\\nEach sticky note must be an object/dictionary with x and y coordinates.\\nDo NOT pass strings or nested objects - pass a direct object with properties.\\n\\nExample of correct format:\\n{\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"My note\\\", \\\"shape\\\": \\\"rectangle\\\"}\")).describe(\"Array of sticky note objects to create. Each object must have 'x' and 'y' coordinates. Pass objects directly, not strings or nested structures. Maximum 1000 items.\"),\n}).describe(\"Request model for creating sticky note widgets on a mural.\\n\\nThe 'stickies' parameter must be a direct array of sticky note objects.\\nEach object must contain at minimum the 'x' and 'y' coordinate fields.\\n\\nCORRECT format:\\n{\\n \\\"muralId\\\": \\\"your-mural-id\\\",\\n \\\"stickies\\\": [\\n {\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"Note 1\\\"},\\n {\\\"x\\\": 300, \\\"y\\\": 400, \\\"text\\\": \\\"Note 2\\\"}\\n ]\\n}\\n\\nINCORRECT formats (DO NOT USE):\\n- Nested object: {\\\"stickies\\\": {\\\"stickies\\\": [...]}}\\n- String values: {\\\"stickies\\\": [\\\"sticky1\\\", \\\"sticky2\\\"]}\\n- Missing coordinates: {\\\"stickies\\\": [{\\\"text\\\": \\\"Note\\\"}]}\");\nconst MuralCreateStickyNote_StickyNoteStyleSchema: z.ZodTypeAny = z.object({\n bold: z.boolean().describe(\"Whether text is bold. Defaults to false if not provided.\").nullable().optional(),\n font: z.string().describe(\"Font family for text (e.g., 'proxima-nova', 'marker-felt'). If not provided, defaults to 'proxima-nova'.\").nullable().optional(),\n border: z.boolean().describe(\"Whether the sticky note has a border. Defaults to false if not provided.\").nullable().optional(),\n italic: z.boolean().describe(\"Whether text is italicized. Defaults to false if not provided.\").nullable().optional(),\n strike: z.boolean().describe(\"Whether text has strikethrough. Defaults to false if not provided.\").nullable().optional(),\n fontSize: z.number().int().describe(\"Font size in pixels (e.g., 15, 18, 23). If not provided, defaults to 23.\").nullable().optional(),\n textAlign: z.enum([\"left\", \"center\", \"right\"]).describe(\"Text alignment within the note: 'left', 'center', or 'right'. Defaults to 'center' if not provided.\").nullable().optional(),\n underline: z.boolean().describe(\"Whether text is underlined. Defaults to false if not provided.\").nullable().optional(),\n backgroundColor: z.string().describe(\"Background color in 8-character hex RGBA format (e.g., '#FF6B6BFF'). Format: #RRGGBBAA where AA is alpha/opacity (FF=opaque, 00=transparent). If not provided, MURAL uses default yellow (#FCFE7DFF).\").nullable().optional(),\n}).describe(\"Styling options for a sticky note widget.\\n\\nAll properties are optional. When not provided, MURAL uses its default styling.\");\nconst MuralCreateStickyNote_StickyNoteUserSchema: z.ZodTypeAny = z.object({\n lastName: z.string().describe(\"Last name of the user\"),\n firstName: z.string().describe(\"First name of the user\"),\n}).describe(\"Information about a user associated with a widget.\");\nconst MuralCreateStickyNote_StickyNoteResponseSchema: z.ZodTypeAny = z.object({\n x: z.number().describe(\"X-coordinate position in pixels\"),\n y: z.number().describe(\"Y-coordinate position in pixels\"),\n id: z.string().describe(\"Unique identifier of the widget\"),\n text: z.string().describe(\"Text content of the sticky note\").nullable().optional(),\n type: z.string().describe(\"Widget type, always 'sticky note'\"),\n style: MuralCreateStickyNote_StickyNoteStyleSchema.nullable(),\n width: z.number().describe(\"Width of the widget in pixels\"),\n height: z.number().describe(\"Height of the widget in pixels\"),\n createdBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),\n createdOn: z.number().int().describe(\"Timestamp (ms since epoch) when created\"),\n updatedBy: MuralCreateStickyNote_StickyNoteUserSchema.nullable(),\n updatedOn: z.number().int().describe(\"Timestamp (ms since epoch) when last updated\"),\n}).describe(\"Schema for a created sticky note widget.\");\nexport const MuralCreateStickyNoteOutput: z.ZodTypeAny = z.object({\n value: z.array(MuralCreateStickyNote_StickyNoteResponseSchema).describe(\"List of created sticky note widgets\"),\n}).describe(\"Response model for creating sticky note widgets.\");\n\nexport const muralCreateStickyNote = action(\"MURAL_CREATE_STICKY_NOTE\", {\n slug: \"mural-create-sticky-note\",\n name: \"Create sticky note\",\n description: \"Create one or more sticky note widgets on a mural. Each sticky note must be a properly structured object with required x and y coordinates. Pass the 'stickies' parameter as a direct array of objects - NOT strings, NOT nested objects. Example usage: { \\\"muralId\\\": \\\"mural-id-here\\\", \\\"stickies\\\": [ {\\\"x\\\": 100, \\\"y\\\": 200, \\\"text\\\": \\\"First note\\\"}, {\\\"x\\\": 300, \\\"y\\\": 400, \\\"text\\\": \\\"Second note\\\", \\\"shape\\\": \\\"circle\\\"} ] }\",\n input: MuralCreateStickyNoteInput,\n output: MuralCreateStickyNoteOutput,\n});\n"],"mappings":"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"}
@@ -0,0 +1,25 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-current-user.ts
4
+ const MuralGetCurrentUserInput = zod.z.object({}).describe("Request model for retrieving information about the currently authenticated user.");
5
+ const MuralGetCurrentUserOutput = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier for the current user"),
7
+ type: zod.z.string().describe("Type of the user"),
8
+ email: zod.z.string().describe("Email address of the current user"),
9
+ avatar: zod.z.string().describe("URL to the user's avatar image"),
10
+ lastName: zod.z.string().describe("Last name of the current user"),
11
+ createdOn: zod.z.number().int().describe("Timestamp when the user was created (timestamp in ms)"),
12
+ firstName: zod.z.string().describe("First name of the current user"),
13
+ lastActiveWorkspace: zod.z.string().describe("Last active workspace ID")
14
+ }).describe("Response model for retrieving the current user's details.");
15
+ const muralGetCurrentUser = require_action.action("MURAL_GET_CURRENT_USER", {
16
+ slug: "mural-get-current-user",
17
+ name: "Get current user",
18
+ description: "Tool to retrieve information about the currently authenticated user. Use when you need current user details after authentication.",
19
+ input: MuralGetCurrentUserInput,
20
+ output: MuralGetCurrentUserOutput
21
+ });
22
+ //#endregion
23
+ exports.muralGetCurrentUser = muralGetCurrentUser;
24
+
25
+ //# sourceMappingURL=get-current-user.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-current-user.cjs","names":["z","action"],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetCurrentUserInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving information about the currently authenticated user.\");\nexport const MuralGetCurrentUserOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the current user\"),\n type: z.string().describe(\"Type of the user\"),\n email: z.string().describe(\"Email address of the current user\"),\n avatar: z.string().describe(\"URL to the user's avatar image\"),\n lastName: z.string().describe(\"Last name of the current user\"),\n createdOn: z.number().int().describe(\"Timestamp when the user was created (timestamp in ms)\"),\n firstName: z.string().describe(\"First name of the current user\"),\n lastActiveWorkspace: z.string().describe(\"Last active workspace ID\"),\n}).describe(\"Response model for retrieving the current user's details.\");\n\nexport const muralGetCurrentUser = action(\"MURAL_GET_CURRENT_USER\", {\n slug: \"mural-get-current-user\",\n name: \"Get current user\",\n description: \"Tool to retrieve information about the currently authenticated user. Use when you need current user details after authentication.\",\n input: MuralGetCurrentUserInput,\n output: MuralGetCurrentUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAC9J,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC5D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC7D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC/D,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;AACrE,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,sBAAsBC,eAAAA,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-current-user.d.ts
4
+ declare const MuralGetCurrentUserInput: z.ZodTypeAny;
5
+ declare const MuralGetCurrentUserOutput: z.ZodTypeAny;
6
+ declare const muralGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetCurrentUser };
9
+ //# sourceMappingURL=get-current-user.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-current-user.d.cts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAAsH;AAAA,cAClJ,yBAAA,EAA2B,CAAA,CAAE,UAS8B;AAAA,cAE3D,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-current-user.d.ts
4
+ declare const MuralGetCurrentUserInput: z.ZodTypeAny;
5
+ declare const MuralGetCurrentUserOutput: z.ZodTypeAny;
6
+ declare const muralGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetCurrentUser };
9
+ //# sourceMappingURL=get-current-user.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-current-user.d.mts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAAsH;AAAA,cAClJ,yBAAA,EAA2B,CAAA,CAAE,UAS8B;AAAA,cAE3D,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,22 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const muralGetCurrentUser = action("MURAL_GET_CURRENT_USER", {
4
+ slug: "mural-get-current-user",
5
+ name: "Get current user",
6
+ description: "Tool to retrieve information about the currently authenticated user. Use when you need current user details after authentication.",
7
+ input: z.object({}).describe("Request model for retrieving information about the currently authenticated user."),
8
+ output: z.object({
9
+ id: z.string().describe("Unique identifier for the current user"),
10
+ type: z.string().describe("Type of the user"),
11
+ email: z.string().describe("Email address of the current user"),
12
+ avatar: z.string().describe("URL to the user's avatar image"),
13
+ lastName: z.string().describe("Last name of the current user"),
14
+ createdOn: z.number().int().describe("Timestamp when the user was created (timestamp in ms)"),
15
+ firstName: z.string().describe("First name of the current user"),
16
+ lastActiveWorkspace: z.string().describe("Last active workspace ID")
17
+ }).describe("Response model for retrieving the current user's details.")
18
+ });
19
+ //#endregion
20
+ export { muralGetCurrentUser };
21
+
22
+ //# sourceMappingURL=get-current-user.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-current-user.mjs","names":[],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetCurrentUserInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving information about the currently authenticated user.\");\nexport const MuralGetCurrentUserOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the current user\"),\n type: z.string().describe(\"Type of the user\"),\n email: z.string().describe(\"Email address of the current user\"),\n avatar: z.string().describe(\"URL to the user's avatar image\"),\n lastName: z.string().describe(\"Last name of the current user\"),\n createdOn: z.number().int().describe(\"Timestamp when the user was created (timestamp in ms)\"),\n firstName: z.string().describe(\"First name of the current user\"),\n lastActiveWorkspace: z.string().describe(\"Last active workspace ID\"),\n}).describe(\"Response model for retrieving the current user's details.\");\n\nexport const muralGetCurrentUser = action(\"MURAL_GET_CURRENT_USER\", {\n slug: \"mural-get-current-user\",\n name: \"Get current user\",\n description: \"Tool to retrieve information about the currently authenticated user. Use when you need current user details after authentication.\",\n input: MuralGetCurrentUserInput,\n output: MuralGetCurrentUserOutput,\n});\n"],"mappings":";;AAgBA,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBoD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kFAgBnE;CACP,QAhBqD,EAAE,OAAO;EAC9D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;EAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;EAC5C,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;EAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;EAC5D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;EAC7D,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD;EAC5F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;EAC/D,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CACrE,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
@@ -0,0 +1,58 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-files-for-mural.ts
4
+ const MuralGetFilesForMuralInput = zod.z.object({
5
+ next: zod.z.string().describe("Pagination token for next page of items").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of results to return").optional(),
7
+ muralId: zod.z.string().describe("Unique identifier of the mural")
8
+ });
9
+ const MuralGetFilesForMural_CollaboratorSchema = zod.z.object({
10
+ id: zod.z.string().describe("Unique identifier of the collaborator"),
11
+ name: zod.z.string().describe("Display name of the collaborator")
12
+ });
13
+ const MuralGetFilesForMural_FileWidgetSchema = zod.z.object({
14
+ x: zod.z.number().describe("Horizontal position of the widget in px"),
15
+ y: zod.z.number().describe("Vertical position of the widget in px"),
16
+ id: zod.z.string().describe("Unique ID of the widget"),
17
+ url: zod.z.string().describe("Download URL of the file; may be null when restricted").nullable().optional(),
18
+ link: zod.z.string().describe("Link to the file widget on the mural").nullable().optional(),
19
+ type: zod.z.string().describe("The type of the widget (file)"),
20
+ title: zod.z.string().describe("Title of the widget in the outline"),
21
+ width: zod.z.number().describe("Width of the widget in px"),
22
+ height: zod.z.number().describe("Height of the widget in px").nullable().optional(),
23
+ hidden: zod.z.boolean().describe("If true, widget is hidden from non-facilitators"),
24
+ locked: zod.z.boolean().describe("If true, widget is locked and cannot be updated by non-facilitators"),
25
+ parentId: zod.z.string().describe("ID of the area widget that contains this widget").nullable().optional(),
26
+ rotation: zod.z.number().describe("Angle of widget rotation in degrees"),
27
+ scanning: zod.z.boolean().describe("Indicates that file was scanned by antivirus"),
28
+ createdBy: MuralGetFilesForMural_CollaboratorSchema.nullable(),
29
+ createdOn: zod.z.number().int().describe("Timestamp in milliseconds when created"),
30
+ hideOwner: zod.z.boolean().describe("If true, creator collaborator name is hidden"),
31
+ invisible: zod.z.boolean().default(false).describe("Whether the widget is invisible").nullable().optional(),
32
+ updatedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),
33
+ updatedOn: zod.z.number().int().describe("Timestamp in milliseconds when last updated").nullable().optional(),
34
+ hideEditor: zod.z.boolean().describe("If true, update collaborator name is hidden"),
35
+ previewUrl: zod.z.string().describe("URL of the file preview").nullable().optional(),
36
+ instruction: zod.z.string().describe("Instructions for a section of the outline").nullable().optional(),
37
+ stackingOrder: zod.z.number().int().describe("Z-index stacking order of the widget"),
38
+ contentEditedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),
39
+ contentEditedOn: zod.z.number().int().describe("Timestamp in milliseconds when content was last edited").nullable().optional(),
40
+ expiresInMinutes: zod.z.number().int().describe("Minutes after which the file URL expires; may be null when restricted").nullable().optional(),
41
+ presentationIndex: zod.z.number().int().describe("List order of the widget in the outline").nullable().optional(),
42
+ lockedByFacilitator: zod.z.boolean().describe("If true, widget is locked by a facilitator")
43
+ });
44
+ const MuralGetFilesForMuralOutput = zod.z.object({
45
+ next: zod.z.string().describe("Token to retrieve next page of items").nullable().optional(),
46
+ value: zod.z.array(MuralGetFilesForMural_FileWidgetSchema).describe("List of file widget objects")
47
+ });
48
+ const muralGetFilesForMural = require_action.action("MURAL_GET_FILES_FOR_MURAL", {
49
+ slug: "mural-get-files-for-mural",
50
+ name: "Get files for a mural",
51
+ description: "Tool to retrieve a list of file widgets in a mural. Use after confirming the mural ID when listing file attachments.",
52
+ input: MuralGetFilesForMuralInput,
53
+ output: MuralGetFilesForMuralOutput
54
+ });
55
+ //#endregion
56
+ exports.muralGetFilesForMural = muralGetFilesForMural;
57
+
58
+ //# sourceMappingURL=get-files-for-mural.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-files-for-mural.cjs","names":["z","action"],"sources":["../../src/actions/get-files-for-mural.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetFilesForMuralInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for next page of items\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to return\").optional(),\n muralId: z.string().describe(\"Unique identifier of the mural\"),\n});\nconst MuralGetFilesForMural_CollaboratorSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the collaborator\"),\n name: z.string().describe(\"Display name of the collaborator\"),\n});\nconst MuralGetFilesForMural_FileWidgetSchema: z.ZodTypeAny = z.object({\n x: z.number().describe(\"Horizontal position of the widget in px\"),\n y: z.number().describe(\"Vertical position of the widget in px\"),\n id: z.string().describe(\"Unique ID of the widget\"),\n url: z.string().describe(\"Download URL of the file; may be null when restricted\").nullable().optional(),\n link: z.string().describe(\"Link to the file widget on the mural\").nullable().optional(),\n type: z.string().describe(\"The type of the widget (file)\"),\n title: z.string().describe(\"Title of the widget in the outline\"),\n width: z.number().describe(\"Width of the widget in px\"),\n height: z.number().describe(\"Height of the widget in px\").nullable().optional(),\n hidden: z.boolean().describe(\"If true, widget is hidden from non-facilitators\"),\n locked: z.boolean().describe(\"If true, widget is locked and cannot be updated by non-facilitators\"),\n parentId: z.string().describe(\"ID of the area widget that contains this widget\").nullable().optional(),\n rotation: z.number().describe(\"Angle of widget rotation in degrees\"),\n scanning: z.boolean().describe(\"Indicates that file was scanned by antivirus\"),\n createdBy: MuralGetFilesForMural_CollaboratorSchema.nullable(),\n createdOn: z.number().int().describe(\"Timestamp in milliseconds when created\"),\n hideOwner: z.boolean().describe(\"If true, creator collaborator name is hidden\"),\n invisible: z.boolean().default(false).describe(\"Whether the widget is invisible\").nullable().optional(),\n updatedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp in milliseconds when last updated\").nullable().optional(),\n hideEditor: z.boolean().describe(\"If true, update collaborator name is hidden\"),\n previewUrl: z.string().describe(\"URL of the file preview\").nullable().optional(),\n instruction: z.string().describe(\"Instructions for a section of the outline\").nullable().optional(),\n stackingOrder: z.number().int().describe(\"Z-index stacking order of the widget\"),\n contentEditedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),\n contentEditedOn: z.number().int().describe(\"Timestamp in milliseconds when content was last edited\").nullable().optional(),\n expiresInMinutes: z.number().int().describe(\"Minutes after which the file URL expires; may be null when restricted\").nullable().optional(),\n presentationIndex: z.number().int().describe(\"List order of the widget in the outline\").nullable().optional(),\n lockedByFacilitator: z.boolean().describe(\"If true, widget is locked by a facilitator\"),\n});\nexport const MuralGetFilesForMuralOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Token to retrieve next page of items\").nullable().optional(),\n value: z.array(MuralGetFilesForMural_FileWidgetSchema).describe(\"List of file widget objects\"),\n});\n\nexport const muralGetFilesForMural = action(\"MURAL_GET_FILES_FOR_MURAL\", {\n slug: \"mural-get-files-for-mural\",\n name: \"Get files for a mural\",\n description: \"Tool to retrieve a list of file widgets in a mural. Use after confirming the mural ID when listing file attachments.\",\n input: MuralGetFilesForMuralInput,\n output: MuralGetFilesForMuralOutput,\n});\n"],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-files-for-mural.d.ts
4
+ declare const MuralGetFilesForMuralInput: z.ZodTypeAny;
5
+ declare const MuralGetFilesForMuralOutput: z.ZodTypeAny;
6
+ declare const muralGetFilesForMural: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetFilesForMural };
9
+ //# sourceMappingURL=get-files-for-mural.d.cts.map