google_commit_edit
Commit and publish pending changes in a Google Play Console edit session to finalize app updates.
Instructions
Commit all pending changes in an edit session. This publishes the changes.
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:27-38 (handler)The handler for the tool `google_commit_edit`. It calls `client.commitEdit` with the provided package name and edit ID.
const commitEdit: ToolDef = { name: 'google_commit_edit', description: 'Commit all pending changes in an edit session. This publishes the changes.', 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.commitEdit(args.packageName, args.editId); return { success: true }; }, };