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

feat(all): auto-regenerate discovery clients #2680

Merged
merged 1 commit into from
Jul 10, 2024
Merged
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
64 changes: 32 additions & 32 deletions androidpublisher/v3/androidpublisher-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,36 +277,6 @@
"https://www.googleapis.com/auth/androidpublisher"
]
},
"appRecoveries": {
"description": "List all app recovery action resources associated with a particular package name and app version.",
"flatPath": "androidpublisher/v3/applications/{packageName}/appRecoveries",
"httpMethod": "POST",
"id": "androidpublisher.apprecovery.appRecoveries",
"parameterOrder": [
"packageName"
],
"parameters": {
"packageName": {
"description": "Required. Package name of the app for which list of recovery actions is requested.",
"location": "path",
"required": true,
"type": "string"
},
"versionCode": {
"description": "Required. Version code targeted by the list of recovery actions.",
"format": "int64",
"location": "query",
"type": "string"
}
},
"path": "androidpublisher/v3/applications/{packageName}/appRecoveries",
"response": {
"$ref": "ListAppRecoveriesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
},
"cancel": {
"description": "Cancel an already executing app recovery action. Note that this action changes status of the recovery action to CANCELED.",
"flatPath": "androidpublisher/v3/applications/{packageName}/appRecoveries/{appRecoveryId}:cancel",
Expand Down Expand Up @@ -403,6 +373,36 @@
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
},
"list": {
"description": "List all app recovery action resources associated with a particular package name and app version.",
"flatPath": "androidpublisher/v3/applications/{packageName}/appRecoveries",
"httpMethod": "GET",
"id": "androidpublisher.apprecovery.list",
"parameterOrder": [
"packageName"
],
"parameters": {
"packageName": {
"description": "Required. Package name of the app for which list of recovery actions is requested.",
"location": "path",
"required": true,
"type": "string"
},
"versionCode": {
"description": "Required. Version code targeted by the list of recovery actions.",
"format": "int64",
"location": "query",
"type": "string"
}
},
"path": "androidpublisher/v3/applications/{packageName}/appRecoveries",
"response": {
"$ref": "ListAppRecoveriesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/androidpublisher"
]
}
}
},
Expand Down Expand Up @@ -4731,7 +4731,7 @@
}
}
},
"revision": "20240624",
"revision": "20240709",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -6299,7 +6299,7 @@
"readOnly": true
},
"transactionProgramCode": {
"description": "Optional. The transaction program code, used to help determine service fee for apps partcipating in special partner programs. This field can not be used for external offers transactions. Developers participating in the Play Media Experience Program (https://play.google.com/console/about/programs/mediaprogram/) must provide the program code when reporting alternative billing external transactions. If you are an eligible developer, please contact your BDM for more information on how to set this field.",
"description": "Optional. The transaction program code, used to help determine service fee for eligible apps participating in partner programs. Developers participating in the Play Media Experience Program (https://play.google.com/console/about/programs/mediaprogram/) must provide the program code when reporting alternative billing transactions. If you are an eligible developer, please contact your BDM for more information on how to set this field. Note: this field can not be used for external offers transactions.",
"format": "int32",
"type": "integer"
},
Expand Down
234 changes: 123 additions & 111 deletions androidpublisher/v3/androidpublisher-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 16 additions & 1 deletion api-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -2089,6 +2089,21 @@
"documentationLink": "https://cloud.google.com/document-warehouse",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "css:v1",
"name": "css",
"version": "v1",
"title": "CSS API",
"description": "Programmatically manage your Comparison Shopping Service (CSS) account data at scale.",
"discoveryRestUrl": "https://css.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
},
"documentationLink": "https://developers.google.com/comparison-shopping-services/api/overview",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "customsearch:v1",
Expand Down Expand Up @@ -5584,7 +5599,7 @@
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
},
"documentationLink": "https://developers.google.com/webmaster-tools/search-console-api/",
"documentationLink": "https://developers.google.com/webmaster-tools/about",
"preferred": true
},
{
Expand Down
Loading