@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":"list-recent-templates.mjs","names":[],"sources":["../../src/actions/list-recent-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRecentTemplatesInput: 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 templates to return per page (must be ≥1)\").optional(),\n workspaceId: z.string().describe(\"Unique identifier of the workspace to list recent templates from\"),\n withoutDefault: z.boolean().describe(\"If true, the list of returned templates will not include default templates\").optional(),\n}).describe(\"Request model for listing recent templates within a workspace.\");\nconst MuralListRecentTemplates_TemplateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the template\").nullable().optional(),\n name: z.string().describe(\"Name of the template\").nullable().optional(),\n type: z.string().describe(\"Type of the template (e.g., 'default', 'custom')\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the template was created\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the template was last updated\").nullable().optional(),\n description: z.string().describe(\"Description of the template\").nullable().optional(),\n workspaceId: z.string().describe(\"ID of the workspace containing this template\").nullable().optional(),\n thumbnailUrl: z.string().describe(\"URL of the template thumbnail image\").nullable().optional(),\n}).describe(\"Represents a template object returned by the API.\");\nexport const MuralListRecentTemplatesOutput: 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(MuralListRecentTemplates_TemplateSchema).describe(\"Array of recent templates in the workspace\"),\n}).describe(\"Response model for listing recent templates within a workspace.\");\n\nexport const muralListRecentTemplates = action(\"MURAL_LIST_RECENT_TEMPLATES\", {\n slug: \"mural-list-recent-templates\",\n name: \"List recent templates\",\n description: \"Tool to retrieve recent templates used by a user for a workspace. Use when you need to access recently used templates for creating new murals.\",\n input: MuralListRecentTemplatesInput,\n output: MuralListRecentTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8C,EAAE,OAAO;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC/F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;CACzG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;CACnG,gBAAgB,EAAE,QAAQ,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAM,0CAAwD,EAAE,OAAO;CACrE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAM/D,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV0D,EAAE,OAAO;EACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7G,OAAO,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,4CAA4C;CAC/G,CAAC,CAAC,CAAC,SAAS,iEAOF;AACV,CAAC"}
@@ -0,0 +1,41 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-room-murals.ts
4
+ const MuralListRoomMuralsInput = zod.z.object({
5
+ next: zod.z.string().describe("Token to get the next page of items").optional(),
6
+ limit: zod.z.number().int().describe("Maximum number of results to be returned by the endpoint").optional(),
7
+ roomId: zod.z.number().int().describe("Unique identifier of the room to list murals from"),
8
+ sortBy: zod.z.enum([
9
+ "lastCreated",
10
+ "lastModified",
11
+ "oldest"
12
+ ]).describe("Sort order options for murals.").optional(),
13
+ status: zod.z.enum(["active", "archived"]).describe("Status filter for murals.").optional(),
14
+ folderId: zod.z.string().describe("When set, filter murals by their corresponding folder").optional()
15
+ }).describe("Request model for listing murals within a room.");
16
+ const MuralListRoomMurals_MuralSchema = zod.z.object({
17
+ id: zod.z.string().describe("Unique identifier of the mural"),
18
+ title: zod.z.string().describe("Title of the mural").nullable().optional(),
19
+ roomId: zod.z.number().int().describe("ID of the room containing the mural").nullable().optional(),
20
+ createdBy: zod.z.string().describe("ID of the user who created the mural").nullable().optional(),
21
+ createdOn: zod.z.number().int().describe("Timestamp when the mural was created (in milliseconds)").nullable().optional(),
22
+ updatedOn: zod.z.number().int().describe("Timestamp when the mural was last updated (in milliseconds)").nullable().optional(),
23
+ description: zod.z.string().describe("Description of the mural").nullable().optional(),
24
+ workspaceId: zod.z.string().describe("ID of the workspace containing the mural").nullable().optional(),
25
+ thumbnailUrl: zod.z.string().describe("URL of the mural thumbnail image").nullable().optional()
26
+ }).passthrough().describe("Represents a mural object returned by the API.");
27
+ const MuralListRoomMuralsOutput = zod.z.object({
28
+ next: zod.z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
29
+ value: zod.z.array(MuralListRoomMurals_MuralSchema).describe("Array of murals in the room")
30
+ }).describe("Response model for listing murals within a room.");
31
+ const muralListRoomMurals = require_action.action("MURAL_LIST_ROOM_MURALS", {
32
+ slug: "mural-list-room-murals",
33
+ name: "List murals in room",
34
+ description: "Tool to list all murals for a room that the authenticated user has read access to. Use after getting a room ID to retrieve murals within that room.",
35
+ input: MuralListRoomMuralsInput,
36
+ output: MuralListRoomMuralsOutput
37
+ });
38
+ //#endregion
39
+ exports.muralListRoomMurals = muralListRoomMurals;
40
+
41
+ //# sourceMappingURL=list-room-murals.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-murals.cjs","names":["z","action"],"sources":["../../src/actions/list-room-murals.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomMuralsInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Token to get the next page of items\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to be returned by the endpoint\").optional(),\n roomId: z.number().int().describe(\"Unique identifier of the room to list murals from\"),\n sortBy: z.enum([\"lastCreated\", \"lastModified\", \"oldest\"]).describe(\"Sort order options for murals.\").optional(),\n status: z.enum([\"active\", \"archived\"]).describe(\"Status filter for murals.\").optional(),\n folderId: z.string().describe(\"When set, filter murals by their corresponding folder\").optional(),\n}).describe(\"Request model for listing murals within a room.\");\nconst MuralListRoomMurals_MuralSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the mural\"),\n title: z.string().describe(\"Title of the mural\").nullable().optional(),\n roomId: z.number().int().describe(\"ID of the room containing the mural\").nullable().optional(),\n createdBy: z.string().describe(\"ID of the user who created the mural\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the mural was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the mural was last updated (in milliseconds)\").nullable().optional(),\n description: z.string().describe(\"Description of the mural\").nullable().optional(),\n workspaceId: z.string().describe(\"ID of the workspace containing the mural\").nullable().optional(),\n thumbnailUrl: z.string().describe(\"URL of the mural thumbnail image\").nullable().optional(),\n}).passthrough().describe(\"Represents a mural object returned by the API.\");\nexport const MuralListRoomMuralsOutput: 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(MuralListRoomMurals_MuralSchema).describe(\"Array of murals in the room\"),\n}).describe(\"Response model for listing murals within a room.\");\n\nexport const muralListRoomMurals = action(\"MURAL_LIST_ROOM_MURALS\", {\n slug: \"mural-list-room-murals\",\n name: \"List murals in room\",\n description: \"Tool to list all murals for a room that the authenticated user has read access to. Use after getting a room ID to retrieve murals within that room.\",\n input: MuralListRoomMuralsInput,\n output: MuralListRoomMuralsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC1E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CACtG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD;CACrF,QAAQA,IAAAA,EAAE,KAAK;EAAC;EAAe;EAAgB;CAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CAC9G,QAAQA,IAAAA,EAAE,KAAK,CAAC,UAAU,UAAU,CAAC,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;AAClG,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAM,kCAAgDA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAAgD;AAC1E,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,OAAOA,IAAAA,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,6BAA6B;AACxF,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAE9D,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/list-room-murals.d.ts
4
+ declare const MuralListRoomMuralsInput: z.ZodTypeAny;
5
+ declare const MuralListRoomMuralsOutput: z.ZodTypeAny;
6
+ declare const muralListRoomMurals: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRoomMurals };
9
+ //# sourceMappingURL=list-room-murals.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-murals.d.cts","names":[],"sources":["../../src/actions/list-room-murals.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAOqB;AAAA,cAYjD,yBAAA,EAA2B,CAAA,CAAE,UAGqB;AAAA,cAElD,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-room-murals.d.ts
4
+ declare const MuralListRoomMuralsInput: z.ZodTypeAny;
5
+ declare const MuralListRoomMuralsOutput: z.ZodTypeAny;
6
+ declare const muralListRoomMurals: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRoomMurals };
9
+ //# sourceMappingURL=list-room-murals.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-murals.d.mts","names":[],"sources":["../../src/actions/list-room-murals.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAOqB;AAAA,cAYjD,yBAAA,EAA2B,CAAA,CAAE,UAGqB;AAAA,cAElD,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,40 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-room-murals.ts
4
+ const MuralListRoomMuralsInput = z.object({
5
+ next: z.string().describe("Token to get the next page of items").optional(),
6
+ limit: z.number().int().describe("Maximum number of results to be returned by the endpoint").optional(),
7
+ roomId: z.number().int().describe("Unique identifier of the room to list murals from"),
8
+ sortBy: z.enum([
9
+ "lastCreated",
10
+ "lastModified",
11
+ "oldest"
12
+ ]).describe("Sort order options for murals.").optional(),
13
+ status: z.enum(["active", "archived"]).describe("Status filter for murals.").optional(),
14
+ folderId: z.string().describe("When set, filter murals by their corresponding folder").optional()
15
+ }).describe("Request model for listing murals within a room.");
16
+ const MuralListRoomMurals_MuralSchema = z.object({
17
+ id: z.string().describe("Unique identifier of the mural"),
18
+ title: z.string().describe("Title of the mural").nullable().optional(),
19
+ roomId: z.number().int().describe("ID of the room containing the mural").nullable().optional(),
20
+ createdBy: z.string().describe("ID of the user who created the mural").nullable().optional(),
21
+ createdOn: z.number().int().describe("Timestamp when the mural was created (in milliseconds)").nullable().optional(),
22
+ updatedOn: z.number().int().describe("Timestamp when the mural was last updated (in milliseconds)").nullable().optional(),
23
+ description: z.string().describe("Description of the mural").nullable().optional(),
24
+ workspaceId: z.string().describe("ID of the workspace containing the mural").nullable().optional(),
25
+ thumbnailUrl: z.string().describe("URL of the mural thumbnail image").nullable().optional()
26
+ }).passthrough().describe("Represents a mural object returned by the API.");
27
+ const muralListRoomMurals = action("MURAL_LIST_ROOM_MURALS", {
28
+ slug: "mural-list-room-murals",
29
+ name: "List murals in room",
30
+ description: "Tool to list all murals for a room that the authenticated user has read access to. Use after getting a room ID to retrieve murals within that room.",
31
+ input: MuralListRoomMuralsInput,
32
+ output: z.object({
33
+ next: z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
34
+ value: z.array(MuralListRoomMurals_MuralSchema).describe("Array of murals in the room")
35
+ }).describe("Response model for listing murals within a room.")
36
+ });
37
+ //#endregion
38
+ export { muralListRoomMurals };
39
+
40
+ //# sourceMappingURL=list-room-murals.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-murals.mjs","names":[],"sources":["../../src/actions/list-room-murals.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomMuralsInput: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Token to get the next page of items\").optional(),\n limit: z.number().int().describe(\"Maximum number of results to be returned by the endpoint\").optional(),\n roomId: z.number().int().describe(\"Unique identifier of the room to list murals from\"),\n sortBy: z.enum([\"lastCreated\", \"lastModified\", \"oldest\"]).describe(\"Sort order options for murals.\").optional(),\n status: z.enum([\"active\", \"archived\"]).describe(\"Status filter for murals.\").optional(),\n folderId: z.string().describe(\"When set, filter murals by their corresponding folder\").optional(),\n}).describe(\"Request model for listing murals within a room.\");\nconst MuralListRoomMurals_MuralSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the mural\"),\n title: z.string().describe(\"Title of the mural\").nullable().optional(),\n roomId: z.number().int().describe(\"ID of the room containing the mural\").nullable().optional(),\n createdBy: z.string().describe(\"ID of the user who created the mural\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the mural was created (in milliseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the mural was last updated (in milliseconds)\").nullable().optional(),\n description: z.string().describe(\"Description of the mural\").nullable().optional(),\n workspaceId: z.string().describe(\"ID of the workspace containing the mural\").nullable().optional(),\n thumbnailUrl: z.string().describe(\"URL of the mural thumbnail image\").nullable().optional(),\n}).passthrough().describe(\"Represents a mural object returned by the API.\");\nexport const MuralListRoomMuralsOutput: 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(MuralListRoomMurals_MuralSchema).describe(\"Array of murals in the room\"),\n}).describe(\"Response model for listing murals within a room.\");\n\nexport const muralListRoomMurals = action(\"MURAL_LIST_ROOM_MURALS\", {\n slug: \"mural-list-room-murals\",\n name: \"List murals in room\",\n description: \"Tool to list all murals for a room that the authenticated user has read access to. Use after getting a room ID to retrieve murals within that room.\",\n input: MuralListRoomMuralsInput,\n output: MuralListRoomMuralsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyC,EAAE,OAAO;CAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CACtG,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD;CACrF,QAAQ,EAAE,KAAK;EAAC;EAAe;EAAgB;CAAQ,CAAC,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CAC9G,QAAQ,EAAE,KAAK,CAAC,UAAU,UAAU,CAAC,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;AAClG,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAM,kCAAgD,EAAE,OAAO;CAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAAgD;AAM1E,MAAa,sBAAsB,OAAO,0BAA0B;CAClE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVqD,EAAE,OAAO;EAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7G,OAAO,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,6BAA6B;CACxF,CAAC,CAAC,CAAC,SAAS,kDAOF;AACV,CAAC"}
@@ -0,0 +1,32 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-room-users.ts
4
+ const MuralListRoomUsersInput = 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 users to return per page (must be ≥1)").optional(),
7
+ roomId: zod.z.string().describe("Unique identifier of the room to list users from")
8
+ }).describe("Request model for listing users in a room.");
9
+ const MuralListRoomUsers_RoomUserSchema = zod.z.object({
10
+ id: zod.z.string().describe("Unique identifier for the user"),
11
+ type: zod.z.string().describe("Type of the user (e.g., 'member', 'guest')").nullable().optional(),
12
+ email: zod.z.string().describe("Email address of the user"),
13
+ avatar: zod.z.string().describe("URL to the user's avatar image").nullable().optional(),
14
+ lastName: zod.z.string().describe("Last name of the user"),
15
+ createdOn: zod.z.number().int().describe("Timestamp when the user was created (in microseconds)").nullable().optional(),
16
+ firstName: zod.z.string().describe("First name of the user")
17
+ }).describe("Represents a user who is a member or guest of a room.");
18
+ const MuralListRoomUsersOutput = zod.z.object({
19
+ next: zod.z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
20
+ value: zod.z.array(MuralListRoomUsers_RoomUserSchema).describe("Array of users in the room")
21
+ }).describe("Response model for listing users in a room.");
22
+ const muralListRoomUsers = require_action.action("MURAL_LIST_ROOM_USERS", {
23
+ slug: "mural-list-room-users",
24
+ name: "List users in room",
25
+ description: "Tool to list all members and guests for a room. Returns users that the authenticated user has access to view. Use after LIST_ROOMS to get room membership details.",
26
+ input: MuralListRoomUsersInput,
27
+ output: MuralListRoomUsersOutput
28
+ });
29
+ //#endregion
30
+ exports.muralListRoomUsers = muralListRoomUsers;
31
+
32
+ //# sourceMappingURL=list-room-users.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-users.cjs","names":["z","action"],"sources":["../../src/actions/list-room-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomUsersInput: 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 users to return per page (must be ≥1)\").optional(),\n roomId: z.string().describe(\"Unique identifier of the room to list users from\"),\n}).describe(\"Request model for listing users in a room.\");\nconst MuralListRoomUsers_RoomUserSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the user\"),\n type: z.string().describe(\"Type of the user (e.g., 'member', 'guest')\").nullable().optional(),\n email: z.string().describe(\"Email address of the user\"),\n avatar: z.string().describe(\"URL to the user's avatar image\").nullable().optional(),\n lastName: z.string().describe(\"Last name of the user\"),\n createdOn: z.number().int().describe(\"Timestamp when the user was created (in microseconds)\").nullable().optional(),\n firstName: z.string().describe(\"First name of the user\"),\n}).describe(\"Represents a user who is a member or guest of a room.\");\nexport const MuralListRoomUsersOutput: 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(MuralListRoomUsers_RoomUserSchema).describe(\"Array of users in the room\"),\n}).describe(\"Response model for listing users in a room.\");\n\nexport const muralListRoomUsers = action(\"MURAL_LIST_ROOM_USERS\", {\n slug: \"mural-list-room-users\",\n name: \"List users in room\",\n description: \"Tool to list all members and guests for a room. Returns users that the authenticated user has access to view. Use after LIST_ROOMS to get room membership details.\",\n input: MuralListRoomUsersInput,\n output: MuralListRoomUsersOutput,\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,yDAAyD,CAAC,CAAC,SAAS;CACrG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;AAChF,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAM,oCAAkDA,IAAAA,EAAE,OAAO;CAC/D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACrD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AACzD,CAAC,CAAC,CAAC,SAAS,uDAAuD;AACnE,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,iCAAiC,CAAC,CAAC,SAAS,4BAA4B;AACzF,CAAC,CAAC,CAAC,SAAS,6CAA6C;AAEzD,MAAa,qBAAqBC,eAAAA,OAAO,yBAAyB;CAChE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-room-users.d.ts
4
+ declare const MuralListRoomUsersInput: z.ZodTypeAny;
5
+ declare const MuralListRoomUsersOutput: z.ZodTypeAny;
6
+ declare const muralListRoomUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRoomUsers };
9
+ //# sourceMappingURL=list-room-users.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-users.d.cts","names":[],"sources":["../../src/actions/list-room-users.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAIiB;AAAA,cAU5C,wBAAA,EAA0B,CAAA,CAAE,UAGiB;AAAA,cAE7C,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-room-users.d.ts
4
+ declare const MuralListRoomUsersInput: z.ZodTypeAny;
5
+ declare const MuralListRoomUsersOutput: z.ZodTypeAny;
6
+ declare const muralListRoomUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRoomUsers };
9
+ //# sourceMappingURL=list-room-users.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-users.d.mts","names":[],"sources":["../../src/actions/list-room-users.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAIiB;AAAA,cAU5C,wBAAA,EAA0B,CAAA,CAAE,UAGiB;AAAA,cAE7C,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,31 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-room-users.ts
4
+ const MuralListRoomUsersInput = 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 users to return per page (must be ≥1)").optional(),
7
+ roomId: z.string().describe("Unique identifier of the room to list users from")
8
+ }).describe("Request model for listing users in a room.");
9
+ const MuralListRoomUsers_RoomUserSchema = z.object({
10
+ id: z.string().describe("Unique identifier for the user"),
11
+ type: z.string().describe("Type of the user (e.g., 'member', 'guest')").nullable().optional(),
12
+ email: z.string().describe("Email address of the user"),
13
+ avatar: z.string().describe("URL to the user's avatar image").nullable().optional(),
14
+ lastName: z.string().describe("Last name of the user"),
15
+ createdOn: z.number().int().describe("Timestamp when the user was created (in microseconds)").nullable().optional(),
16
+ firstName: z.string().describe("First name of the user")
17
+ }).describe("Represents a user who is a member or guest of a room.");
18
+ const muralListRoomUsers = action("MURAL_LIST_ROOM_USERS", {
19
+ slug: "mural-list-room-users",
20
+ name: "List users in room",
21
+ description: "Tool to list all members and guests for a room. Returns users that the authenticated user has access to view. Use after LIST_ROOMS to get room membership details.",
22
+ input: MuralListRoomUsersInput,
23
+ output: z.object({
24
+ next: z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
25
+ value: z.array(MuralListRoomUsers_RoomUserSchema).describe("Array of users in the room")
26
+ }).describe("Response model for listing users in a room.")
27
+ });
28
+ //#endregion
29
+ export { muralListRoomUsers };
30
+
31
+ //# sourceMappingURL=list-room-users.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-room-users.mjs","names":[],"sources":["../../src/actions/list-room-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomUsersInput: 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 users to return per page (must be ≥1)\").optional(),\n roomId: z.string().describe(\"Unique identifier of the room to list users from\"),\n}).describe(\"Request model for listing users in a room.\");\nconst MuralListRoomUsers_RoomUserSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the user\"),\n type: z.string().describe(\"Type of the user (e.g., 'member', 'guest')\").nullable().optional(),\n email: z.string().describe(\"Email address of the user\"),\n avatar: z.string().describe(\"URL to the user's avatar image\").nullable().optional(),\n lastName: z.string().describe(\"Last name of the user\"),\n createdOn: z.number().int().describe(\"Timestamp when the user was created (in microseconds)\").nullable().optional(),\n firstName: z.string().describe(\"First name of the user\"),\n}).describe(\"Represents a user who is a member or guest of a room.\");\nexport const MuralListRoomUsersOutput: 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(MuralListRoomUsers_RoomUserSchema).describe(\"Array of users in the room\"),\n}).describe(\"Response model for listing users in a room.\");\n\nexport const muralListRoomUsers = action(\"MURAL_LIST_ROOM_USERS\", {\n slug: \"mural-list-room-users\",\n name: \"List users in room\",\n description: \"Tool to list all members and guests for a room. Returns users that the authenticated user has access to view. Use after LIST_ROOMS to get room membership details.\",\n input: MuralListRoomUsersInput,\n output: MuralListRoomUsersOutput,\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,yDAAyD,CAAC,CAAC,SAAS;CACrG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;AAChF,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAM,oCAAkD,EAAE,OAAO;CAC/D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CACrD,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;AACzD,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAMnE,MAAa,qBAAqB,OAAO,yBAAyB;CAChE,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,iCAAiC,CAAC,CAAC,SAAS,4BAA4B;CACzF,CAAC,CAAC,CAAC,SAAS,6CAOF;AACV,CAAC"}
@@ -0,0 +1,35 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-rooms.ts
4
+ const MuralListRoomsInput = 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 rooms to return per page (must be ≥1)").optional(),
7
+ workspaceId: zod.z.string().describe("Unique identifier of the workspace to list rooms from")
8
+ }).describe("Request model for listing rooms within a workspace.");
9
+ const MuralListRooms_RoomSchema = zod.z.object({
10
+ id: zod.z.string().describe("Unique identifier of the room"),
11
+ name: zod.z.string().describe("Name of the room"),
12
+ type: zod.z.string().describe("Type of the room (e.g., 'open', 'private')"),
13
+ favorite: zod.z.boolean().describe("Whether the room is marked as favorite by the user").nullable().optional(),
14
+ isMember: zod.z.boolean().describe("Whether the current user is a member of this room").nullable().optional(),
15
+ createdOn: zod.z.number().int().describe("Timestamp when the room was created (in microseconds)").nullable().optional(),
16
+ updatedOn: zod.z.number().int().describe("Timestamp when the room was last updated (in microseconds)").nullable().optional(),
17
+ description: zod.z.string().describe("Description of the room").nullable().optional(),
18
+ workspaceId: zod.z.string().describe("ID of the workspace containing this room"),
19
+ confidential: zod.z.boolean().describe("Whether the room is marked as confidential").nullable().optional()
20
+ }).describe("Represents a room within a workspace.");
21
+ const MuralListRoomsOutput = zod.z.object({
22
+ next: zod.z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
23
+ value: zod.z.array(MuralListRooms_RoomSchema).describe("Array of rooms in the workspace")
24
+ }).describe("Response model for listing rooms within a workspace.");
25
+ const muralListRooms = require_action.action("MURAL_LIST_ROOMS", {
26
+ slug: "mural-list-rooms",
27
+ name: "List rooms in workspace",
28
+ description: "Tool to list all rooms within a workspace. Use after MURAL_LIST_WORKSPACES to navigate rooms and before MURAL_CREATE_MURAL, since murals are created within rooms.",
29
+ input: MuralListRoomsInput,
30
+ output: MuralListRoomsOutput
31
+ });
32
+ //#endregion
33
+ exports.muralListRooms = muralListRooms;
34
+
35
+ //# sourceMappingURL=list-rooms.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-rooms.cjs","names":["z","action"],"sources":["../../src/actions/list-rooms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomsInput: 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 rooms to return per page (must be ≥1)\").optional(),\n workspaceId: z.string().describe(\"Unique identifier of the workspace to list rooms from\"),\n}).describe(\"Request model for listing rooms within a workspace.\");\nconst MuralListRooms_RoomSchema: 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(\"Represents a room within a workspace.\");\nexport const MuralListRoomsOutput: 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(MuralListRooms_RoomSchema).describe(\"Array of rooms in the workspace\"),\n}).describe(\"Response model for listing rooms within a workspace.\");\n\nexport const muralListRooms = action(\"MURAL_LIST_ROOMS\", {\n slug: \"mural-list-rooms\",\n name: \"List rooms in workspace\",\n description: \"Tool to list all rooms within a workspace. Use after MURAL_LIST_WORKSPACES to navigate rooms and before MURAL_CREATE_MURAL, since murals are created within rooms.\",\n input: MuralListRoomsInput,\n output: MuralListRoomsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAoCA,IAAAA,EAAE,OAAO;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC/F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AAC1F,CAAC,CAAC,CAAC,SAAS,qDAAqD;AACjE,MAAM,4BAA0CA,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,uCAAuC;AACnD,MAAa,uBAAqCA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,OAAOA,IAAAA,EAAE,MAAM,yBAAyB,CAAC,CAAC,SAAS,iCAAiC;AACtF,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAElE,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-rooms.d.ts
4
+ declare const MuralListRoomsInput: z.ZodTypeAny;
5
+ declare const MuralListRoomsOutput: z.ZodTypeAny;
6
+ declare const muralListRooms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRooms };
9
+ //# sourceMappingURL=list-rooms.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-rooms.d.cts","names":[],"sources":["../../src/actions/list-rooms.ts"],"mappings":";;;cAIa,mBAAA,EAAqB,CAAA,CAAE,UAI8B;AAAA,cAarD,oBAAA,EAAsB,CAAA,CAAE,UAG8B;AAAA,cAEtD,cAAA,gCAAc,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-rooms.d.ts
4
+ declare const MuralListRoomsInput: z.ZodTypeAny;
5
+ declare const MuralListRoomsOutput: z.ZodTypeAny;
6
+ declare const muralListRooms: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListRooms };
9
+ //# sourceMappingURL=list-rooms.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-rooms.d.mts","names":[],"sources":["../../src/actions/list-rooms.ts"],"mappings":";;;cAIa,mBAAA,EAAqB,CAAA,CAAE,UAI8B;AAAA,cAarD,oBAAA,EAAsB,CAAA,CAAE,UAG8B;AAAA,cAEtD,cAAA,gCAAc,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,34 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-rooms.ts
4
+ const MuralListRoomsInput = 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 rooms to return per page (must be ≥1)").optional(),
7
+ workspaceId: z.string().describe("Unique identifier of the workspace to list rooms from")
8
+ }).describe("Request model for listing rooms within a workspace.");
9
+ const MuralListRooms_RoomSchema = z.object({
10
+ id: z.string().describe("Unique identifier of the room"),
11
+ name: z.string().describe("Name of the room"),
12
+ type: z.string().describe("Type of the room (e.g., 'open', 'private')"),
13
+ favorite: z.boolean().describe("Whether the room is marked as favorite by the user").nullable().optional(),
14
+ isMember: z.boolean().describe("Whether the current user is a member of this room").nullable().optional(),
15
+ createdOn: z.number().int().describe("Timestamp when the room was created (in microseconds)").nullable().optional(),
16
+ updatedOn: z.number().int().describe("Timestamp when the room was last updated (in microseconds)").nullable().optional(),
17
+ description: z.string().describe("Description of the room").nullable().optional(),
18
+ workspaceId: z.string().describe("ID of the workspace containing this room"),
19
+ confidential: z.boolean().describe("Whether the room is marked as confidential").nullable().optional()
20
+ }).describe("Represents a room within a workspace.");
21
+ const muralListRooms = action("MURAL_LIST_ROOMS", {
22
+ slug: "mural-list-rooms",
23
+ name: "List rooms in workspace",
24
+ description: "Tool to list all rooms within a workspace. Use after MURAL_LIST_WORKSPACES to navigate rooms and before MURAL_CREATE_MURAL, since murals are created within rooms.",
25
+ input: MuralListRoomsInput,
26
+ output: z.object({
27
+ next: z.string().describe("Pagination token for the next page of results, if available").nullable().optional(),
28
+ value: z.array(MuralListRooms_RoomSchema).describe("Array of rooms in the workspace")
29
+ }).describe("Response model for listing rooms within a workspace.")
30
+ });
31
+ //#endregion
32
+ export { muralListRooms };
33
+
34
+ //# sourceMappingURL=list-rooms.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-rooms.mjs","names":[],"sources":["../../src/actions/list-rooms.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListRoomsInput: 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 rooms to return per page (must be ≥1)\").optional(),\n workspaceId: z.string().describe(\"Unique identifier of the workspace to list rooms from\"),\n}).describe(\"Request model for listing rooms within a workspace.\");\nconst MuralListRooms_RoomSchema: 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(\"Represents a room within a workspace.\");\nexport const MuralListRoomsOutput: 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(MuralListRooms_RoomSchema).describe(\"Array of rooms in the workspace\"),\n}).describe(\"Response model for listing rooms within a workspace.\");\n\nexport const muralListRooms = action(\"MURAL_LIST_ROOMS\", {\n slug: \"mural-list-rooms\",\n name: \"List rooms in workspace\",\n description: \"Tool to list all rooms within a workspace. Use after MURAL_LIST_WORKSPACES to navigate rooms and before MURAL_CREATE_MURAL, since murals are created within rooms.\",\n input: MuralListRoomsInput,\n output: MuralListRoomsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAoC,EAAE,OAAO;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC/F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AAC1F,CAAC,CAAC,CAAC,SAAS,qDAAqD;AACjE,MAAM,4BAA0C,EAAE,OAAO;CACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACvD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACtE,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CAC3E,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvG,CAAC,CAAC,CAAC,SAAS,uCAAuC;AAMnD,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVgD,EAAE,OAAO;EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7G,OAAO,EAAE,MAAM,yBAAyB,CAAC,CAAC,SAAS,iCAAiC;CACtF,CAAC,CAAC,CAAC,SAAS,sDAOF;AACV,CAAC"}
@@ -0,0 +1,23 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-tags.ts
4
+ const MuralListTagsInput = zod.z.object({ muralId: zod.z.string().describe("Unique identifier of a mural") }).describe("Request model for retrieving tags in a mural.");
5
+ const MuralListTags_TagSchema = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier of the tag"),
7
+ text: zod.z.string().describe("Text content of the tag (max 25 characters)"),
8
+ color: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Text color properties of the tag").nullable().optional(),
9
+ borderColor: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Border color properties of the tag").nullable().optional(),
10
+ backgroundColor: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Background color properties of the tag").nullable().optional()
11
+ }).describe("Represents a tag in a mural.");
12
+ const MuralListTagsOutput = zod.z.object({ value: zod.z.array(MuralListTags_TagSchema).describe("The array of tags returned") }).describe("Response model for retrieving tags in a mural.");
13
+ const muralListTags = require_action.action("MURAL_LIST_TAGS", {
14
+ slug: "mural-list-tags",
15
+ name: "List tags in a mural",
16
+ description: "Tool to retrieve all tags in a mural. Use when you need to list or view tags associated with a specific mural.",
17
+ input: MuralListTagsInput,
18
+ output: MuralListTagsOutput
19
+ });
20
+ //#endregion
21
+ exports.muralListTags = muralListTags;
22
+
23
+ //# sourceMappingURL=list-tags.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-tags.cjs","names":["z","action"],"sources":["../../src/actions/list-tags.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListTagsInput: z.ZodTypeAny = z.object({\n muralId: z.string().describe(\"Unique identifier of a mural\"),\n}).describe(\"Request model for retrieving tags in a mural.\");\nconst MuralListTags_TagSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the tag\"),\n text: z.string().describe(\"Text content of the tag (max 25 characters)\"),\n color: z.record(z.string(), z.unknown()).describe(\"Text color properties of the tag\").nullable().optional(),\n borderColor: z.record(z.string(), z.unknown()).describe(\"Border color properties of the tag\").nullable().optional(),\n backgroundColor: z.record(z.string(), z.unknown()).describe(\"Background color properties of the tag\").nullable().optional(),\n}).describe(\"Represents a tag in a mural.\");\nexport const MuralListTagsOutput: z.ZodTypeAny = z.object({\n value: z.array(MuralListTags_TagSchema).describe(\"The array of tags returned\"),\n}).describe(\"Response model for retrieving tags in a mural.\");\n\nexport const muralListTags = action(\"MURAL_LIST_TAGS\", {\n slug: \"mural-list-tags\",\n name: \"List tags in a mural\",\n description: \"Tool to retrieve all tags in a mural. Use when you need to list or view tags associated with a specific mural.\",\n input: MuralListTagsInput,\n output: MuralListTagsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qBAAmCA,IAAAA,EAAE,OAAO,EACvD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,EAC7D,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAC3D,MAAM,0BAAwCA,IAAAA,EAAE,OAAO;CACrD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CACvE,OAAOA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,aAAaA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,iBAAiBA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5H,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAC1C,MAAa,sBAAoCA,IAAAA,EAAE,OAAO,EACxD,OAAOA,IAAAA,EAAE,MAAM,uBAAuB,CAAC,CAAC,SAAS,4BAA4B,EAC/E,CAAC,CAAC,CAAC,SAAS,gDAAgD;AAE5D,MAAa,gBAAgBC,eAAAA,OAAO,mBAAmB;CACrD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-tags.d.ts
4
+ declare const MuralListTagsInput: z.ZodTypeAny;
5
+ declare const MuralListTagsOutput: z.ZodTypeAny;
6
+ declare const muralListTags: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListTags };
9
+ //# sourceMappingURL=list-tags.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-tags.d.cts","names":[],"sources":["../../src/actions/list-tags.ts"],"mappings":";;;cAIa,kBAAA,EAAoB,CAAA,CAAE,UAEyB;AAAA,cAQ/C,mBAAA,EAAqB,CAAA,CAAE,UAEyB;AAAA,cAEhD,aAAA,gCAAa,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-tags.d.ts
4
+ declare const MuralListTagsInput: z.ZodTypeAny;
5
+ declare const MuralListTagsOutput: z.ZodTypeAny;
6
+ declare const muralListTags: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListTags };
9
+ //# sourceMappingURL=list-tags.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-tags.d.mts","names":[],"sources":["../../src/actions/list-tags.ts"],"mappings":";;;cAIa,kBAAA,EAAoB,CAAA,CAAE,UAEyB;AAAA,cAQ/C,mBAAA,EAAqB,CAAA,CAAE,UAEyB;AAAA,cAEhD,aAAA,gCAAa,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,22 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-tags.ts
4
+ const MuralListTagsInput = z.object({ muralId: z.string().describe("Unique identifier of a mural") }).describe("Request model for retrieving tags in a mural.");
5
+ const MuralListTags_TagSchema = z.object({
6
+ id: z.string().describe("Unique identifier of the tag"),
7
+ text: z.string().describe("Text content of the tag (max 25 characters)"),
8
+ color: z.record(z.string(), z.unknown()).describe("Text color properties of the tag").nullable().optional(),
9
+ borderColor: z.record(z.string(), z.unknown()).describe("Border color properties of the tag").nullable().optional(),
10
+ backgroundColor: z.record(z.string(), z.unknown()).describe("Background color properties of the tag").nullable().optional()
11
+ }).describe("Represents a tag in a mural.");
12
+ const muralListTags = action("MURAL_LIST_TAGS", {
13
+ slug: "mural-list-tags",
14
+ name: "List tags in a mural",
15
+ description: "Tool to retrieve all tags in a mural. Use when you need to list or view tags associated with a specific mural.",
16
+ input: MuralListTagsInput,
17
+ output: z.object({ value: z.array(MuralListTags_TagSchema).describe("The array of tags returned") }).describe("Response model for retrieving tags in a mural.")
18
+ });
19
+ //#endregion
20
+ export { muralListTags };
21
+
22
+ //# sourceMappingURL=list-tags.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-tags.mjs","names":[],"sources":["../../src/actions/list-tags.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListTagsInput: z.ZodTypeAny = z.object({\n muralId: z.string().describe(\"Unique identifier of a mural\"),\n}).describe(\"Request model for retrieving tags in a mural.\");\nconst MuralListTags_TagSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the tag\"),\n text: z.string().describe(\"Text content of the tag (max 25 characters)\"),\n color: z.record(z.string(), z.unknown()).describe(\"Text color properties of the tag\").nullable().optional(),\n borderColor: z.record(z.string(), z.unknown()).describe(\"Border color properties of the tag\").nullable().optional(),\n backgroundColor: z.record(z.string(), z.unknown()).describe(\"Background color properties of the tag\").nullable().optional(),\n}).describe(\"Represents a tag in a mural.\");\nexport const MuralListTagsOutput: z.ZodTypeAny = z.object({\n value: z.array(MuralListTags_TagSchema).describe(\"The array of tags returned\"),\n}).describe(\"Response model for retrieving tags in a mural.\");\n\nexport const muralListTags = action(\"MURAL_LIST_TAGS\", {\n slug: \"mural-list-tags\",\n name: \"List tags in a mural\",\n description: \"Tool to retrieve all tags in a mural. Use when you need to list or view tags associated with a specific mural.\",\n input: MuralListTagsInput,\n output: MuralListTagsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qBAAmC,EAAE,OAAO,EACvD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,EAC7D,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAC3D,MAAM,0BAAwC,EAAE,OAAO;CACrD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CACvE,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,aAAa,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,iBAAiB,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5H,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAK1C,MAAa,gBAAgB,OAAO,mBAAmB;CACrD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT+C,EAAE,OAAO,EACxD,OAAO,EAAE,MAAM,uBAAuB,CAAC,CAAC,SAAS,4BAA4B,EAC/E,CAAC,CAAC,CAAC,SAAS,gDAOF;AACV,CAAC"}
@@ -0,0 +1,29 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-templates.ts
4
+ const MuralListTemplatesInput = 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 templates to return per page (must be ≥1)").optional()
7
+ }).describe("Request model for listing all default templates.");
8
+ const MuralListTemplates_DefaultTemplateSchema = zod.z.object({
9
+ id: zod.z.string().describe("Unique identifier of the template"),
10
+ name: zod.z.string().describe("Name of the template"),
11
+ type: zod.z.string().describe("Type of the template").nullable().optional(),
12
+ createdOn: zod.z.number().int().describe("Timestamp when the template was created (in microseconds)").nullable().optional(),
13
+ updatedOn: zod.z.number().int().describe("Timestamp when the template was last updated (in microseconds)").nullable().optional()
14
+ }).describe("Represents a default template available in Mural.");
15
+ const MuralListTemplatesOutput = 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(MuralListTemplates_DefaultTemplateSchema).describe("Array of default templates available in Mural")
18
+ }).describe("Response model for listing all default templates.");
19
+ const muralListTemplates = require_action.action("MURAL_LIST_TEMPLATES", {
20
+ slug: "mural-list-templates",
21
+ name: "List default templates",
22
+ description: "Tool to retrieve all default templates available in Mural. Use when you need to browse or select from standard Mural templates.",
23
+ input: MuralListTemplatesInput,
24
+ output: MuralListTemplatesOutput
25
+ });
26
+ //#endregion
27
+ exports.muralListTemplates = muralListTemplates;
28
+
29
+ //# sourceMappingURL=list-templates.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListTemplatesInput: 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 templates to return per page (must be ≥1)\").optional(),\n}).describe(\"Request model for listing all default templates.\");\nconst MuralListTemplates_DefaultTemplateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the template\"),\n name: z.string().describe(\"Name of the template\"),\n type: z.string().describe(\"Type of the template\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the template was created (in microseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the template was last updated (in microseconds)\").nullable().optional(),\n}).describe(\"Represents a default template available in Mural.\");\nexport const MuralListTemplatesOutput: 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(MuralListTemplates_DefaultTemplateSchema).describe(\"Array of default templates available in Mural\"),\n}).describe(\"Response model for listing all default templates.\");\n\nexport const muralListTemplates = action(\"MURAL_LIST_TEMPLATES\", {\n slug: \"mural-list-templates\",\n name: \"List default templates\",\n description: \"Tool to retrieve all default templates available in Mural. Use when you need to browse or select from standard Mural templates.\",\n input: MuralListTemplatesInput,\n output: MuralListTemplatesOutput,\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,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAM,2CAAyDA,IAAAA,EAAE,OAAO;CACtE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAC/D,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,wCAAwC,CAAC,CAAC,SAAS,+CAA+C;AACnH,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAE/D,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/list-templates.d.ts
4
+ declare const MuralListTemplatesInput: z.ZodTypeAny;
5
+ declare const MuralListTemplatesOutput: z.ZodTypeAny;
6
+ declare const muralListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListTemplates };
9
+ //# sourceMappingURL=list-templates.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGuB;AAAA,cAQlD,wBAAA,EAA0B,CAAA,CAAE,UAGuB;AAAA,cAEnD,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-templates.d.ts
4
+ declare const MuralListTemplatesInput: z.ZodTypeAny;
5
+ declare const MuralListTemplatesOutput: z.ZodTypeAny;
6
+ declare const muralListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { muralListTemplates };
9
+ //# sourceMappingURL=list-templates.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAGuB;AAAA,cAQlD,wBAAA,EAA0B,CAAA,CAAE,UAGuB;AAAA,cAEnD,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/list-templates.ts
4
+ const MuralListTemplatesInput = 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 templates to return per page (must be ≥1)").optional()
7
+ }).describe("Request model for listing all default templates.");
8
+ const MuralListTemplates_DefaultTemplateSchema = z.object({
9
+ id: z.string().describe("Unique identifier of the template"),
10
+ name: z.string().describe("Name of the template"),
11
+ type: z.string().describe("Type of the template").nullable().optional(),
12
+ createdOn: z.number().int().describe("Timestamp when the template was created (in microseconds)").nullable().optional(),
13
+ updatedOn: z.number().int().describe("Timestamp when the template was last updated (in microseconds)").nullable().optional()
14
+ }).describe("Represents a default template available in Mural.");
15
+ const muralListTemplates = action("MURAL_LIST_TEMPLATES", {
16
+ slug: "mural-list-templates",
17
+ name: "List default templates",
18
+ description: "Tool to retrieve all default templates available in Mural. Use when you need to browse or select from standard Mural templates.",
19
+ input: MuralListTemplatesInput,
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(MuralListTemplates_DefaultTemplateSchema).describe("Array of default templates available in Mural")
23
+ }).describe("Response model for listing all default templates.")
24
+ });
25
+ //#endregion
26
+ export { muralListTemplates };
27
+
28
+ //# sourceMappingURL=list-templates.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const MuralListTemplatesInput: 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 templates to return per page (must be ≥1)\").optional(),\n}).describe(\"Request model for listing all default templates.\");\nconst MuralListTemplates_DefaultTemplateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the template\"),\n name: z.string().describe(\"Name of the template\"),\n type: z.string().describe(\"Type of the template\").nullable().optional(),\n createdOn: z.number().int().describe(\"Timestamp when the template was created (in microseconds)\").nullable().optional(),\n updatedOn: z.number().int().describe(\"Timestamp when the template was last updated (in microseconds)\").nullable().optional(),\n}).describe(\"Represents a default template available in Mural.\");\nexport const MuralListTemplatesOutput: 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(MuralListTemplates_DefaultTemplateSchema).describe(\"Array of default templates available in Mural\"),\n}).describe(\"Response model for listing all default templates.\");\n\nexport const muralListTemplates = action(\"MURAL_LIST_TEMPLATES\", {\n slug: \"mural-list-templates\",\n name: \"List default templates\",\n description: \"Tool to retrieve all default templates available in Mural. Use when you need to browse or select from standard Mural templates.\",\n input: MuralListTemplatesInput,\n output: MuralListTemplatesOutput,\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,6DAA6D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAM,2CAAyD,EAAE,OAAO;CACtE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAM/D,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,wCAAwC,CAAC,CAAC,SAAS,+CAA+C;CACnH,CAAC,CAAC,CAAC,SAAS,mDAOF;AACV,CAAC"}