figmanage 1.4.0 → 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 +1 -1
- package/package.json +1 -1
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(
|
|
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