@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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-files-for-mural.d.cts","names":[],"sources":["../../src/actions/get-files-for-mural.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAIzC;AAAA,cAoCW,2BAAA,EAA6B,CAAA,CAAE,UAG1C;AAAA,cAEW,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -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.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-files-for-mural.d.mts","names":[],"sources":["../../src/actions/get-files-for-mural.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAIzC;AAAA,cAoCW,2BAAA,EAA6B,CAAA,CAAE,UAG1C;AAAA,cAEW,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,57 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-files-for-mural.ts
4
+ const MuralGetFilesForMuralInput = z.object({
5
+ next: z.string().describe("Pagination token for next page of items").optional(),
6
+ limit: z.number().int().describe("Maximum number of results to return").optional(),
7
+ muralId: z.string().describe("Unique identifier of the mural")
8
+ });
9
+ const MuralGetFilesForMural_CollaboratorSchema = z.object({
10
+ id: z.string().describe("Unique identifier of the collaborator"),
11
+ name: z.string().describe("Display name of the collaborator")
12
+ });
13
+ const MuralGetFilesForMural_FileWidgetSchema = z.object({
14
+ x: z.number().describe("Horizontal position of the widget in px"),
15
+ y: z.number().describe("Vertical position of the widget in px"),
16
+ id: z.string().describe("Unique ID of the widget"),
17
+ url: z.string().describe("Download URL of the file; may be null when restricted").nullable().optional(),
18
+ link: z.string().describe("Link to the file widget on the mural").nullable().optional(),
19
+ type: z.string().describe("The type of the widget (file)"),
20
+ title: z.string().describe("Title of the widget in the outline"),
21
+ width: z.number().describe("Width of the widget in px"),
22
+ height: z.number().describe("Height of the widget in px").nullable().optional(),
23
+ hidden: z.boolean().describe("If true, widget is hidden from non-facilitators"),
24
+ locked: z.boolean().describe("If true, widget is locked and cannot be updated by non-facilitators"),
25
+ parentId: z.string().describe("ID of the area widget that contains this widget").nullable().optional(),
26
+ rotation: z.number().describe("Angle of widget rotation in degrees"),
27
+ scanning: z.boolean().describe("Indicates that file was scanned by antivirus"),
28
+ createdBy: MuralGetFilesForMural_CollaboratorSchema.nullable(),
29
+ createdOn: z.number().int().describe("Timestamp in milliseconds when created"),
30
+ hideOwner: z.boolean().describe("If true, creator collaborator name is hidden"),
31
+ invisible: z.boolean().default(false).describe("Whether the widget is invisible").nullable().optional(),
32
+ updatedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),
33
+ updatedOn: z.number().int().describe("Timestamp in milliseconds when last updated").nullable().optional(),
34
+ hideEditor: z.boolean().describe("If true, update collaborator name is hidden"),
35
+ previewUrl: z.string().describe("URL of the file preview").nullable().optional(),
36
+ instruction: z.string().describe("Instructions for a section of the outline").nullable().optional(),
37
+ stackingOrder: z.number().int().describe("Z-index stacking order of the widget"),
38
+ contentEditedBy: MuralGetFilesForMural_CollaboratorSchema.nullable().optional(),
39
+ contentEditedOn: z.number().int().describe("Timestamp in milliseconds when content was last edited").nullable().optional(),
40
+ expiresInMinutes: z.number().int().describe("Minutes after which the file URL expires; may be null when restricted").nullable().optional(),
41
+ presentationIndex: z.number().int().describe("List order of the widget in the outline").nullable().optional(),
42
+ lockedByFacilitator: z.boolean().describe("If true, widget is locked by a facilitator")
43
+ });
44
+ const muralGetFilesForMural = action("MURAL_GET_FILES_FOR_MURAL", {
45
+ slug: "mural-get-files-for-mural",
46
+ name: "Get files for a mural",
47
+ description: "Tool to retrieve a list of file widgets in a mural. Use after confirming the mural ID when listing file attachments.",
48
+ input: MuralGetFilesForMuralInput,
49
+ output: z.object({
50
+ next: z.string().describe("Token to retrieve next page of items").nullable().optional(),
51
+ value: z.array(MuralGetFilesForMural_FileWidgetSchema).describe("List of file widget objects")
52
+ })
53
+ });
54
+ //#endregion
55
+ export { muralGetFilesForMural };
56
+
57
+ //# sourceMappingURL=get-files-for-mural.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-files-for-mural.mjs","names":[],"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,56 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-mural-widgets.ts
4
+ const MuralGetMuralWidgetsInput = zod.z.object({
5
+ next: zod.z.string().describe("Pagination token from previous response to retrieve the next page of results.").optional(),
6
+ type: zod.z.array(zod.z.enum([
7
+ "area",
8
+ "arrow",
9
+ "comment",
10
+ "file",
11
+ "icon",
12
+ "image",
13
+ "shape",
14
+ "sticky note",
15
+ "text"
16
+ ]).describe("Types of widgets available in a mural.")).describe("List of widget types to filter by (e.g., ['area', 'sticky note']). When omitted, returns all widget types.").optional(),
17
+ limit: zod.z.number().int().describe("Maximum number of widgets to return per page (must be ≥1). Use with 'next' for pagination.").optional(),
18
+ muralId: zod.z.string().describe("Unique identifier of the mural."),
19
+ parentId: zod.z.string().describe("Filter to return only widgets contained within the specified parent widget ID (typically an area widget).").optional()
20
+ }).describe("Request model for retrieving widgets within a mural.");
21
+ const MuralGetMuralWidgets_CollaboratorSchema = zod.z.object({
22
+ id: zod.z.string().describe("Unique identifier of the collaborator"),
23
+ lastName: zod.z.string().describe("Last name of the collaborator").nullable().optional(),
24
+ firstName: zod.z.string().describe("First name of the collaborator").nullable().optional()
25
+ }).describe("User information for widget collaborators.");
26
+ const MuralGetMuralWidgets_WidgetSchema = zod.z.object({
27
+ x: zod.z.number().describe("Horizontal position of the widget in pixels"),
28
+ y: zod.z.number().describe("Vertical position of the widget in pixels"),
29
+ id: zod.z.string().describe("Unique identifier of the widget"),
30
+ text: zod.z.string().describe("Text content of the widget (for text-based widgets)").nullable().optional(),
31
+ type: zod.z.string().describe("Type of the widget (e.g., 'sticky note', 'area', 'text')"),
32
+ title: zod.z.string().describe("Title of the widget in the outline").nullable().optional(),
33
+ width: zod.z.number().describe("Width of the widget in pixels"),
34
+ height: zod.z.number().describe("Height of the widget in pixels").nullable().optional(),
35
+ parentId: zod.z.string().describe("ID of the parent area widget, if contained").nullable().optional(),
36
+ rotation: zod.z.number().describe("Rotation angle in degrees").nullable().optional(),
37
+ createdBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),
38
+ createdOn: zod.z.number().int().describe("Timestamp when created (ms since epoch)").nullable().optional(),
39
+ updatedBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),
40
+ updatedOn: zod.z.number().int().describe("Timestamp when last updated (ms since epoch)").nullable().optional()
41
+ }).passthrough().describe("Represents a widget in a mural with common properties.\nActual widgets may contain additional type-specific fields.");
42
+ const MuralGetMuralWidgetsOutput = zod.z.object({
43
+ next: zod.z.string().describe("Pagination token for retrieving the next page of results. Null if no more pages.").nullable().optional(),
44
+ value: zod.z.array(MuralGetMuralWidgets_WidgetSchema).describe("Array of widget objects retrieved from the mural.")
45
+ }).describe("Response model for GetMuralWidgets action.");
46
+ const muralGetMuralWidgets = require_action.action("MURAL_GET_MURAL_WIDGETS", {
47
+ slug: "mural-get-mural-widgets",
48
+ name: "Get Mural Widgets",
49
+ description: "Tool to retrieve all widgets within a specified mural. Widgets include sticky notes, text boxes, shapes, images, areas, arrows, icons, files, and comments. Use this after obtaining a valid mural ID from workspace murals or other mural-related actions. Supports filtering by widget type, parent container, and pagination for large result sets.",
50
+ input: MuralGetMuralWidgetsInput,
51
+ output: MuralGetMuralWidgetsOutput
52
+ });
53
+ //#endregion
54
+ exports.muralGetMuralWidgets = muralGetMuralWidgets;
55
+
56
+ //# sourceMappingURL=get-mural-widgets.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-mural-widgets.cjs","names":["z","action"],"sources":["../../src/actions/get-mural-widgets.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetMuralWidgetsInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token from previous response to retrieve the next page of results.\").optional(),\n type: z.array(z.enum([\"area\", \"arrow\", \"comment\", \"file\", \"icon\", \"image\", \"shape\", \"sticky note\", \"text\"]).describe(\"Types of widgets available in a mural.\")).describe(\"List of widget types to filter by (e.g., ['area', 'sticky note']). When omitted, returns all widget types.\").optional(),\n limit: z.number().int().describe(\"Maximum number of widgets to return per page (must be ≥1). Use with 'next' for pagination.\").optional(),\n muralId: z.string().describe(\"Unique identifier of the mural.\"),\n parentId: z.string().describe(\"Filter to return only widgets contained within the specified parent widget ID (typically an area widget).\").optional(),\n}).describe(\"Request model for retrieving widgets within a mural.\");\nconst MuralGetMuralWidgets_CollaboratorSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the collaborator\"),\n lastName: z.string().describe(\"Last name of the collaborator\").nullable().optional(),\n firstName: z.string().describe(\"First name of the collaborator\").nullable().optional(),\n}).describe(\"User information for widget collaborators.\");\nconst MuralGetMuralWidgets_WidgetSchema: z.ZodTypeAny = z.object({\n x: z.number().describe(\"Horizontal position of the widget in pixels\"),\n y: z.number().describe(\"Vertical position of the widget in pixels\"),\n id: z.string().describe(\"Unique identifier of the widget\"),\n text: z.string().describe(\"Text content of the widget (for text-based widgets)\").nullable().optional(),\n type: z.string().describe(\"Type of the widget (e.g., 'sticky note', 'area', 'text')\"),\n title: z.string().describe(\"Title of the widget in the outline\").nullable().optional(),\n width: z.number().describe(\"Width of the widget in pixels\"),\n height: z.number().describe(\"Height of the widget in pixels\").nullable().optional(),\n parentId: z.string().describe(\"ID of the parent area widget, if contained\").nullable().optional(),\n rotation: z.number().describe(\"Rotation angle in degrees\").nullable().optional(),\n createdBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when created (ms since epoch)\").nullable().optional(),\n updatedBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when last updated (ms since epoch)\").nullable().optional(),\n}).passthrough().describe(\"Represents a widget in a mural with common properties.\\nActual widgets may contain additional type-specific fields.\");\nexport const MuralGetMuralWidgetsOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for retrieving the next page of results. Null if no more pages.\").nullable().optional(),\n value: z.array(MuralGetMuralWidgets_WidgetSchema).describe(\"Array of widget objects retrieved from the mural.\"),\n}).describe(\"Response model for GetMuralWidgets action.\");\n\nexport const muralGetMuralWidgets = action(\"MURAL_GET_MURAL_WIDGETS\", {\n slug: \"mural-get-mural-widgets\",\n name: \"Get Mural Widgets\",\n description: \"Tool to retrieve all widgets within a specified mural. Widgets include sticky notes, text boxes, shapes, images, areas, arrows, icons, files, and comments. Use this after obtaining a valid mural ID from workspace murals or other mural-related actions. Supports filtering by widget type, parent container, and pagination for large result sets.\",\n input: MuralGetMuralWidgetsInput,\n output: MuralGetMuralWidgetsOutput,\n});\n"],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-mural-widgets.d.ts
4
+ declare const MuralGetMuralWidgetsInput: z.ZodTypeAny;
5
+ declare const MuralGetMuralWidgetsOutput: z.ZodTypeAny;
6
+ declare const muralGetMuralWidgets: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetMuralWidgets };
9
+ //# sourceMappingURL=get-mural-widgets.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-mural-widgets.d.cts","names":[],"sources":["../../src/actions/get-mural-widgets.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAMyB;AAAA,cAsBtD,0BAAA,EAA4B,CAAA,CAAE,UAGc;AAAA,cAE5C,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-mural-widgets.d.ts
4
+ declare const MuralGetMuralWidgetsInput: z.ZodTypeAny;
5
+ declare const MuralGetMuralWidgetsOutput: z.ZodTypeAny;
6
+ declare const muralGetMuralWidgets: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetMuralWidgets };
9
+ //# sourceMappingURL=get-mural-widgets.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-mural-widgets.d.mts","names":[],"sources":["../../src/actions/get-mural-widgets.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAMyB;AAAA,cAsBtD,0BAAA,EAA4B,CAAA,CAAE,UAGc;AAAA,cAE5C,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,55 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-mural-widgets.ts
4
+ const MuralGetMuralWidgetsInput = z.object({
5
+ next: z.string().describe("Pagination token from previous response to retrieve the next page of results.").optional(),
6
+ type: z.array(z.enum([
7
+ "area",
8
+ "arrow",
9
+ "comment",
10
+ "file",
11
+ "icon",
12
+ "image",
13
+ "shape",
14
+ "sticky note",
15
+ "text"
16
+ ]).describe("Types of widgets available in a mural.")).describe("List of widget types to filter by (e.g., ['area', 'sticky note']). When omitted, returns all widget types.").optional(),
17
+ limit: z.number().int().describe("Maximum number of widgets to return per page (must be ≥1). Use with 'next' for pagination.").optional(),
18
+ muralId: z.string().describe("Unique identifier of the mural."),
19
+ parentId: z.string().describe("Filter to return only widgets contained within the specified parent widget ID (typically an area widget).").optional()
20
+ }).describe("Request model for retrieving widgets within a mural.");
21
+ const MuralGetMuralWidgets_CollaboratorSchema = z.object({
22
+ id: z.string().describe("Unique identifier of the collaborator"),
23
+ lastName: z.string().describe("Last name of the collaborator").nullable().optional(),
24
+ firstName: z.string().describe("First name of the collaborator").nullable().optional()
25
+ }).describe("User information for widget collaborators.");
26
+ const MuralGetMuralWidgets_WidgetSchema = z.object({
27
+ x: z.number().describe("Horizontal position of the widget in pixels"),
28
+ y: z.number().describe("Vertical position of the widget in pixels"),
29
+ id: z.string().describe("Unique identifier of the widget"),
30
+ text: z.string().describe("Text content of the widget (for text-based widgets)").nullable().optional(),
31
+ type: z.string().describe("Type of the widget (e.g., 'sticky note', 'area', 'text')"),
32
+ title: z.string().describe("Title of the widget in the outline").nullable().optional(),
33
+ width: z.number().describe("Width of the widget in pixels"),
34
+ height: z.number().describe("Height of the widget in pixels").nullable().optional(),
35
+ parentId: z.string().describe("ID of the parent area widget, if contained").nullable().optional(),
36
+ rotation: z.number().describe("Rotation angle in degrees").nullable().optional(),
37
+ createdBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),
38
+ createdOn: z.number().int().describe("Timestamp when created (ms since epoch)").nullable().optional(),
39
+ updatedBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),
40
+ updatedOn: z.number().int().describe("Timestamp when last updated (ms since epoch)").nullable().optional()
41
+ }).passthrough().describe("Represents a widget in a mural with common properties.\nActual widgets may contain additional type-specific fields.");
42
+ const muralGetMuralWidgets = action("MURAL_GET_MURAL_WIDGETS", {
43
+ slug: "mural-get-mural-widgets",
44
+ name: "Get Mural Widgets",
45
+ description: "Tool to retrieve all widgets within a specified mural. Widgets include sticky notes, text boxes, shapes, images, areas, arrows, icons, files, and comments. Use this after obtaining a valid mural ID from workspace murals or other mural-related actions. Supports filtering by widget type, parent container, and pagination for large result sets.",
46
+ input: MuralGetMuralWidgetsInput,
47
+ output: z.object({
48
+ next: z.string().describe("Pagination token for retrieving the next page of results. Null if no more pages.").nullable().optional(),
49
+ value: z.array(MuralGetMuralWidgets_WidgetSchema).describe("Array of widget objects retrieved from the mural.")
50
+ }).describe("Response model for GetMuralWidgets action.")
51
+ });
52
+ //#endregion
53
+ export { muralGetMuralWidgets };
54
+
55
+ //# sourceMappingURL=get-mural-widgets.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-mural-widgets.mjs","names":[],"sources":["../../src/actions/get-mural-widgets.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetMuralWidgetsInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token from previous response to retrieve the next page of results.\").optional(),\n type: z.array(z.enum([\"area\", \"arrow\", \"comment\", \"file\", \"icon\", \"image\", \"shape\", \"sticky note\", \"text\"]).describe(\"Types of widgets available in a mural.\")).describe(\"List of widget types to filter by (e.g., ['area', 'sticky note']). When omitted, returns all widget types.\").optional(),\n limit: z.number().int().describe(\"Maximum number of widgets to return per page (must be ≥1). Use with 'next' for pagination.\").optional(),\n muralId: z.string().describe(\"Unique identifier of the mural.\"),\n parentId: z.string().describe(\"Filter to return only widgets contained within the specified parent widget ID (typically an area widget).\").optional(),\n}).describe(\"Request model for retrieving widgets within a mural.\");\nconst MuralGetMuralWidgets_CollaboratorSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the collaborator\"),\n lastName: z.string().describe(\"Last name of the collaborator\").nullable().optional(),\n firstName: z.string().describe(\"First name of the collaborator\").nullable().optional(),\n}).describe(\"User information for widget collaborators.\");\nconst MuralGetMuralWidgets_WidgetSchema: z.ZodTypeAny = z.object({\n x: z.number().describe(\"Horizontal position of the widget in pixels\"),\n y: z.number().describe(\"Vertical position of the widget in pixels\"),\n id: z.string().describe(\"Unique identifier of the widget\"),\n text: z.string().describe(\"Text content of the widget (for text-based widgets)\").nullable().optional(),\n type: z.string().describe(\"Type of the widget (e.g., 'sticky note', 'area', 'text')\"),\n title: z.string().describe(\"Title of the widget in the outline\").nullable().optional(),\n width: z.number().describe(\"Width of the widget in pixels\"),\n height: z.number().describe(\"Height of the widget in pixels\").nullable().optional(),\n parentId: z.string().describe(\"ID of the parent area widget, if contained\").nullable().optional(),\n rotation: z.number().describe(\"Rotation angle in degrees\").nullable().optional(),\n createdBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when created (ms since epoch)\").nullable().optional(),\n updatedBy: MuralGetMuralWidgets_CollaboratorSchema.nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when last updated (ms since epoch)\").nullable().optional(),\n}).passthrough().describe(\"Represents a widget in a mural with common properties.\\nActual widgets may contain additional type-specific fields.\");\nexport const MuralGetMuralWidgetsOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for retrieving the next page of results. Null if no more pages.\").nullable().optional(),\n value: z.array(MuralGetMuralWidgets_WidgetSchema).describe(\"Array of widget objects retrieved from the mural.\"),\n}).describe(\"Response model for GetMuralWidgets action.\");\n\nexport const muralGetMuralWidgets = action(\"MURAL_GET_MURAL_WIDGETS\", {\n slug: \"mural-get-mural-widgets\",\n name: \"Get Mural Widgets\",\n description: \"Tool to retrieve all widgets within a specified mural. Widgets include sticky notes, text boxes, shapes, images, areas, arrows, icons, files, and comments. Use this after obtaining a valid mural ID from workspace murals or other mural-related actions. Supports filtering by widget type, parent container, and pagination for large result sets.\",\n input: MuralGetMuralWidgetsInput,\n output: MuralGetMuralWidgetsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0C,EAAE,OAAO;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+EAA+E,CAAC,CAAC,SAAS;CACpH,MAAM,EAAE,MAAM,EAAE,KAAK;EAAC;EAAQ;EAAS;EAAW;EAAQ;EAAQ;EAAS;EAAS;EAAe;CAAM,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;CAChS,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACxI,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAC9D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AACtJ,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,0CAAwD,EAAE,OAAO;CACrE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC;CAC/D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAM,oCAAkD,EAAE,OAAO;CAC/D,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CACpE,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D;CACpF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC1D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,WAAW,wCAAwC,SAAS,CAAC,CAAC,SAAS;CACvE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,WAAW,wCAAwC,SAAS,CAAC,CAAC,SAAS;CACvE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,qHAAqH;AAM/I,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVsD,EAAE,OAAO;EAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClI,OAAO,EAAE,MAAM,iCAAiC,CAAC,CAAC,SAAS,mDAAmD;CAChH,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
@@ -0,0 +1,27 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-room.ts
4
+ const MuralGetRoomInput = zod.z.object({ roomId: zod.z.string().describe("Unique identifier of the room to retrieve") }).describe("Request model for retrieving information about a specific room.");
5
+ const MuralGetRoomOutput = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier of the room"),
7
+ name: zod.z.string().describe("Name of the room"),
8
+ type: zod.z.string().describe("Type of the room (e.g., 'open', 'private')"),
9
+ favorite: zod.z.boolean().describe("Whether the room is marked as favorite by the user").nullable().optional(),
10
+ isMember: zod.z.boolean().describe("Whether the current user is a member of this room").nullable().optional(),
11
+ createdOn: zod.z.number().int().describe("Timestamp when the room was created (in microseconds)").nullable().optional(),
12
+ updatedOn: zod.z.number().int().describe("Timestamp when the room was last updated (in microseconds)").nullable().optional(),
13
+ description: zod.z.string().describe("Description of the room").nullable().optional(),
14
+ workspaceId: zod.z.string().describe("ID of the workspace containing this room"),
15
+ confidential: zod.z.boolean().describe("Whether the room is marked as confidential").nullable().optional()
16
+ }).describe("Response model containing information about a room.");
17
+ const muralGetRoom = require_action.action("MURAL_GET_ROOM", {
18
+ slug: "mural-get-room",
19
+ name: "Get room by ID",
20
+ description: "Tool to retrieve information about a specific room by its ID. Use when you need details about a particular room that the authenticated user has read access to.",
21
+ input: MuralGetRoomInput,
22
+ output: MuralGetRoomOutput
23
+ });
24
+ //#endregion
25
+ exports.muralGetRoom = muralGetRoom;
26
+
27
+ //# sourceMappingURL=get-room.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-room.cjs","names":["z","action"],"sources":["../../src/actions/get-room.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetRoomInput: z.ZodTypeAny = z.object({\n roomId: z.string().describe(\"Unique identifier of the room to retrieve\"),\n}).describe(\"Request model for retrieving information about a specific room.\");\nexport const MuralGetRoomOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the room\"),\n name: z.string().describe(\"Name of the room\"),\n type: z.string().describe(\"Type of the room (e.g., 'open', 'private')\"),\n favorite: z.boolean().describe(\"Whether the room is marked as favorite by the user\").nullable().optional(),\n isMember: z.boolean().describe(\"Whether the current user is a member of this room\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the room was created (in microseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the room was last updated (in microseconds)\").nullable().optional(),\n description: z.string().describe(\"Description of the room\").nullable().optional(),\n workspaceId: z.string().describe(\"ID of the workspace containing this room\"),\n confidential: z.boolean().describe(\"Whether the room is marked as confidential\").nullable().optional(),\n}).describe(\"Response model containing information about a room.\");\n\nexport const muralGetRoom = action(\"MURAL_GET_ROOM\", {\n slug: \"mural-get-room\",\n name: \"Get room by ID\",\n description: \"Tool to retrieve information about a specific room by its ID. Use when you need details about a particular room that the authenticated user has read access to.\",\n input: MuralGetRoomInput,\n output: MuralGetRoomOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oBAAkCA,IAAAA,EAAE,OAAO,EACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,EACzE,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAa,qBAAmCA,IAAAA,EAAE,OAAO;CACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACvD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACtE,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CAC3E,cAAcA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvG,CAAC,CAAC,CAAC,SAAS,qDAAqD;AAEjE,MAAa,eAAeC,eAAAA,OAAO,kBAAkB;CACnD,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-room.d.ts
4
+ declare const MuralGetRoomInput: z.ZodTypeAny;
5
+ declare const MuralGetRoomOutput: z.ZodTypeAny;
6
+ declare const muralGetRoom: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetRoom };
9
+ //# sourceMappingURL=get-room.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-room.d.cts","names":[],"sources":["../../src/actions/get-room.ts"],"mappings":";;;cAIa,iBAAA,EAAmB,CAAA,CAAE,UAE4C;AAAA,cACjE,kBAAA,EAAoB,CAAA,CAAE,UAW+B;AAAA,cAErD,YAAA,gCAAY,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-room.d.ts
4
+ declare const MuralGetRoomInput: z.ZodTypeAny;
5
+ declare const MuralGetRoomOutput: z.ZodTypeAny;
6
+ declare const muralGetRoom: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetRoom };
9
+ //# sourceMappingURL=get-room.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-room.d.mts","names":[],"sources":["../../src/actions/get-room.ts"],"mappings":";;;cAIa,iBAAA,EAAmB,CAAA,CAAE,UAE4C;AAAA,cACjE,kBAAA,EAAoB,CAAA,CAAE,UAW+B;AAAA,cAErD,YAAA,gCAAY,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,24 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const muralGetRoom = action("MURAL_GET_ROOM", {
4
+ slug: "mural-get-room",
5
+ name: "Get room by ID",
6
+ description: "Tool to retrieve information about a specific room by its ID. Use when you need details about a particular room that the authenticated user has read access to.",
7
+ input: z.object({ roomId: z.string().describe("Unique identifier of the room to retrieve") }).describe("Request model for retrieving information about a specific room."),
8
+ output: z.object({
9
+ id: z.string().describe("Unique identifier of the room"),
10
+ name: z.string().describe("Name of the room"),
11
+ type: z.string().describe("Type of the room (e.g., 'open', 'private')"),
12
+ favorite: z.boolean().describe("Whether the room is marked as favorite by the user").nullable().optional(),
13
+ isMember: z.boolean().describe("Whether the current user is a member of this room").nullable().optional(),
14
+ createdOn: z.number().int().describe("Timestamp when the room was created (in microseconds)").nullable().optional(),
15
+ updatedOn: z.number().int().describe("Timestamp when the room was last updated (in microseconds)").nullable().optional(),
16
+ description: z.string().describe("Description of the room").nullable().optional(),
17
+ workspaceId: z.string().describe("ID of the workspace containing this room"),
18
+ confidential: z.boolean().describe("Whether the room is marked as confidential").nullable().optional()
19
+ }).describe("Response model containing information about a room.")
20
+ });
21
+ //#endregion
22
+ export { muralGetRoom };
23
+
24
+ //# sourceMappingURL=get-room.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-room.mjs","names":[],"sources":["../../src/actions/get-room.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetRoomInput: z.ZodTypeAny = z.object({\n roomId: z.string().describe(\"Unique identifier of the room to retrieve\"),\n}).describe(\"Request model for retrieving information about a specific room.\");\nexport const MuralGetRoomOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the room\"),\n name: z.string().describe(\"Name of the room\"),\n type: z.string().describe(\"Type of the room (e.g., 'open', 'private')\"),\n favorite: z.boolean().describe(\"Whether the room is marked as favorite by the user\").nullable().optional(),\n isMember: z.boolean().describe(\"Whether the current user is a member of this room\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the room was created (in microseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the room was last updated (in microseconds)\").nullable().optional(),\n description: z.string().describe(\"Description of the room\").nullable().optional(),\n workspaceId: z.string().describe(\"ID of the workspace containing this room\"),\n confidential: z.boolean().describe(\"Whether the room is marked as confidential\").nullable().optional(),\n}).describe(\"Response model containing information about a room.\");\n\nexport const muralGetRoom = action(\"MURAL_GET_ROOM\", {\n slug: \"mural-get-room\",\n name: \"Get room by ID\",\n description: \"Tool to retrieve information about a specific room by its ID. Use when you need details about a particular room that the authenticated user has read access to.\",\n input: MuralGetRoomInput,\n output: MuralGetRoomOutput,\n});\n"],"mappings":";;AAoBA,MAAa,eAAe,OAAO,kBAAkB;CACnD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApB6C,EAAE,OAAO,EACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,EACzE,CAAC,CAAC,CAAC,SAAS,iEAkBH;CACP,QAlB8C,EAAE,OAAO;EACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;EACvD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;EAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;EACtE,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzG,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;EAC3E,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,CAAC,CAAC,CAAC,SAAS,qDAOF;AACV,CAAC"}
@@ -0,0 +1,22 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-workspace.ts
4
+ const MuralGetWorkspaceInput = zod.z.object({ workspaceId: zod.z.string().describe("Unique identifier of the workspace to retrieve") }).describe("Request model for retrieving information about a specific workspace.");
5
+ const MuralGetWorkspaceOutput = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier of the workspace"),
7
+ name: zod.z.string().describe("Name of the workspace"),
8
+ isActive: zod.z.boolean().describe("Whether the workspace is currently active").nullable().optional(),
9
+ createdOn: zod.z.number().int().describe("Timestamp when the workspace was created (in milliseconds)").nullable().optional(),
10
+ updatedOn: zod.z.number().int().describe("Timestamp when the workspace was last updated (in milliseconds)").nullable().optional()
11
+ }).describe("Response model containing information about a workspace.");
12
+ const muralGetWorkspace = require_action.action("MURAL_GET_WORKSPACE", {
13
+ slug: "mural-get-workspace",
14
+ name: "Get workspace by ID",
15
+ description: "Tool to retrieve information about a specific workspace by its ID. Use when you need details about a particular workspace that the authenticated user has read access to.",
16
+ input: MuralGetWorkspaceInput,
17
+ output: MuralGetWorkspaceOutput
18
+ });
19
+ //#endregion
20
+ exports.muralGetWorkspace = muralGetWorkspace;
21
+
22
+ //# sourceMappingURL=get-workspace.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspace.cjs","names":["z","action"],"sources":["../../src/actions/get-workspace.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetWorkspaceInput: z.ZodTypeAny = z.object({\n workspaceId: z.string().describe(\"Unique identifier of the workspace to retrieve\"),\n}).describe(\"Request model for retrieving information about a specific workspace.\");\nexport const MuralGetWorkspaceOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace\"),\n name: z.string().describe(\"Name of the workspace\"),\n isActive: z.boolean().describe(\"Whether the workspace is currently active\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the workspace was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the workspace was last updated (in milliseconds)\").nullable().optional(),\n}).describe(\"Response model containing information about a workspace.\");\n\nexport const muralGetWorkspace = action(\"MURAL_GET_WORKSPACE\", {\n slug: \"mural-get-workspace\",\n name: \"Get workspace by ID\",\n description: \"Tool to retrieve information about a specific workspace by its ID. Use when you need details about a particular workspace that the authenticated user has read access to.\",\n input: MuralGetWorkspaceInput,\n output: MuralGetWorkspaceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAuCA,IAAAA,EAAE,OAAO,EAC3D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,EACnF,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAClF,MAAa,0BAAwCA,IAAAA,EAAE,OAAO;CAC5D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,0DAA0D;AAEtE,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,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-workspace.d.ts
4
+ declare const MuralGetWorkspaceInput: z.ZodTypeAny;
5
+ declare const MuralGetWorkspaceOutput: z.ZodTypeAny;
6
+ declare const muralGetWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetWorkspace };
9
+ //# sourceMappingURL=get-workspace.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspace.d.cts","names":[],"sources":["../../src/actions/get-workspace.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAE4C;AAAA,cACtE,uBAAA,EAAyB,CAAA,CAAE,UAM+B;AAAA,cAE1D,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-workspace.d.ts
4
+ declare const MuralGetWorkspaceInput: z.ZodTypeAny;
5
+ declare const MuralGetWorkspaceOutput: z.ZodTypeAny;
6
+ declare const muralGetWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetWorkspace };
9
+ //# sourceMappingURL=get-workspace.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspace.d.mts","names":[],"sources":["../../src/actions/get-workspace.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAE4C;AAAA,cACtE,uBAAA,EAAyB,CAAA,CAAE,UAM+B;AAAA,cAE1D,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,19 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const muralGetWorkspace = action("MURAL_GET_WORKSPACE", {
4
+ slug: "mural-get-workspace",
5
+ name: "Get workspace by ID",
6
+ description: "Tool to retrieve information about a specific workspace by its ID. Use when you need details about a particular workspace that the authenticated user has read access to.",
7
+ input: z.object({ workspaceId: z.string().describe("Unique identifier of the workspace to retrieve") }).describe("Request model for retrieving information about a specific workspace."),
8
+ output: z.object({
9
+ id: z.string().describe("Unique identifier of the workspace"),
10
+ name: z.string().describe("Name of the workspace"),
11
+ isActive: z.boolean().describe("Whether the workspace is currently active").nullable().optional(),
12
+ createdOn: z.number().int().describe("Timestamp when the workspace was created (in milliseconds)").nullable().optional(),
13
+ updatedOn: z.number().int().describe("Timestamp when the workspace was last updated (in milliseconds)").nullable().optional()
14
+ }).describe("Response model containing information about a workspace.")
15
+ });
16
+ //#endregion
17
+ export { muralGetWorkspace };
18
+
19
+ //# sourceMappingURL=get-workspace.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspace.mjs","names":[],"sources":["../../src/actions/get-workspace.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetWorkspaceInput: z.ZodTypeAny = z.object({\n workspaceId: z.string().describe(\"Unique identifier of the workspace to retrieve\"),\n}).describe(\"Request model for retrieving information about a specific workspace.\");\nexport const MuralGetWorkspaceOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace\"),\n name: z.string().describe(\"Name of the workspace\"),\n isActive: z.boolean().describe(\"Whether the workspace is currently active\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the workspace was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the workspace was last updated (in milliseconds)\").nullable().optional(),\n}).describe(\"Response model containing information about a workspace.\");\n\nexport const muralGetWorkspace = action(\"MURAL_GET_WORKSPACE\", {\n slug: \"mural-get-workspace\",\n name: \"Get workspace by ID\",\n description: \"Tool to retrieve information about a specific workspace by its ID. Use when you need details about a particular workspace that the authenticated user has read access to.\",\n input: MuralGetWorkspaceInput,\n output: MuralGetWorkspaceOutput,\n});\n"],"mappings":";;AAeA,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfkD,EAAE,OAAO,EAC3D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,EACnF,CAAC,CAAC,CAAC,SAAS,sEAaH;CACP,QAbmD,EAAE,OAAO;EAC5D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;EAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;EACjD,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,CAAC,CAAC,CAAC,SAAS,0DAOF;AACV,CAAC"}
@@ -0,0 +1,29 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-workspaces.ts
4
+ const MuralGetWorkspacesInput = zod.z.object({
5
+ next: zod.z.string().describe("Pagination token for retrieving the next page of results").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of workspaces to return per page (must be ≥1)").optional()
7
+ }).describe("Request model for retrieving workspaces.");
8
+ const MuralGetWorkspaces_WorkspaceSchema = zod.z.object({
9
+ id: zod.z.string().describe("Unique identifier of the workspace"),
10
+ name: zod.z.string().describe("Name of the workspace"),
11
+ isActive: zod.z.boolean().describe("Whether the workspace is currently active").nullable().optional(),
12
+ createdOn: zod.z.number().int().describe("Timestamp when the workspace was created (in milliseconds)").nullable().optional(),
13
+ updatedOn: zod.z.number().int().describe("Timestamp when the workspace was last updated (in milliseconds)").nullable().optional()
14
+ }).describe("Represents a workspace in MURAL.");
15
+ const MuralGetWorkspacesOutput = zod.z.object({
16
+ next: zod.z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
17
+ value: zod.z.array(MuralGetWorkspaces_WorkspaceSchema).describe("Array of workspaces the authenticated user is a member of")
18
+ }).describe("Response model for retrieving workspaces.");
19
+ const muralGetWorkspaces = require_action.action("MURAL_GET_WORKSPACES", {
20
+ slug: "mural-get-workspaces",
21
+ name: "Get workspaces",
22
+ description: "Tool to retrieve all workspaces the authenticated user is a member of. Use to list available workspaces before accessing rooms or murals.",
23
+ input: MuralGetWorkspacesInput,
24
+ output: MuralGetWorkspacesOutput
25
+ });
26
+ //#endregion
27
+ exports.muralGetWorkspaces = muralGetWorkspaces;
28
+
29
+ //# sourceMappingURL=get-workspaces.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspaces.cjs","names":["z","action"],"sources":["../../src/actions/get-workspaces.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetWorkspacesInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for retrieving the next page of results\").optional(),\n limit: z.number().int().describe(\"Maximum number of workspaces to return per page (must be ≥1)\").optional(),\n}).describe(\"Request model for retrieving workspaces.\");\nconst MuralGetWorkspaces_WorkspaceSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace\"),\n name: z.string().describe(\"Name of the workspace\"),\n isActive: z.boolean().describe(\"Whether the workspace is currently active\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the workspace was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the workspace was last updated (in milliseconds)\").nullable().optional(),\n}).describe(\"Represents a workspace in MURAL.\");\nexport const MuralGetWorkspacesOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for the next page of results, if available\").nullable().optional(),\n value: z.array(MuralGetWorkspaces_WorkspaceSchema).describe(\"Array of workspaces the authenticated user is a member of\"),\n}).describe(\"Response model for retrieving workspaces.\");\n\nexport const muralGetWorkspaces = action(\"MURAL_GET_WORKSPACES\", {\n slug: \"mural-get-workspaces\",\n name: \"Get workspaces\",\n description: \"Tool to retrieve all workspaces the authenticated user is a member of. Use to list available workspaces before accessing rooms or murals.\",\n input: MuralGetWorkspacesInput,\n output: MuralGetWorkspacesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwCA,IAAAA,EAAE,OAAO;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC/F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC9C,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,2DAA2D;AACzH,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAEvD,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,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-workspaces.d.ts
4
+ declare const MuralGetWorkspacesInput: z.ZodTypeAny;
5
+ declare const MuralGetWorkspacesOutput: z.ZodTypeAny;
6
+ declare const muralGetWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetWorkspaces };
9
+ //# sourceMappingURL=get-workspaces.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspaces.d.cts","names":[],"sources":["../../src/actions/get-workspaces.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGe;AAAA,cAQ1C,wBAAA,EAA0B,CAAA,CAAE,UAGe;AAAA,cAE3C,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-workspaces.d.ts
4
+ declare const MuralGetWorkspacesInput: z.ZodTypeAny;
5
+ declare const MuralGetWorkspacesOutput: z.ZodTypeAny;
6
+ declare const muralGetWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralGetWorkspaces };
9
+ //# sourceMappingURL=get-workspaces.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspaces.d.mts","names":[],"sources":["../../src/actions/get-workspaces.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGe;AAAA,cAQ1C,wBAAA,EAA0B,CAAA,CAAE,UAGe;AAAA,cAE3C,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,28 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-workspaces.ts
4
+ const MuralGetWorkspacesInput = z.object({
5
+ next: z.string().describe("Pagination token for retrieving the next page of results").optional(),
6
+ limit: z.number().int().describe("Maximum number of workspaces to return per page (must be ≥1)").optional()
7
+ }).describe("Request model for retrieving workspaces.");
8
+ const MuralGetWorkspaces_WorkspaceSchema = z.object({
9
+ id: z.string().describe("Unique identifier of the workspace"),
10
+ name: z.string().describe("Name of the workspace"),
11
+ isActive: z.boolean().describe("Whether the workspace is currently active").nullable().optional(),
12
+ createdOn: z.number().int().describe("Timestamp when the workspace was created (in milliseconds)").nullable().optional(),
13
+ updatedOn: z.number().int().describe("Timestamp when the workspace was last updated (in milliseconds)").nullable().optional()
14
+ }).describe("Represents a workspace in MURAL.");
15
+ const muralGetWorkspaces = action("MURAL_GET_WORKSPACES", {
16
+ slug: "mural-get-workspaces",
17
+ name: "Get workspaces",
18
+ description: "Tool to retrieve all workspaces the authenticated user is a member of. Use to list available workspaces before accessing rooms or murals.",
19
+ input: MuralGetWorkspacesInput,
20
+ output: z.object({
21
+ next: z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
22
+ value: z.array(MuralGetWorkspaces_WorkspaceSchema).describe("Array of workspaces the authenticated user is a member of")
23
+ }).describe("Response model for retrieving workspaces.")
24
+ });
25
+ //#endregion
26
+ export { muralGetWorkspaces };
27
+
28
+ //# sourceMappingURL=get-workspaces.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-workspaces.mjs","names":[],"sources":["../../src/actions/get-workspaces.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralGetWorkspacesInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for retrieving the next page of results\").optional(),\n limit: z.number().int().describe(\"Maximum number of workspaces to return per page (must be ≥1)\").optional(),\n}).describe(\"Request model for retrieving workspaces.\");\nconst MuralGetWorkspaces_WorkspaceSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace\"),\n name: z.string().describe(\"Name of the workspace\"),\n isActive: z.boolean().describe(\"Whether the workspace is currently active\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the workspace was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the workspace was last updated (in milliseconds)\").nullable().optional(),\n}).describe(\"Represents a workspace in MURAL.\");\nexport const MuralGetWorkspacesOutput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Pagination token for the next page of results, if available\").nullable().optional(),\n value: z.array(MuralGetWorkspaces_WorkspaceSchema).describe(\"Array of workspaces the authenticated user is a member of\"),\n}).describe(\"Response model for retrieving workspaces.\");\n\nexport const muralGetWorkspaces = action(\"MURAL_GET_WORKSPACES\", {\n slug: \"mural-get-workspaces\",\n name: \"Get workspaces\",\n description: \"Tool to retrieve all workspaces the authenticated user is a member of. Use to list available workspaces before accessing rooms or murals.\",\n input: MuralGetWorkspacesInput,\n output: MuralGetWorkspacesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwC,EAAE,OAAO;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC/F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAM,qCAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACjD,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAM9C,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVoD,EAAE,OAAO;EAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7G,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,2DAA2D;CACzH,CAAC,CAAC,CAAC,SAAS,2CAOF;AACV,CAAC"}