Skip to content

Commit

Permalink
Analytics payloads not optional anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-lando committed Jul 23, 2024
1 parent 1ebe98f commit b07db83
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions oas_apivideo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11787,7 +11787,6 @@ paths:
x-client-action: getAggregatedMetrics
x-group-parameters: true
x-client-paginated: true
x-optional-object: true
x-doctave:
code-samples:
'/data/buckets/{metric}/{breakdown}':
Expand Down Expand Up @@ -12035,7 +12034,6 @@ paths:
x-client-action: getMetricsBreakdown
x-group-parameters: true
x-client-paginated: true
x-optional-object: true
x-doctave:
code-samples:
'/data/timeseries/{metric}':
Expand Down
2 changes: 1 addition & 1 deletion templates/nodejs/src/ObjectSerializer.ts.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default class ObjectSerializer {
return data.getFullYear() + "-" + month + "-" + day;
} else {
return data.toISOString();
return data.toISOString().split('.')[0] + 'Z';
}
} else {
if (enumsMap.has(type)) {
Expand Down

0 comments on commit b07db83

Please sign in to comment.