google_delete_edit
Discard pending changes in Google Play Console edit sessions without committing them, using package name and edit ID.
Instructions
Discard an edit session without committing changes
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID |
Implementation Reference
- src/google/tools.ts:53-64 (handler)The implementation of the `google_delete_edit` tool, including its schema and handler logic.
const deleteEdit: ToolDef = { name: 'google_delete_edit', description: 'Discard an edit session without committing changes', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), }), handler: async (client, args) => { await client.deleteEdit(args.packageName, args.editId); return { success: true }; }, };