Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for changesNotSentForReview to be able to upload apps in process of review in newer versions play console API #69

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ A fork of [playup](https://github.com/jeduan/playup).
- [Usage](#usage)
- [Authentication](#authentication)
- [Contributing](CONTRIBUTING.md)
- [Troubleshooting](#troubleshooting)
- [Authors](#authors)
- [Acknowledgments](#acknowledgement)

Expand Down Expand Up @@ -115,6 +116,13 @@ The created Service Account needs the following role:

See the full docs [here](https://oss.eventone.page/apkup/classes/index.apkup).

## Troubleshooting

If you receive "ERROR: Changes cannot be sent for review automatically. Please set the query parameter changesNotSentForReview to true. Once committed, the changes in this edit can be sent for review from the Google Play Console UI."

then just pass `--changesNotSentForReview` param


## ✍️ Authors <a name = "authors"></a>

- [@nprail](https://github.com/nprail) - Maintainer
Expand Down
5 changes: 4 additions & 1 deletion src/Edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export interface IEditParams {
packageName: string
/** Version code of the package to be edited. */
versionCode: number
/** Weather to set changesNotSentForReview to true. */
changesNotSentForReview: boolean
}

export interface IEditResponse {
Expand Down Expand Up @@ -112,7 +114,8 @@ export class Edit {
debug('> Commiting changes')
const editCommit = await this.publisher.edits.commit({
editId: this.editId,
packageName: this.editParams.packageName
packageName: this.editParams.packageName,
changesNotSentForReview: this.editParams.changesNotSentForReview ? 'true' : undefined
})

debug('> Commited changes')
Expand Down
2 changes: 2 additions & 0 deletions src/actions/Upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export interface IUploadParams {
obbs?: string[]
/** A paths to the deobfuscation file for this release. */
deobfuscation?: string

changesNotSentForReview?: boolean
}

export interface IReleaseNotes {
Expand Down
5 changes: 5 additions & 0 deletions src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ const argv = yargs
describe: 'Path to the APK file',
type: 'array'
})
.option('changesNotSentForReview', {
alias: 'cnsfr',
describe: 'Indicates that the changes in publish will not be reviewed until they are explicitly sent for review from the Google Play Console UI. These changes will be added to any other changes that are not yet sent for review',
type: 'boolean'
})
.config(
'key',
'Path to a JSON file that contains the private key and client email (can be specified via APKUP_KEY env variable)',
Expand Down
3 changes: 2 additions & 1 deletion src/cli/promote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export const promote: CommandModule = {
}
const editParams: IEditParams = {
packageName: argv.packageName,
versionCode: argv.versionCode
versionCode: argv.versionCode,
changesNotSentForReview: argv.changesNotSentForReview
}

const apkup = new Apkup(argv.auth)
Expand Down
3 changes: 2 additions & 1 deletion src/cli/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export const upload: CommandModule = {
deobfuscation: argv.deobfuscation,
obbs: argv.obbs,
releaseNotes: [],
track: argv.track
track: argv.track,
changesNotSentForReview: argv.changesNotSentForReview
}

if (argv.releaseNotes) {
Expand Down
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export class Apkup {

const editParams: IEditParams = {
packageName: apkPackage.packageName,
versionCode: apkPackage.versionCode
versionCode: apkPackage.versionCode,
changesNotSentForReview: uploadParams?.changesNotSentForReview || false
}

const upload = new Upload(this.client, apk, uploadParams, editParams)
Expand Down Expand Up @@ -118,7 +119,8 @@ export class Apkup {

edit = {
packageName: apkPackage.packageName,
versionCode: apkPackage.versionCode
versionCode: apkPackage.versionCode,
changesNotSentForReview: editParams?.changesNotSentForReview || false
}
} else if (editParams) {
edit = editParams
Expand Down