Skip to content

Commit 692618e

Browse files
algolia-botmillotp
andcommitted
fix(specs): change fileSize to int64 type (generated)
algolia/api-clients-automation#4877 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 524cbee commit 692618e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/Search/Models/FetchedIndex.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ public struct FetchedIndex: Codable, JSONEncodable {
1616
/// Number of records contained in the index.
1717
public var entries: Int
1818
/// Number of bytes of the index in minified format.
19-
public var dataSize: Int
19+
public var dataSize: Int64
2020
/// Number of bytes of the index binary file.
21-
public var fileSize: Int
21+
public var fileSize: Int64
2222
/// Last build time.
2323
public var lastBuildTimeS: Int
2424
/// Number of pending indexing operations. This value is deprecated and should not be used.
@@ -37,8 +37,8 @@ public struct FetchedIndex: Codable, JSONEncodable {
3737
createdAt: String,
3838
updatedAt: String,
3939
entries: Int,
40-
dataSize: Int,
41-
fileSize: Int,
40+
dataSize: Int64,
41+
fileSize: Int64,
4242
lastBuildTimeS: Int,
4343
numberOfPendingTasks: Int,
4444
pendingTask: Bool,

0 commit comments

Comments
 (0)