Skip to content

Commit

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

The following keys were changed:
- schemas.AggregateRequest.properties.endTimeMillis.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 23, 2021
1 parent 07190eb commit 46263e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions discovery/fitness-v1.json
Expand Up @@ -831,7 +831,7 @@
}
}
},
"revision": "20210803",
"revision": "20210920",
"rootUrl": "https://fitness.googleapis.com/",
"schemas": {
"AggregateBucket": {
Expand Down Expand Up @@ -937,7 +937,7 @@
"fitness.users.dataset.aggregate"
]
},
"description": "The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.",
"description": "The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive. The maximum allowed difference between start_time_millis // and end_time_millis is 7776000000 (roughly 90 days).",
"format": "int64",
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/fitness/v1.ts
Expand Up @@ -189,7 +189,7 @@ export namespace fitness_v1 {
*/
bucketByTime?: Schema$BucketByTime;
/**
* The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.
* The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive. The maximum allowed difference between start_time_millis // and end_time_millis is 7776000000 (roughly 90 days).
*/
endTimeMillis?: string | null;
/**
Expand Down

0 comments on commit 46263e5

Please sign in to comment.