pabal-store-api-mcp 1.3.16 → 1.3.17

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.
@@ -534,7 +534,11 @@ export class GooglePlayClient {
534
534
  auth: session.auth,
535
535
  packageName: session.packageName,
536
536
  editId: session.editId,
537
- });
537
+ },
538
+ // Google Play deletes an edit after a successful commit. Retrying this
539
+ // non-idempotent request can surface a false "This Edit has been deleted"
540
+ // failure when the first attempt actually committed.
541
+ { retry: false });
538
542
  return { data: response.data };
539
543
  }
540
544
  async getAppDetails(session) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pabal-store-api-mcp",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
4
4
  "description": "MCP server for App Store / Play Store ASO workflows",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",