figmanage 1.4.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tools/org.js CHANGED
@@ -271,7 +271,7 @@ defineTool({
271
271
  const result = await changeSeat(config, { user_id, seat_type, org_id, confirm });
272
272
  if (typeof result === 'string')
273
273
  return toolResult(result);
274
- return toolSummary('Seat change requires confirmation.', result);
274
+ return toolSummary(`Seat changed: ${result.old_seat} -> ${result.new_seat}.`, result);
275
275
  }
276
276
  catch (e) {
277
277
  return toolError(`Failed to change seat: ${formatApiError(e)}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "figmanage",
3
3
  "mcpName": "io.github.dannykeane/figmanage",
4
- "version": "1.4.1",
4
+ "version": "1.4.2",
5
5
  "description": "MCP server for managing your Figma workspace from the terminal.",
6
6
  "type": "module",
7
7
  "main": "dist/index.js",