Skip to content

Commit

Permalink
feat(manufacturers): update the API
Browse files Browse the repository at this point in the history
#### manufacturers:v1

The following keys were added:
- schemas.Attributes.properties.sizeType.items.type

The following keys were changed:
- schemas.Attributes.properties.sizeType.type
  • Loading branch information
yoshi-automation authored and sofisl committed May 21, 2021
1 parent 97439f0 commit 1afb77f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions discovery/manufacturers-v1.json
Expand Up @@ -287,7 +287,7 @@
}
}
},
"revision": "20210303",
"revision": "20210512",
"rootUrl": "https://manufacturers.googleapis.com/",
"schemas": {
"Attributes": {
Expand Down Expand Up @@ -447,7 +447,10 @@
},
"sizeType": {
"description": "The size type of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#sizetype.",
"type": "string"
"items": {
"type": "string"
},
"type": "array"
},
"suggestedRetailPrice": {
"$ref": "Price",
Expand Down
4 changes: 2 additions & 2 deletions src/apis/manufacturers/v1.ts
Expand Up @@ -256,7 +256,7 @@ export namespace manufacturers_v1 {
/**
* The size type of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#sizetype.
*/
sizeType?: string | null;
sizeType?: string[] | null;
/**
* The suggested retail price (MSRP) of the product. For more information, see https://support.google.com/manufacturers/answer/6124116#price.
*/
Expand Down Expand Up @@ -965,7 +965,7 @@ export namespace manufacturers_v1 {
* // "scent": "my_scent",
* // "size": "my_size",
* // "sizeSystem": "my_sizeSystem",
* // "sizeType": "my_sizeType",
* // "sizeType": [],
* // "suggestedRetailPrice": {},
* // "targetClientId": "my_targetClientId",
* // "theme": "my_theme",
Expand Down

0 comments on commit 1afb77f

Please sign in to comment.