google_delete_all_images
Remove all images of a specific type for a language in Google Play Console to manage app listings and screenshots.
Instructions
Delete all images of a specific type for a language
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID | |
| language | Yes | Language code | |
| imageType | Yes | Image type |
Implementation Reference
- src/google/tools.ts:263-276 (handler)The handler function definition for 'google_delete_all_images' which uses the client to delete all images of a specified type.
const deleteAllImages: ToolDef = { name: 'google_delete_all_images', description: 'Delete all images of a specific type for a language', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), language: z.string().describe('Language code'), imageType: z.string().describe('Image type'), }), handler: async (client, args) => { await client.deleteAllImages(args.packageName, args.editId, args.language, args.imageType); return { success: true }; }, };