Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-chromewebstore</artifactId>
<version>v2-rev20260517-2.0.0</version>
<version>v2-rev20260601-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-chromewebstore:v2-rev20260517-2.0.0'
implementation 'com.google.apis:google-api-services-chromewebstore:v2-rev20260601-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public final class PublishItemRequest extends com.google.api.client.json.Generic

/**
* Optional. When set to true the request will fail if there are any warnings during validation
* and the details will be included in the error_details. Otherwise warnings are treated as non-
* and the details will be included in the `error.details`. Otherwise warnings are treated as non-
* blocking and will be ignored for validation but will be included in the response for
* inspection. Defaults to `false` if unset.
* The value may be {@code null}.
Expand Down Expand Up @@ -71,7 +71,7 @@ public final class PublishItemRequest extends com.google.api.client.json.Generic

/**
* Optional. When set to true the request will fail if there are any warnings during validation
* and the details will be included in the error_details. Otherwise warnings are treated as non-
* and the details will be included in the `error.details`. Otherwise warnings are treated as non-
* blocking and will be ignored for validation but will be included in the response for
* inspection. Defaults to `false` if unset.
* @return value or {@code null} for none
Expand All @@ -82,7 +82,7 @@ public java.lang.Boolean getBlockOnWarnings() {

/**
* Optional. When set to true the request will fail if there are any warnings during validation
* and the details will be included in the error_details. Otherwise warnings are treated as non-
* and the details will be included in the `error.details`. Otherwise warnings are treated as non-
* blocking and will be ignored for validation but will be included in the response for
* inspection. Defaults to `false` if unset.
* @param blockOnWarnings blockOnWarnings or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ public final class Warning extends com.google.api.client.json.GenericJson {

/**
* The reason for the warning. This is a constant value that identifies the proximate cause of the
* warning. This should be at most 63 characters and match a regular expression of `A-Z+[A-Z0-9]`,
* which represents UPPER_SNAKE_CASE.
* warning.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -67,8 +66,7 @@ public Warning setDescription(java.lang.String description) {

/**
* The reason for the warning. This is a constant value that identifies the proximate cause of the
* warning. This should be at most 63 characters and match a regular expression of `A-Z+[A-Z0-9]`,
* which represents UPPER_SNAKE_CASE.
* warning.
* @return value or {@code null} for none
*/
public java.lang.String getReason() {
Expand All @@ -77,8 +75,7 @@ public java.lang.String getReason() {

/**
* The reason for the warning. This is a constant value that identifies the proximate cause of the
* warning. This should be at most 63 characters and match a regular expression of `A-Z+[A-Z0-9]`,
* which represents UPPER_SNAKE_CASE.
* warning.
* @param reason reason or {@code null} for none
*/
public Warning setReason(java.lang.String reason) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-chromewebstore/v2/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-chromewebstore</artifactId>
<version>v2-rev20260517-2.0.0</version>
<name>Chrome Web Store API v2-rev20260517-2.0.0</name>
<version>v2-rev20260601-2.0.0</version>
<name>Chrome Web Store API v2-rev20260601-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-chromewebstore/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-chromewebstore</artifactId>
<version>v2-rev20260517-2.0.0</version>
<version>v2-rev20260601-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-chromewebstore:v2-rev20260517-2.0.0'
implementation 'com.google.apis:google-api-services-chromewebstore:v2-rev20260601-2.0.0'
}
```

Expand Down