Skip to content

Commit 645f011

Browse files
committed
byte fields from integer to long (issue #379)
1 parent 2b21479 commit 645f011

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

output/schema/schema.json

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

output/typescript/types.ts

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

specification/indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class Response {
3838
*/
3939
total_store_sizes?: ByteSize
4040
/** Total size, in bytes, of all shards for the selected data streams. */
41-
total_store_size_bytes: integer
41+
total_store_size_bytes: long
4242
}
4343
}
4444

@@ -61,5 +61,5 @@ export class DataStreamsStatsItem {
6161
*/
6262
store_size?: ByteSize
6363
/** Total size, in bytes, of all shards for the data stream’s backing indices. */
64-
store_size_bytes: integer
64+
store_size_bytes: long
6565
}

0 commit comments

Comments
 (0)