Skip to content

Commit

Permalink
fix(androidpublisher): update the API
Browse files Browse the repository at this point in the history
#### androidpublisher:v3
The following keys were changed:
- resources.systemapks.resources.variants.methods.create.parameters.packageName.description
- resources.systemapks.resources.variants.methods.download.parameters.packageName.description
- resources.systemapks.resources.variants.methods.get.parameters.packageName.description
- resources.systemapks.resources.variants.methods.list.parameters.packageName.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Nov 30, 2020
1 parent 008eee9 commit 110e16d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions discovery/androidpublisher-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -2531,7 +2531,7 @@
],
"parameters": {
"packageName": {
"description": "Unique identifier of the Android app.",
"description": "Package name of the app.",
"location": "path",
"required": true,
"type": "string"
Expand Down Expand Up @@ -2567,7 +2567,7 @@
],
"parameters": {
"packageName": {
"description": "Unique identifier of the Android app.",
"description": "Package name of the app.",
"location": "path",
"required": true,
"type": "string"
Expand Down Expand Up @@ -2606,7 +2606,7 @@
],
"parameters": {
"packageName": {
"description": "Unique identifier of the Android app.",
"description": "Package name of the app.",
"location": "path",
"required": true,
"type": "string"
Expand Down Expand Up @@ -2645,7 +2645,7 @@
],
"parameters": {
"packageName": {
"description": "Unique identifier of the Android app.",
"description": "Package name of the app.",
"location": "path",
"required": true,
"type": "string"
Expand All @@ -2671,7 +2671,7 @@
}
}
},
"revision": "20201027",
"revision": "20201127",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Apk": {
Expand Down
16 changes: 8 additions & 8 deletions src/apis/androidpublisher/v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10503,7 +10503,7 @@ export namespace androidpublisher_v3 {
*
* // Do the magic
* const res = await androidpublisher.systemapks.variants.create({
* // Unique identifier of the Android app.
* // Package name of the app.
* packageName: 'placeholder-value',
* // The version code of the App Bundle.
* versionCode: 'placeholder-value',
Expand Down Expand Up @@ -10645,7 +10645,7 @@ export namespace androidpublisher_v3 {
*
* // Do the magic
* const res = await androidpublisher.systemapks.variants.download({
* // Unique identifier of the Android app.
* // Package name of the app.
* packageName: 'placeholder-value',
* // The ID of a previously created system APK variant.
* variantId: 'placeholder-value',
Expand Down Expand Up @@ -10772,7 +10772,7 @@ export namespace androidpublisher_v3 {
*
* // Do the magic
* const res = await androidpublisher.systemapks.variants.get({
* // Unique identifier of the Android app.
* // Package name of the app.
* packageName: 'placeholder-value',
* // The ID of a previously created system APK variant.
* variantId: 'placeholder-value',
Expand Down Expand Up @@ -10907,7 +10907,7 @@ export namespace androidpublisher_v3 {
*
* // Do the magic
* const res = await androidpublisher.systemapks.variants.list({
* // Unique identifier of the Android app.
* // Package name of the app.
* packageName: 'placeholder-value',
* // The version code of the App Bundle.
* versionCode: 'placeholder-value',
Expand Down Expand Up @@ -11021,7 +11021,7 @@ export namespace androidpublisher_v3 {
export interface Params$Resource$Systemapks$Variants$Create
extends StandardParameters {
/**
* Unique identifier of the Android app.
* Package name of the app.
*/
packageName?: string;
/**
Expand All @@ -11037,7 +11037,7 @@ export namespace androidpublisher_v3 {
export interface Params$Resource$Systemapks$Variants$Download
extends StandardParameters {
/**
* Unique identifier of the Android app.
* Package name of the app.
*/
packageName?: string;
/**
Expand All @@ -11052,7 +11052,7 @@ export namespace androidpublisher_v3 {
export interface Params$Resource$Systemapks$Variants$Get
extends StandardParameters {
/**
* Unique identifier of the Android app.
* Package name of the app.
*/
packageName?: string;
/**
Expand All @@ -11067,7 +11067,7 @@ export namespace androidpublisher_v3 {
export interface Params$Resource$Systemapks$Variants$List
extends StandardParameters {
/**
* Unique identifier of the Android app.
* Package name of the app.
*/
packageName?: string;
/**
Expand Down

0 comments on commit 110e16d

Please sign in to comment.