Skip to content

Commit 8efb1af

Browse files
feat(all): auto-regenerate discovery clients (#3574)
1 parent ca9851e commit 8efb1af

8 files changed

Lines changed: 145 additions & 11 deletions

File tree

merchantapi/products/v1/merchantapi-api.json

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
}
282282
}
283283
},
284-
"revision": "20260415",
284+
"revision": "20260419",
285285
"rootUrl": "https://merchantapi.googleapis.com/",
286286
"schemas": {
287287
"AutomatedDiscounts": {
@@ -1560,6 +1560,13 @@
15601560
"format": "int64",
15611561
"type": "string"
15621562
},
1563+
"minimumOrderValues": {
1564+
"description": "The [minimum value](https://support.google.com/merchants/answer/16989009) in the cart before a customer can initiate checkout. Supports multiple minimum order values. Different minimum order values can be specified per country, service and surface. Maximum entries: 100.",
1565+
"items": {
1566+
"$ref": "ProductMinimumOrderValue"
1567+
},
1568+
"type": "array"
1569+
},
15631570
"mobileLink": {
15641571
"description": "URL for the mobile-optimized version of your item's landing page.",
15651572
"type": "string"
@@ -2138,6 +2145,41 @@
21382145
},
21392146
"type": "object"
21402147
},
2148+
"ProductMinimumOrderValue": {
2149+
"description": "The minimum order value in the cart before the checkout is permitted.",
2150+
"id": "ProductMinimumOrderValue",
2151+
"properties": {
2152+
"country": {
2153+
"description": "Required. The [CLDR territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the country to which an item will ship.",
2154+
"type": "string"
2155+
},
2156+
"price": {
2157+
"$ref": "Price",
2158+
"description": "Required. The minimum cart or basket value before the checkout is permitted."
2159+
},
2160+
"service": {
2161+
"description": "A free-form description of the service class or delivery speed. This should match the service value set for the Shipping attribute. See service.",
2162+
"type": "string"
2163+
},
2164+
"surface": {
2165+
"description": "The surface to which the minimum order value applies. Defaults to `ONLINE_LOCAL` if not configured.",
2166+
"enum": [
2167+
"SURFACE_UNSPECIFIED",
2168+
"ONLINE",
2169+
"LOCAL",
2170+
"ONLINE_LOCAL"
2171+
],
2172+
"enumDescriptions": [
2173+
"Surface is unspecified.",
2174+
"Surface value to indicate online purchases.",
2175+
"Surface value to indicate local purchases.",
2176+
"Surface value to indicate online and local purchases."
2177+
],
2178+
"type": "string"
2179+
}
2180+
},
2181+
"type": "object"
2182+
},
21412183
"ProductStatus": {
21422184
"description": "The status of a product, data validation issues, that is, information about a product computed asynchronously.",
21432185
"id": "ProductStatus",
@@ -2309,6 +2351,14 @@
23092351
"format": "int64",
23102352
"type": "string"
23112353
},
2354+
"loyaltyProgramLabel": {
2355+
"description": "Optional. The label of the [loyalty program](https://support.google.com/merchants/answer/6324484). Must match one of the program labels set in loyalty_programs. When set (in combination with [loyalty_tier_label](https://support.google.com/merchants/answer/6324484)), this shipping option is only applicable to loyalty program members of the specified tier.",
2356+
"type": "string"
2357+
},
2358+
"loyaltyTierLabel": {
2359+
"description": "Optional. The label of the [loyalty tier](https://support.google.com/merchants/answer/6324484) within the loyalty program. Must match one of the tiers set in the loyalty_programs. When set (in combination with [loyalty_program_label](https://support.google.com/merchants/answer/6324484)), this shipping option is only applicable to loyalty program members of the specified tier.",
2360+
"type": "string"
2361+
},
23122362
"maxHandlingTime": {
23132363
"description": "Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.",
23142364
"format": "int64",

merchantapi/products/v1/merchantapi-gen.go

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

merchantapi/products_v1beta/merchantapi-api.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
}
282282
}
283283
},
284-
"revision": "20260415",
284+
"revision": "20260419",
285285
"rootUrl": "https://merchantapi.googleapis.com/",
286286
"schemas": {
287287
"Attributes": {
@@ -1709,6 +1709,14 @@
17091709
"format": "int64",
17101710
"type": "string"
17111711
},
1712+
"loyaltyProgramLabel": {
1713+
"description": "Optional. The label of the [loyalty program](https://support.google.com/merchants/answer/6324484). Must match one of the program labels set in loyalty_programs. When set (in combination with [loyalty_tier_label](https://support.google.com/merchants/answer/6324484)), this shipping option is only applicable to loyalty program members of the specified tier.",
1714+
"type": "string"
1715+
},
1716+
"loyaltyTierLabel": {
1717+
"description": "Optional. The label of the [loyalty tier](https://support.google.com/merchants/answer/6324484) within the loyalty program. Must match one of the tiers set in the loyalty_programs. When set (in combination with [loyalty_program_label](https://support.google.com/merchants/answer/6324484)), this shipping option is only applicable to loyalty program members of the specified tier.",
1718+
"type": "string"
1719+
},
17121720
"maxHandlingTime": {
17131721
"description": "Maximum handling time (inclusive) between when the order is received and shipped in business days. 0 means that the order is shipped on the same day as it is received if it happens before the cut-off time. Both maxHandlingTime and maxTransitTime are required if providing shipping speeds. minHandlingTime is optional if maxHandlingTime is present.",
17141722
"format": "int64",

merchantapi/products_v1beta/merchantapi-gen.go

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mybusinessaccountmanagement/v1/mybusinessaccountmanagement-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@
530530
}
531531
}
532532
},
533-
"revision": "20250615",
533+
"revision": "20260419",
534534
"rootUrl": "https://mybusinessaccountmanagement.googleapis.com/",
535535
"schemas": {
536536
"AcceptInvitationRequest": {
@@ -906,7 +906,7 @@
906906
"id": "TargetLocation",
907907
"properties": {
908908
"address": {
909-
"description": "The address of the location to which the user is invited.",
909+
"description": "The address of the location to which the user is invited. Not always populated.",
910910
"type": "string"
911911
},
912912
"locationName": {

mybusinessaccountmanagement/v1/mybusinessaccountmanagement-gen.go

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

smartdevicemanagement/v1/smartdevicemanagement-api.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,15 +312,15 @@
312312
}
313313
}
314314
},
315-
"revision": "20260112",
315+
"revision": "20260420",
316316
"rootUrl": "https://smartdevicemanagement.googleapis.com/",
317317
"schemas": {
318318
"GoogleHomeEnterpriseSdmV1Device": {
319319
"description": "Device resource represents an instance of enterprise managed device in the property.",
320320
"id": "GoogleHomeEnterpriseSdmV1Device",
321321
"properties": {
322322
"ghpName": {
323-
"description": "Output only. The GHP device ID of the device.",
323+
"description": "Output only. The Home APIs device ID of the device.",
324324
"readOnly": true,
325325
"type": "string"
326326
},
@@ -438,7 +438,7 @@
438438
"type": "string"
439439
},
440440
"ghpParent": {
441-
"description": "Output only. The GHP name of the relation -- e.g., structure/room where the device is assigned to. For example: \"homegraph.googleapis.com/Structure/ABC\" or \"homegraph.googleapis.com/Room/ABC\"",
441+
"description": "Output only. The Home APIs name of the relation -- e.g., structure/room where the device is assigned to. For example: \"homegraph.googleapis.com/Structure/ABC\" or \"homegraph.googleapis.com/Room/ABC\"",
442442
"readOnly": true,
443443
"type": "string"
444444
},

smartdevicemanagement/v1/smartdevicemanagement-gen.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)