google_validate_edit
Validate Google Play edit sessions to check for errors before committing changes to your app listing.
Instructions
Validate an edit session without committing. Useful to check for errors before commit.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID from google_create_edit |
Implementation Reference
- src/google/tools.ts:40-51 (handler)The definition and handler implementation for the 'google_validate_edit' tool.
const validateEdit: ToolDef = { name: 'google_validate_edit', description: 'Validate an edit session without committing. Useful to check for errors before commit.', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID from google_create_edit'), }), handler: async (client, args) => { await client.validateEdit(args.packageName, args.editId); return { success: true, note: 'Edit is valid and ready to commit.' }; }, };