Skip to content

Commit 6e9f31f

Browse files
yoshi-automationsofisl
authored andcommittedAug 17, 2023
fix(content): update the API
#### content:v2.1 The following keys were changed: - resources.products.methods.list.parameters.maxResults.description - resources.productstatuses.methods.list.parameters.maxResults.description
1 parent 7acf09f commit 6e9f31f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎discovery/content-v2.1.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4510,7 +4510,7 @@
45104510
],
45114511
"parameters": {
45124512
"maxResults": {
4513-
"description": "The maximum number of products to return in the response, used for paging.",
4513+
"description": "The maximum number of products to return in the response, used for paging. The default value is 25. The maximum value is 250.",
45144514
"format": "uint32",
45154515
"location": "query",
45164516
"type": "integer"
@@ -4653,7 +4653,7 @@
46534653
"type": "string"
46544654
},
46554655
"maxResults": {
4656-
"description": "The maximum number of product statuses to return in the response, used for paging.",
4656+
"description": "The maximum number of product statuses to return in the response, used for paging. The default value is 25. The maximum value is 250.",
46574657
"format": "uint32",
46584658
"location": "query",
46594659
"type": "integer"
@@ -6352,7 +6352,7 @@
63526352
}
63536353
}
63546354
},
6355-
"revision": "20230803",
6355+
"revision": "20230811",
63566356
"rootUrl": "https://shoppingcontent.googleapis.com/",
63576357
"schemas": {
63586358
"Account": {

‎src/apis/content/v2.1.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22573,7 +22573,7 @@ export namespace content_v2_1 {
2257322573
}
2257422574
export interface Params$Resource$Products$List extends StandardParameters {
2257522575
/**
22576-
* The maximum number of products to return in the response, used for paging.
22576+
* The maximum number of products to return in the response, used for paging. The default value is 25. The maximum value is 250.
2257722577
*/
2257822578
maxResults?: number;
2257922579
/**
@@ -22923,7 +22923,7 @@ export namespace content_v2_1 {
2292322923
*/
2292422924
destinations?: string[];
2292522925
/**
22926-
* The maximum number of product statuses to return in the response, used for paging.
22926+
* The maximum number of product statuses to return in the response, used for paging. The default value is 25. The maximum value is 250.
2292722927
*/
2292822928
maxResults?: number;
2292922929
/**

0 commit comments

Comments
 (0)
Please sign in to comment.