Skip to content

Commit 856d94d

Browse files
chore: regenerate merchantapi client
1 parent 38c1764 commit 856d94d

File tree

49 files changed

+414
-125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+414
-125
lines changed

clients/google-api-services-merchantapi/accounts_v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-merchantapi</artifactId>
25-
<version>accounts_v1-rev20251120-2.0.0</version>
25+
<version>accounts_v1-rev20260206-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20260206-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/Merchant.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -12353,8 +12353,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1235312353
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1235412354
* <li>Android: {@code newCompatibleTransport} from
1235512355
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
12356-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
12357-
* </li>
12356+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1235812357
* </ul>
1235912358
* @param jsonFactory JSON factory, which may be:
1236012359
* <ul>

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/model/CreateAndConfigureAccountRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class CreateAndConfigureAccountRequest extends com.google.api.clien
4141
* initialized as part of the creation. At least one such service needs to be provided. Currently
4242
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
4343
* can be used to create a sub-account under an existing advanced account through this method.
44-
* Additional `account_management` or `product_management` services may be provided.
44+
* Additional `account_management` or `products_management` services may be provided.
4545
* The value may be {@code null}.
4646
*/
4747
@com.google.api.client.util.Key
@@ -96,7 +96,7 @@ public CreateAndConfigureAccountRequest setAccount(Account account) {
9696
* initialized as part of the creation. At least one such service needs to be provided. Currently
9797
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
9898
* can be used to create a sub-account under an existing advanced account through this method.
99-
* Additional `account_management` or `product_management` services may be provided.
99+
* Additional `account_management` or `products_management` services may be provided.
100100
* @return value or {@code null} for none
101101
*/
102102
public java.util.List<AddAccountService> getService() {
@@ -108,7 +108,7 @@ public java.util.List<AddAccountService> getService() {
108108
* initialized as part of the creation. At least one such service needs to be provided. Currently
109109
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
110110
* can be used to create a sub-account under an existing advanced account through this method.
111-
* Additional `account_management` or `product_management` services may be provided.
111+
* Additional `account_management` or `products_management` services may be provided.
112112
* @param service service or {@code null} for none
113113
*/
114114
public CreateAndConfigureAccountRequest setService(java.util.List<AddAccountService> service) {

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/model/Region.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@
1818

1919
/**
2020
* Represents a geographic region that you can use as a target with both the `RegionalInventory` and
21-
* `ShippingSettings` services. You can define regions as collections of either postal codes or, in
22-
* some countries, using predefined geotargets. For more information, see [Set up regions
23-
* ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-region) for more
24-
* information.
21+
* `ShippingSettings` services. You can define regions as collections of either postal codes, radius
22+
* areas or, in some countries, using predefined geotargets. A region must be defined by specifying
23+
* exactly one of `postal_code_area`, `geotarget_area`, or `radius_area`. For more information, see
24+
* [Set up regions ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-
25+
* region) for more information.
2526
*
2627
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2728
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-merchantapi</artifactId>
11-
<version>accounts_v1-rev20251120-2.0.0</version>
12-
<name>Merchant API accounts_v1-rev20251120-2.0.0</name>
11+
<version>accounts_v1-rev20260206-2.0.0</version>
12+
<name>Merchant API accounts_v1-rev20260206-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/accounts_v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-merchantapi</artifactId>
25-
<version>accounts_v1-rev20251120-2.0.0</version>
25+
<version>accounts_v1-rev20260206-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20260206-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20251120-2.0.0</version>
25+
<version>accounts_v1beta-rev20260206-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251120-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20260206-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/Merchant.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -12105,8 +12105,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
1210512105
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
1210612106
* <li>Android: {@code newCompatibleTransport} from
1210712107
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
12108-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
12109-
* </li>
12108+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
1211012109
* </ul>
1211112110
* @param jsonFactory JSON factory, which may be:
1211212111
* <ul>

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/CreateAndConfigureAccountRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class CreateAndConfigureAccountRequest extends com.google.api.clien
4141
* initialized as part of the creation. At least one such service needs to be provided. Currently
4242
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
4343
* can be used to create a sub-account under an existing advanced account through this method.
44-
* Additional `account_management` or `product_management` services may be provided.
44+
* Additional `account_management` or `products_management` services may be provided.
4545
* The value may be {@code null}.
4646
*/
4747
@com.google.api.client.util.Key
@@ -104,7 +104,7 @@ public CreateAndConfigureAccountRequest setAccount(Account account) {
104104
* initialized as part of the creation. At least one such service needs to be provided. Currently
105105
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
106106
* can be used to create a sub-account under an existing advanced account through this method.
107-
* Additional `account_management` or `product_management` services may be provided.
107+
* Additional `account_management` or `products_management` services may be provided.
108108
* @return value or {@code null} for none
109109
*/
110110
public java.util.List<AddAccountService> getService() {
@@ -116,7 +116,7 @@ public java.util.List<AddAccountService> getService() {
116116
* initialized as part of the creation. At least one such service needs to be provided. Currently
117117
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
118118
* can be used to create a sub-account under an existing advanced account through this method.
119-
* Additional `account_management` or `product_management` services may be provided.
119+
* Additional `account_management` or `products_management` services may be provided.
120120
* @param service service or {@code null} for none
121121
*/
122122
public CreateAndConfigureAccountRequest setService(java.util.List<AddAccountService> service) {

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/Region.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@
1818

1919
/**
2020
* Represents a geographic region that you can use as a target with both the `RegionalInventory` and
21-
* `ShippingSettings` services. You can define regions as collections of either postal codes or, in
22-
* some countries, using predefined geotargets. For more information, see [Set up regions
23-
* ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-region) for more
24-
* information.
21+
* `ShippingSettings` services. You can define regions as collections of either postal codes, radius
22+
* areas or, in some countries, using predefined geotargets. A region must be defined by specifying
23+
* exactly one of `postal_code_area`, `geotarget_area`, or `radius_area`. For more information, see
24+
* [Set up regions ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-
25+
* region) for more information.
2526
*
2627
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2728
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

0 commit comments

Comments
 (0)