Update API [skip ci]

This commit is contained in:
Ilya Laktyushin
2020-08-21 13:56:34 +03:00
parent 28f76f75e4
commit 9b342df78d
11 changed files with 171 additions and 65 deletions

View File

@@ -348,6 +348,7 @@ private enum SharedDataKeyValues: Int32 {
case proxySettings = 4
case autodownloadSettings = 5
case themeSettings = 6
case countriesList = 7
}
public struct SharedDataKeys {
@@ -386,6 +387,12 @@ public struct SharedDataKeys {
key.setInt32(0, value: SharedDataKeyValues.themeSettings.rawValue)
return key
}()
public static let countriesList: ValueBoxKey = {
let key = ValueBoxKey(length: 4)
key.setInt32(0, value: SharedDataKeyValues.countriesList.rawValue)
return key
}()
}
public func applicationSpecificItemCacheCollectionId(_ value: Int8) -> Int8 {